-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (88 loc) · 4.89 KB
/
Copy pathindex.html
File metadata and controls
94 lines (88 loc) · 4.89 KB
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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Open Graph Meta Tags for Social Media -->
<meta property="og:type" content="article" />
<meta property="og:site_name" content="fallingo 개발 일지" />
<meta property="og:title" content="fallingo 개발 일지 - AI-First 개발 이야기" />
<meta property="og:description" content="비전공자가 AI와 함께 Flutter 앱을 만들어가는 과정을 기록합니다. fallingo 프로젝트의 개발 일지, AI-First 방법론, 그리고 실무에서 배운 기술과 인사이트를 공유합니다. Claude, Gemini 등 AI 도구를 활용한 실전 개발 경험과 노하우를 담았습니다." />
<meta property="og:url" content="https://su-record.github.io/stories/" />
<meta property="og:locale" content="ko_KR" />
<meta property="og:image" content="https://su-record.github.io/stories/og-image.jpeg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="fallingo 개발 일지 - AI-First 개발 이야기" />
<meta property="article:author" content="https://github.com/su-record" />
<meta property="article:published_time" content="2025-11-09T17:12:19+09:00" />
<meta property="article:modified_time" content="2025-11-12T00:00:00+09:00" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="fallingo 개발 일지 - AI-First 개발 이야기" />
<meta name="twitter:description" content="비전공자가 AI와 함께 Flutter 앱을 만들어가는 과정을 기록합니다. Fallingo 프로젝트의 개발 일지, AI-First 방법론, 그리고 실무에서 배운 기술과 인사이트를 공유합니다. Claude, Gemini 등 AI 도구를 활용한 실전 개발 경험과 노하우를 담았습니다." />
<meta name="twitter:image" content="https://su-record.github.io/stories/og-image.jpeg" />
<!-- General Meta -->
<meta name="author" content="Su" />
<meta name="description" content="비전공자가 AI와 함께 Flutter 앱을 만들어가는 과정을 기록합니다. Fallingo 프로젝트의 개발 일지, AI-First 방법론, 그리고 실무에서 배운 기술과 인사이트를 공유합니다. Claude, Gemini 등 AI 도구를 활용한 실전 개발 경험과 노하우를 담았습니다." />
<!-- Fonts -->
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-68SDBTVHBG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-68SDBTVHBG');
</script>
<title>Sutory</title>
<!-- GitHub Pages SPA redirect hack -->
<script>
(function(l) {
if (l.search[1] === '/' ) {
var decoded = l.search.slice(1).split('&').map(function(s) {
return s.replace(/~and~/g, '&')
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- Unregister old Vue PWA Service Worker -->
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.getRegistrations().then(function(registrations) {
for (let registration of registrations) {
registration.unregister().then(function(success) {
console.log('Service Worker unregistered:', success);
// Clear all caches
if ('caches' in window) {
caches.keys().then(function(cacheNames) {
return Promise.all(
cacheNames.map(function(cacheName) {
console.log('Deleting cache:', cacheName);
return caches.delete(cacheName);
})
);
});
}
});
}
});
}
</script>
</body>
</html>