-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
860 lines (829 loc) · 34.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>Rinse Fujii's portfolio</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script
src="https://use.fontawesome.com/releases/v6.3.0/js/all.js"
crossorigin="anonymous"
></script>
<!-- Google fonts-->
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,700"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic"
rel="stylesheet"
type="text/css"
/>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav
class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top"
id="mainNav"
>
<div class="container">
<a class="navbar-brand" href="#page-top">Portfolio</a>
<button
class="navbar-toggler text-uppercase font-weight-bold bg-primary text-white rounded"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded" href="#profile"
>Profile</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded" href="#skill"
>skill</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a class="nav-link py-3 px-0 px-lg-3 rounded" href="#works"
>works</a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- Masthead Avatar Image-->
<!-- <img class="masthead-avatar mb-5" src="assets/img/avataaars.svg" alt="..." /> -->
<!-- Masthead Heading-->
<h1 class="masthead-heading text-uppercase mb-0">
Rinsei Fujii's portfolio
</h1>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Masthead Subheading-->
<p class="masthead-subheading font-weight-light mb-0">
shiga-university
</p>
</div>
</header>
<!-- About Section-->
<section class="page-section bg-white text-secondary mb-0" id="profile">
<div class="container">
<!-- About Section Heading-->
<h2
class="page-section-heading text-center text-uppercase text-secondary"
>
PROFILE
</h2>
<!-- Icon Divider-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row">
<div class="col-lg-4 ms-auto col-lg-4">
<img class="img-fluid" src="assets/img/profile.png" alt="..." />
</div>
<div class="col-lg-4 me-auto">
<p class="lead">
初めまして。滋賀大学データサイエンス学部3年の藤井倫生と申します。<br />
大学1年次は大学野球部のデータ分析班として活動していました。データ分析でプログラミングを学習していくうちに、自分で何か動くものを作りたいと思うようになり、web開発の勉強を進めております。1年ほど前からweb系の会社でインターンをしております。<br />
将来は、誰かの人生の助けになるようなプロダクトを提供できるようになりたいと考えています。
</p>
</div>
</div>
</div>
</section>
<!-- skil Section -->
<section class="page-section bg-white text-secondary mb-0" id="skill">
<div class="container">
<h2
class="page-section-heading text-center text-uppercase text-secondary mb-0"
>
SKILL
</h2>
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<div class="row">
<div class="col-md-6 mb-5">
<div class="card shadow h-100">
<div class="card-body">
<h3 class="card-title">フロントエンド</h3>
<p class="card-text">
直近ではReact.jsを使用して開発をしています。
</p>
<ul>
<li>JavaScript/TypeScript</li>
<li>Vue.js</li>
<li>React</li>
<li>tailwindcss</li>
<li>chakra-ui</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 mb-5">
<div class="card shadow h-100">
<div class="card-body">
<h3 class="card-title">バックエンド</h3>
<p class="card-text">主にpythonで構築しています。</p>
<ul>
<li>flask</li>
<li>fastAPI</li>
<li>TypeScript(Nest, Hono)</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 mb-5">
<div class="card shadow h-100">
<div class="card-body">
<h3 class="card-title">DB</h3>
<p class="card-text">
MySQLで主に開発。
</p>
<ul>
<li>MySQL</li>
<li>SQLite</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 mb-5">
<div class="card shadow h-100">
<div class="card-body">
<h3 class="card-title">データ分析・機械学習</h3>
<p class="card-text">
学校では主にpythonやRを用いたデータ分析・機械学習をしています。
</p>
<ul>
<li>Python</li>
<li>R</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 mb-5">
<div class="card shadow h-100">
<div class="card-body">
<h3 class="card-title">その他</h3>
<p class="card-text">開発等で使用しているツールです</p>
<ul>
<li>git</li>
<li>docker</li>
<li>postman</li>
<li>slack</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section-->
<section class="page-section portfolio" id="works">
<div class="container">
<!-- Portfolio Section Heading-->
<h2
class="page-section-heading text-center text-uppercase text-secondary mb-0"
>
works
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Grid Items-->
<div class="row justify-content-center">
<!-- Portfolio Item 1-->
<div class="col-md-6 col-lg-4 mb-5">
<div
class="portfolio-item mx-auto"
data-bs-toggle="modal"
data-bs-target="#portfolioModal1"
>
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<p>シフト自動生成サービス(Excel入力版)</p>
<img
class="img-fluid"
src="assets/img/portfolio/excel.png"
alt="..."
/>
</div>
</div>
<!-- Portfolio Item 2-->
<div class="col-md-6 col-lg-4 mb-5">
<div
class="portfolio-item mx-auto"
data-bs-toggle="modal"
data-bs-target="#portfolioModal2"
>
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<p>シフト自動生成サービス(Next・Flask)開発中</p>
<img
class="img-fluid"
src="assets/img/portfolio/shift.png"
alt="..."
/>
</div>
</div>
<!-- Portfolio Item 3-->
<div class="col-md-6 col-lg-4 mb-5">
<div
class="portfolio-item mx-auto"
data-bs-toggle="modal"
data-bs-target="#portfolioModal3"
>
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<p>ポートフォリオサイト</p>
<img
class="img-fluid"
src="assets/img/portfolio/portfolio.png"
alt="..."
/>
</div>
</div>
<!-- Portfolio Item 4-->
<div class="col-md-6 col-lg-4 mb-5">
<div
class="portfolio-item mx-auto"
data-bs-toggle="modal"
data-bs-target="#portfolioModal4"
>
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<p>名刺管理lineBot</p>
<img
class="img-fluid"
src="assets/img/portfolio/namecard.png"
alt="..."
/>
</div>
</div>
<!-- Portfolio Item 5-->
<div class="col-md-6 col-lg-4 mb-5">
<div
class="portfolio-item mx-auto"
data-bs-toggle="modal"
data-bs-target="#portfolioModal5"
>
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<p>ラーメン巡り最適化</p>
<img
class="img-fluid"
src="assets/img/portfolio/ramen_tour.png"
alt="..."
/>
</div>
</div>
</div>
<pre><code>package com.example.coffeeshop.controller
import com.example.coffeeshop.model.CoffeeShop
import com.example.coffeeshop.model.Polygon
import com.example.coffeeshop.service.CoffeeShopService
import org.springframework.http.ResponseEntity
import org.springframework.web.bind.annotation.*
@RestController
@RequestMapping("/api")
class CoffeeShopController(
private val coffeeShopService: CoffeeShopService
) {
@PostMapping("/coffeeshops")
fun getCoffeeShops(@RequestBody polygon: Polygon): ResponseEntity<List<CoffeeShop>> {
val coffeeShops = coffeeShopService.findCoffeeShopsInPolygon(polygon)
return ResponseEntity.ok(coffeeShops)
}
@ExceptionHandler(Exception::class)
fun handleException(ex: Exception): ResponseEntity<String> {
return ResponseEntity.status(500).body(ex.message)
}
}
</code></pre>
<h1>service</h1>
<pre><code>package com.example.coffeeshop.service
import com.example.coffeeshop.model.CoffeeShop
import com.example.coffeeshop.model.Point
import com.example.coffeeshop.model.Polygon
import com.example.coffeeshop.util.GeometryUtil
import org.springframework.beans.factory.annotation.Value
import org.springframework.stereotype.Service
import org.springframework.web.client.RestTemplate
import org.springframework.web.util.UriComponentsBuilder
@Service
class CoffeeShopService {
@Value("\${google.places.api.key}")
private lateinit var apiKey: String
private val restTemplate = RestTemplate()
fun findCoffeeShopsInPolygon(polygon: Polygon): List<CoffeeShop> {
val (center, radius) = GeometryUtil.minEnclosingCircle(polygon.points)
val maxRadius = 50000.0 // 最大半径50,000メートル
val queryRadius = minOf(radius, maxRadius)
val coffeeShops = queryGooglePlaces(center, queryRadius)
return coffeeShops.filter { shop ->
GeometryUtil.isPointInPolygon(shop.location, polygon.points)
}
}
private fun queryGooglePlaces(center: Point, radius: Double): List<CoffeeShop> {
var url = UriComponentsBuilder.fromHttpUrl("https://maps.googleapis.com/maps/api/place/nearbysearch/json")
.queryParam("location", "${center.latitude},${center.longitude}")
.queryParam("radius", radius.toInt())
.queryParam("type", "cafe")
.queryParam("keyword", "coffee")
.queryParam("key", apiKey)
.build()
.toUriString()
val coffeeShops = mutableListOf<CoffeeShop>()
var nextPageToken: String? = null
do {
if (nextPageToken != null) {
Thread.sleep(2000) // 次のページトークンが有効になるまで待機
url = UriComponentsBuilder.fromHttpUrl("https://maps.googleapis.com/maps/api/place/nearbysearch/json")
.queryParam("pagetoken", nextPageToken)
.queryParam("key", apiKey)
.build()
.toUriString()
}
val response = restTemplate.getForObject(url, Map::class.java)
val status = response?.get("status") as String
if (status != "OK" && status != "ZERO_RESULTS") {
throw RuntimeException("Google Places APIエラー: $status")
}
val results = response["results"] as List<Map<String, Any>>?
results?.let {
coffeeShops.addAll(it.map { result ->
val geometry = result["geometry"] as Map<String, Any>
val location = geometry["location"] as Map<String, Any>
CoffeeShop(
name = result["name"] as String,
address = result["vicinity"] as String,
location = Point(
latitude = location["lat"] as Double,
longitude = location["lng"] as Double
),
placeId = result["place_id"] as String
)
})
}
nextPageToken = response["next_page_token"] as String?
} while (nextPageToken != null)
return coffeeShops
}
}
</code></pre>
<h1>util</h1>
<pre><code>package com.example.coffeeshop.util
import com.example.coffeeshop.model.Point
import kotlin.math.*
object GeometryUtil {
// 最小外接円を計算
fun minEnclosingCircle(points: List<Point>): Pair<Point, Double> {
val avgLat = points.map { it.latitude }.average()
val avgLng = points.map { it.longitude }.average()
val center = Point(avgLat, avgLng)
val radius = points.maxOf { distanceBetween(center, it) }
return Pair(center, radius)
}
// 点がポリゴン内にあるか判定
fun isPointInPolygon(point: Point, polygon: List<Point>): Boolean {
var intersections = 0
val n = polygon.size
for (i in 0 until n) {
val p1 = polygon[i]
val p2 = polygon[(i + 1) % n]
if (rayIntersectsSegment(point, p1, p2)) {
intersections++
}
}
return (intersections % 2) == 1
}
private fun rayIntersectsSegment(p: Point, a: Point, b: Point): Boolean {
val px = p.longitude
val py = p.latitude
val ax = a.longitude
val ay = a.latitude
val bx = b.longitude
val by = b.latitude
if (ay > by) {
return rayIntersectsSegment(p, b, a)
}
if (py == ay || py == by) {
val pyAdjusted = py + 0.00000001
return rayIntersectsSegment(Point(pyAdjusted, px), a, b)
}
if (py < ay || py > by) {
return false
}
if (px >= maxOf(ax, bx)) {
return false
}
val m = (bx - ax) / (by - ay)
val x = m * (py - ay) + ax
return px < x
}
private fun distanceBetween(p1: Point, p2: Point): Double {
val R = 6371000.0 // 地球の半径(メートル)
val dLat = Math.toRadians(p2.latitude - p1.latitude)
val dLon = Math.toRadians(p2.longitude - p1.longitude)
val a = sin(dLat / 2).pow(2) +
cos(Math.toRadians(p1.latitude)) * cos(Math.toRadians(p2.latitude)) *
sin(dLon / 2).pow(2)
val c = 2 * atan2(sqrt(a), sqrt(1 - a))
return R * c // 距離(メートル)
}
}
</code></pre>
<p>https://mathworld.wolfram.com/PolygonCentroid.html</p>
</div>
</section>
<!-- Copyright Section-->
<div class="copyright py-4 text-center text-white">
<div class="container">
<small>Copyright© Rinsei Fujii. All Rights Reserved. </small>
</div>
</div>
<!-- Portfolio Modals-->
<!-- Portfolio Modal 1-->
<div
class="portfolio-modal modal fade"
id="portfolioModal1"
tabindex="-1"
aria-labelledby="portfolioModal1"
aria-hidden="true"
>
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0">
<button
class="btn-close"
type="button"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="portfolio-modal-title text-secondary text-uppercase mb-0"
>
シフト自動生成サービス(Excel入力版)
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/excel.png"
alt="..."
/>
<!-- Portfolio Modal - Text-->
<p class="mb-4">
pythonの最適化問題を解くライブラリpulpを使用し、シフト希望、勤務の制約条件に従ってシフトを自動生成するサービスです。シフトの休み希望や制約条件を書いたExcelファイルにをアップロードすることによってシフトが一瞬で生成されます。現在介護施設でご利用いただいております。
<a href="https://github.com/fijaival/streamlitShiftOpt"
>github</a
>
</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2-->
<div
class="portfolio-modal modal fade"
id="portfolioModal2"
tabindex="-1"
aria-labelledby="portfolioModal2"
aria-hidden="true"
>
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0">
<button
class="btn-close"
type="button"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="portfolio-modal-title text-secondary text-uppercase mb-0"
>
シフト自動生成サービス(flask・Next)
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/shift.png"
alt="..."
/>
<!-- Portfolio Modal - Text-->
<p class="mb-4">
従業員の管理、従業員のシフト希望管理、従業員のシフト自動生成ができるサービスです。フロントエンドをNext.js、バックエンドをflaskで開発しています。Excel版では既定のフォーマットに従って従業員のシフト希望や制約条件を入力しないといけなかったため、UX向上のためにこちらのバージョンの開発を進めています。
<a href="https://github.com/fijaival/shiftOptimization"
>github(開発中)</a
>
</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3-->
<div
class="portfolio-modal modal fade"
id="portfolioModal3"
tabindex="-1"
aria-labelledby="portfolioModal3"
aria-hidden="true"
>
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0">
<button
class="btn-close"
type="button"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="portfolio-modal-title text-secondary text-uppercase mb-0"
>
ポートフォリオサイト
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/portfolio.png"
alt="..."
/>
<!-- Portfolio Modal - Text-->
<p class="mb-4">
自身のポートフォリオサイト。
AIと便利なライブラリ等を用いてできるだけ手間をかけずに作ることを意識し作成しました。
結局諸々込みで5時間ほどかかってしまいましたが。。<a
href="https://github.com/fijaival/fijaival.github.io"
>github</a
>
</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4-->
<div
class="portfolio-modal modal fade"
id="portfolioModal4"
tabindex="-1"
aria-labelledby="portfolioModal2"
aria-hidden="true"
>
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0">
<button
class="btn-close"
type="button"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="portfolio-modal-title text-secondary text-uppercase mb-0"
>
名刺管理lineBot
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/namecard.png"
alt="..."
/>
<!-- Portfolio Modal - Text-->
<p class="mb-4">
lineから管理したい名刺をアップロードすると、名刺の情報を取得し、スプレッドシートに保存するlineBotです。名刺の情報を取得するために、OCRを使用しています。また、名刺から文字列を取得した後、必要な項目の抽出や構造化にChatGPTのAPIを使用しています。
<a href="https://github.com/fijaival/line_name_card"
>github</a
>,
</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5-->
<div
class="portfolio-modal modal fade"
id="portfolioModal5"
tabindex="-1"
aria-labelledby="portfolioModal2"
aria-hidden="true"
>
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0">
<button
class="btn-close"
type="button"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="portfolio-modal-title text-secondary text-uppercase mb-0"
>
ラーメン巡り最適化
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/ramen_tour.png"
alt="..."
/>
<!-- Portfolio Modal - Text-->
<p class="mb-4">
滋賀県草津市内にある味の異なるラーメン屋さんを5つ回るための最適なルートを提案してくれるwebサービスです。草津市内にあるラーメン屋さんの情報をスクレイピングし、条件を満たす最適なルートを提案するために、google map APIと行列計算を使用しています。
<a href="https://github.com/fijaival/ramen_tour"
>github</a
>,
</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<!-- * * SB Forms JS * *-->
<!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *-->
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
</body>
</html>