-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
238 lines (224 loc) · 8.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Free For Geeks | Free resources for Developers</title>
<meta
name="description"
content="Developers and Open Source authors now have a massive amount of services offering free tiers, but it can be hard to find them all to make informed decisions."
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- social media Meta Tags -->
<meta property="og:title" content="Free For Geeks" />
<meta
property="og:description"
content="Developers and Open Source authors now have a massive amount of services offering free tiers, but it can be hard to find them all to make informed decisions."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://freeforgeeks.com" />
<meta
property="og:image"
content="https://freeforgeeks.com/assets/images/freeForGeeks.jpg"
/>
<!-- <meta
property="og:image"
content="https://raw.githubusercontent.com/JuanPabloDiaz/freeForGeeks/master/favicon.ico"
/> -->
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@1diazdev" />
<meta name="twitter:title" content="Free For Geeks" />
<meta
name="twitter:description"
content="Developers and Open Source authors now have a massive amount of services offering free tiers, but it can be hard to find them all to make informed decisions."
/>
<meta
name="twitter:image"
content="https://freeforgeeks.com/assets/images/freeForGeeks.jpg"
/>
<!-- <meta
name="twitter:image"
content="https://raw.githubusercontent.com/JuanPabloDiaz/freeForGeeks/master/favicon.ico"
/> -->
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Free For Geeks" />
<meta
itemprop="description"
content="Developers and Open Source authors now have a massive amount of services offering free tiers, but it can be hard to find them all to make informed decisions."
/>
<meta
itemprop="image"
content="https://raw.githubusercontent.com/JuanPabloDiaz/freeForGeeks/master/favicon.ico"
/>
<!-- Stylesheets -->
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css"
/>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme"
type="text/css"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="site/style.min.css" />
<!-- Favicon -->
<link rel="icon" href="favicon.ico" type="image/gif" />
<!-- Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-DLYKZXPL9J"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-DLYKZXPL9J");
</script>
</head>
<body>
<noscript
>This page requires JavaScript to work, please enable it or read
<a href="https://github.com/JuanPabloDiaz/freeForGeeks">here</a
>.</noscript
>
<nav>
<a href="https://www.linkedin.com/in/1diazdev/"
><img src="/assets/icons/linkedin.svg" alt="linkedin"
/></a>
<a href="https://github.com/JuanPabloDiaz"
><img src="/assets/icons/github.svg" alt="github"
/></a>
<a href="http://jpdiaz.dev/"
><img src="/assets/icons/portfolio.svg" alt="portfolio"
/></a>
<a href="https://twitter.com/1diazdev"
><img src="/assets/icons/twitter.svg" alt="twitter"
/></a>
</nav>
<div id="app">
<p>Loading...</p>
<img src="/assets/icons/loading.svg" alt="Loading..." />
</div>
<script>
window.$docsify = {
name: "Free For Geeks 👨🏻💻",
repo: "JuanPabloDiaz/freeForGeeks",
coverpage: "site/cover.md",
auto2top: true,
notFoundPage: "site/404.md",
search: {
paths: "auto",
namespace: "freeForGeeks", // To avoid search index collision between multiple websites under the same domain
depth: 0, // index all headers and content - To enable full-text search
// routerMode: "history", // use 'hash' instead to avoid `search error` on Github pages https://github.com/JuanPabloDiaz/freeForGeeks/issues/4
placeholder: "Search Free Resources",
noData:
'<h3 style="text-align: center;"><i>No results! 🤔</i></h3> <br><h4 style="text-align: center; color: orange;"><a href="https://github.com/JuanPabloDiaz/freeForGeeks/pulls" target="_blank">Open a PR to add new resources</a></h4>',
},
darklightTheme: {
siteFont: "Source Sans Pro, Helvetica Neue",
defaultTheme: "light",
codeFontFamily: "Roboto Mono, Monaco, courier, monospace",
bodyFontSize: "15px",
},
// PLUGINS
// -----------------------------------------------------------------
// plugin - tabs
tabs: {
persist: true,
sync: true,
theme: "material", // classic, material
tabComments: true,
tabHeadings: true,
},
// plugin - share
share: {
linkedin: true,
twitter: true,
whatsapp: true,
},
// plugin - auto footer
autoFooter: {
name: "Juan Diaz",
url: "https://github.com/JuanPabloDiaz",
copyYear: "2024",
policy: false,
terms: false,
cookies: false,
},
// plugin - top banner
// topBanner: {
// content:
// ":tada: Free For Geeks is now available in Spanish! :es: <a href='https://juanpablodiaz.github.io/freeForGeeks/es/'>Click here</a> to switch the language.",
// position: "relative",
// zIndex: "-1",
// backgroundColor: "#f8f9fa",
// textColor: "white",
// },
// // plugin - updated
// timeUpdater: {
// text: "<div align='left'>Last updated on: {docsify-updated}</div>",
// formatUpdated: "{YYYY}/{MM}/{DD}",
// },
// docsify ads
// ads: [
// // {
// // img: "https://raw.githubusercontent.com/JuanPabloDiaz/doc/main/assets/img/readme/desktop.png",
// // href: "https://docs.jpdiaz.dev/",
// // },
// {
// img: "https://raw.githubusercontent.com/JuanPabloDiaz/migueDiaz/main/assets/images/evolution/v10.jpg",
// href: "https://jpshop.jpdiaz.dev/",
// },
// // {
// // img: "https://raw.githubusercontent.com/JuanPabloDiaz/jpshop/main/assets/img/readme/desktop.png",
// // href: "https://jpshop.jpdiaz.dev/",
// // },
// ],
};
</script>
<script src="./scripts/githubStars.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js"
type="text/javascript"
></script>
<!-- Share plugin https://coroo.github.io/docsify-share/#/ -->
<script src="//unpkg.com/docsify-share/build/index.min.js"></script>
<!-- Footer plugin https://github.com/markbattistella/docsify-sidebar-footer -->
<script src="https://cdn.jsdelivr.net/npm/@markbattistella/docsify-sidebarfooter@latest"></script>
<!-- Tabs plugin https://jhildenbiddle.github.io/docsify-tabs/ -->
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<!-- Time updater plugin https://github.com/pfeak/docsify-updated -->
<!-- <script src="https://cdn.jsdelivr.net/npm/docsify-updated/src/time-updater.min.js"></script> -->
<!-- Ads plugin https://github.com/mg0324/docsify-ads -->
<script src="https://unpkg.com/[email protected]/dist/docsify-ads.min.js"></script>
<!-- Top banner plugin https://github.com/Plugin-contrib/docsify-plugin/tree/master/packages/docsify-top-banner-plugin -->
<script src="https://cdn.jsdelivr.net/npm/docsify-top-banner-plugin@latest/dist/index.js"></script>
<!-- Google Analytics tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-HTCV3LMBPR"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-HTCV3LMBPR");
</script>
<!-- End Google Analytics -->
<style>
blockquote:first-of-type {
background-color: rgba(235, 248, 242, 0.363);
}
</style>
</body>
</html>