-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
396 lines (309 loc) · 14.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-107455490-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-107455490-1');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2434930922382269",
enable_page_level_ads: true
});
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#c5c5c5">
<meta name="msapplication-navbutton-color" content="#FAFAFA">
<meta name="apple-mobile-web-app-status-bar-style" content="#FAFAFA">
<meta name="description" content="At Fosstack we provide tutorials, news, security tips about FOSS world with focus on Linux & Python" />
<meta name="keywords" content="Linux, Python, FOSS, python 3, python, linux, unix, django" />
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="3 days">
<!-- python,linux,FOSS -->
<!-- For Facebook -->
<meta property="og:title" content="Fosstack Blog" />
<meta property="og:type" content="article" />
<meta property="og:image" content="" />
<meta property="og:url" content="https://fosstack.com" />
<meta property="og:description" content="At Fosstack we provide tutorials, news, security tips about FOSS world with focus on Linux & Python" />
<!-- For Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Fosstack Blog" />
<meta name="twitter:description" content="At Fosstack we provide tutorials, news, security tips about FOSS world with focus on Linux & Python" />
<title>
Fosstack
</title>
<!-- favicon -->
<link rel="shortcut icon" type="image/x-icon" href="static/images/favicon.ico" />
<!-- Bootstrap core CSS -->
<link href="static/core_blog/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="static/core_blog/css/clean-blog.min.css" rel="stylesheet">
<link href="static/app.min.css" rel="stylesheet">
<link href="static/core_blog/css/github.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="static/core_blog/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- Navigation -->
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="index.html">Fosstack</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="category/python/index.html">Python</a>
</li>
<li class="nav-item">
<a class="nav-link" href="category/linux/index.html">Linux</a>
</li>
<li class="nav-item">
<a class="nav-link" href="tips/index.html">Tips</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about/index.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact/index.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#" data-toggle="modal" data-target="#mkdocs_search_modal">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="Search Modal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<form role="form" method="get" action="index.html" accept-charset="utf-8">
<div class="form-group">
<input autofocus type="text" name="q" class="form-control" placeholder="Search..." id="mkdocs-search-query">
</div>
</form>
<div id="mkdocs-search-results"></div>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
<!-- Page Header -->
<header class="masthead" style="background-image: url(static/core_blog/img/home-bg1.jpg )">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="site-heading">
<h1>Fosstack</h1>
<span class="subheading">A Blog for Pythonista and Djangonaut.</span>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="post-preview">
<a href="tips/videos-playlist-length-calculator/index.html">
<h2 class="post-title">
Playlist Length Calculator
</h2>
<h6 class="post-subtitle">
</h6>
<h3 class="post-subtitle">
A Python package, CLI tool to calculate the length of all the video files and/or audio files in a directory and its sub-directories
</h3>
</a>
<p class="post-meta">Posted by
<a href="index.html#">Karan</a>
on August 24, 2018
</p>
</div>
<br><hr><br>
<div class="post-preview">
<a href="tips/quick-sudo/index.html">
<h2 class="post-title">
Run Last Command as Sudo Quickly
</h2>
<h6 class="post-subtitle">
</h6>
<h3 class="post-subtitle">
In this post I'll show to how you can easily prepend sudo to a command
</h3>
</a>
<p class="post-meta">Posted by
<a href="index.html#">Karan</a>
on August 03, 2018
</p>
</div>
<br><hr><br>
<div class="post-preview">
<a href="tips/upgrade-all-pip-packages/index.html">
<h2 class="post-title">
How to upgrade all outdated pip packages
</h2>
<h6 class="post-subtitle">
</h6>
<h3 class="post-subtitle">
Just a quick tip on how to update all your pip packages in a single command.
</h3>
</a>
<p class="post-meta">Posted by
<a href="index.html#">Mohit</a>
on February 08, 2018
</p>
</div>
<br><hr><br>
<div class="post-preview">
<a href="algorithms-with-python/index.html">
<h2 class="post-title">
Learn Algorithms with Python
</h2>
<h6 class="post-subtitle">
</h6>
<h3 class="post-subtitle">
In this post, I will show you some Python modules and resources which can help you learn "Data Structures and Algorithms" with Python as a beginner.
</h3>
</a>
<p class="post-meta">Posted by
<a href="index.html#">Karan</a>
on February 07, 2018
</p>
</div>
<br><hr><br>
<div class="post-preview">
<a href="tips/ptpython-python-repl/index.html">
<h2 class="post-title">
Ptpython - A Python REPL You will Love!
</h2>
<h6 class="post-subtitle">
</h6>
<h3 class="post-subtitle">
ptpython brings some of the most valuable features to your Python shell and it is one of the most advanced python REPL out there which works on all Python versions from 2.6 up to 3.6+ and is cross-platform (Linux, BSD, OS X and Windows).
</h3>
</a>
<p class="post-meta">Posted by
<a href="index.html#">Mohit</a>
on February 06, 2018
</p>
</div>
<br><hr><br>
<div class="post-preview">
<a href="must-have-linux-apps/index.html">
<h2 class="post-title">
Must-Have Applications for Linux
</h2>
<h6 class="post-subtitle">
</h6>
<h3 class="post-subtitle">
In this post, I will show you some open source applications that Linux user should use.
</h3>
</a>
<p class="post-meta">Posted by
<a href="index.html#">Karan</a>
on February 01, 2018
</p>
</div>
<br><hr><br>
<div class="post-preview">
<a href="setup-sublime-python/index.html">
<h2 class="post-title">
Must-Have Packages and Settings in Sublime Text for a Python Developer
</h2>
<h6 class="post-subtitle">
</h6>
<h3 class="post-subtitle">
In this post, I will show you awesome Sublime packages/plugins and some settings for your workflow which will make your life as a Python programmer much more easier.
</h3>
</a>
<p class="post-meta">Posted by
<a href="index.html#">Mohit</a>
on January 27, 2018
</p>
</div>
<br>
<!-- Pager -->
<div class="d-flex justify-content-between">
<a class="btn btn-primary ml-auto" href="index.html%3Fpage=2.html">Older Posts →</a>
</div>
</div>
</div>
</div>
<hr>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto mb-3">
<form id="subscription_ajax" class="mb-4" method="post" novalidate>
<input type='hidden' name='csrfmiddlewaretoken' value='vSpTqqFOpN4xzc3IIY1ADVy4JPBS7YFbnyxKWbOpcj7ezg97f8Nc19nKW7mYtmJB' />
<div class="input-group">
<input type="email" id="sub_email" name="email" placeholder="Enter your email here" class="form-control border border-secondary" required="required">
<span class="input-group-btn">
<button class="btn btn-outline-secondary" type="submit"><i class="fa fa-send"></i></button>
</span>
</div>
</form>
<ul class="list-inline text-center">
<li class="list-inline-item">
<a href="https://twitter.com/Fosstack">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://facebook.com/Fosstack">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/Fosstack">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">Copyright © Fosstack 2018</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="static/core_blog/vendor/jquery/jquery.min.js"></script>
<script src="static/core_blog/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="static/core_blog/js/clean-blog.min.js"></script>
<script src="static/app.min.js"></script>
<script src="static/core_blog/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- Custom scripts for this template -->
</body>
</html>