-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
547 lines (282 loc) · 22.1 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
<!DOCTYPE html>
<html lang="english">
<head>
<meta charset="utf-8">
<title>Just a blog</title>
<meta name="description" content="">
<meta name="author" content="Torfinn Ingolfsen">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="https://tingox.github.io/theme/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href="https://tingox.github.io/theme/bootstrap.min.css" rel="stylesheet">
<link href="https://tingox.github.io/theme/bootstrap.min.responsive.css" rel="stylesheet">
<link href="https://tingox.github.io/theme/local.css" rel="stylesheet">
<link href="https://tingox.github.io/theme/pygments.css" rel="stylesheet">
<!-- So Firefox can bookmark->"abo this site" -->
<link href="https://tingox.github.io/feeds/all.atom.xml" rel="alternate" title="Just a blog" type="application/atom+xml">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="https://tingox.github.io">Just a blog</a>
<div class="nav-collapse">
<ul class="nav">
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="content">
<div class="row">
<div class="span9">
<div class='article'>
<div class="content-title">
<a href="https://tingox.github.io/static-generators-for-picture-galleries.html"><h1>Static generators for picture galleries</h1></a>
Fri 25 September 2020
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div><p>If I want to put picture galleries on the web, I should look at static generators for picture galleries, as I have no need of comments and all that stuff.
Some possible candidates are <a href="http://curator.sourceforge.net/local/">curator</a>, <a href="https://www.thregr.org/~wavexx/software/fgallery/">fgallery</a>,
<a href="https://sml.zincube.net/~niol/repositories.git/lazygal/about/">lazygal</a>, <a href="http://sigal.saimon.org/en/latest/">Sigal</a>, <a href="https://github.com/kensanata/sitelen-mute">Sitelen Mute</a>.
The question then, is how to choose one? curator is written in Python (good), but is a bit old (Python 2?). fgallery is written in perl, and has a bigger list of dependencies than
the other candidates. lazygal looks quite all right, Python >= 3.7 (good) and can do lots of stuff. Sigal requires Python >= 3.5 (good), can do the same things that lazygal can, it
supports relative output, and more. It doesn't have support for facedetect, if you need that. Sitelen Mute requires perl (like fgallery) and has a quite big list of dependencies,
so even if it has facedetect, I think I'll opt out of using it.</p>
<p>Hmm, it seems like I have decided to try Sigal then.</p></div>
<hr />
</div>
<div class='article'>
<a href="https://tingox.github.io/open-source-kvm-over-ip.html"><h2>Open source KVM over IP</h2></a>
<div class= "well small"> Mon 03 August 2020
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p><a href="https://pikvm.org/">Pi-KVM</a> is a very interesting project. It allows you to build a fully functional <a href="https://en.wikipedia.org/wiki/KVM_switch">KVM</a> over IP solution using cheap
hardware and open source software. Source at Github: <a href="https://github.com/pikvm/pikvm">pikvm/pikvm</a> The KVM supports virtual CD-ROM and virtual flash drive too. You can power on / off
the server via ATX power …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/open-source-kvm-over-ip.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/freebsd-with-debian-vm-for-wireless-network.html"><h2>FreeBSD with Debian vm for wireless network</h2></a>
<div class= "well small"> Sun 02 August 2020
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>New hardware doesn't always have working drivers in <a href="https://www.freebsd.org/">FreeBSD</a>. The developers do a great job, but there are not enough of them.
On the other side, it seems like hardware companies pour out an endless stream of new hardware every month.</p>
<p>I wanted to see if I could use a …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/freebsd-with-debian-vm-for-wireless-network.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/git-resources-for-newcomers.html"><h2>Git resources for newcomers</h2></a>
<div class= "well small"> Wed 22 July 2020
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>When I first started learning git, <a href="https://learngitbranching.js.org/">Learning git branching</a> was a great way for me to understand how things works. As it turns out <a href="https://try.github.io/">Resources to learn Git</a> has a lot more, all of it useful.</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/git-resources-for-newcomers.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/cudatext-looks-nice.html"><h2>CudaText looks nice</h2></a>
<div class= "well small"> Mon 24 February 2020
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p><a href="http://uvviewsoft.com/cudatext/">CudaText</a> looks nice. A lot of features, and written in Pascal too. If I set $EDITOR correctly, it will let me
edit my blog posts too, directly from the Makefile. Perhaps I should spend some time learning it.</p>
<p>Ok, middle button (mouse) paste doesn't work out of the box, instead …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/cudatext-looks-nice.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/broken-theme.html"><h2>Broken theme</h2></a>
<div class= "well small"> Mon 25 November 2019
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>For some reason, the simple theme was broken, at least on my machine. So I downloaded <a href="https://github.com/getpelican/pelican-themes">pelican-themes</a> and changed to the tuxlite_tbs theme. Also, I need to set ${EDITOR} on my machine. Broken seems to be a theme here...</p>
<p>Update: but now I need to do <code>cd ..; git clone --recursive …</code></p> <a class="btn btn-info xsmall" href="https://tingox.github.io/broken-theme.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/control-mobile-information.html"><h2>Control mobile information</h2></a>
<div class= "well small"> Mon 25 November 2019
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>Currently the user of a smartphone have very little control over what data he or she shares, and who gets access to data data. The best option today is to assume that everyone who has asked for access to any of your data, has, in fact, acces to /all/ of …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/control-mobile-information.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/emulation-layers.html"><h2>Emulation layers</h2></a>
<div class= "well small"> Mon 05 August 2019
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>I find it interesting that we now have <a href="https://anbox.io/" title="Android In A Box">Anbox</a> and <a href="https://www.darlinghq.org/" title="macOS translation layer">Darling</a> in addition to <a href="https://www.winehq.org/" title="Wine Is Not An Emulator">Wine</a>. I have used Wine successfully in the past, even with a usb label printer once
(which didn't follow the usb specification well and misbehaved under Linux and *BSD). Today, the only Windows applications I need …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/emulation-layers.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/useful-for-document-handling.html"><h2>Useful for document handling</h2></a>
<div class= "well small"> Sat 20 July 2019
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>Often I find articles about useful tools online, that I need to find back to later. <a href="https://mzucker.github.io/2016/08/15/page-dewarping.html">Page dewarping</a> by Matt Zucker (code on <a href="https://github.com/mzucker/page_dewarp">Github</a>) is one such article. It will be useful for scanning old documentation.
His <a href="https://github.com/mzucker/noteshrink">noteshrink</a> tool and <a href="https://mzucker.github.io/2016/09/20/noteshrink.html">Compressing and enhancing hand-written notes</a> article is also interesting, perhaps …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/useful-for-document-handling.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/decentralized-and-local-first-services.html"><h2>decentralized and local-first services</h2></a>
<div class= "well small"> Sat 13 July 2019
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>The article <a href="https://runyourown.social/">Run your own social</a> which I found via <a href="https://boingboing.net/2019/07/12/roll-your-own.html">BoingBoing</a> is interesting. If you put the question of why anyone would want another time-thief in their life (yes, a new service will come as an addition, not as a replacement) it explains a way to do it, not only …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/decentralized-and-local-first-services.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/pelican-4-0-1-is-in.html"><h2>Pelican 4.0.1 is in</h2></a>
<div class= "well small"> Sat 13 July 2019
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>Long time since I posted here. Time has passed, and now Pelican 4.0.1 is out, I installed that on my new workstation (along with a few other missing tools). That's all.</p>
<p>Ok, it seems I managed to break it again. Will this change fix anything?</p>
<p>As it turns …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/pelican-4-0-1-is-in.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/another-git-cheatsheet.html"><h2>another git cheatsheet</h2></a>
<div class= "well small"> Tue 19 March 2019
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>I found another <a href="http://rogerdudler.github.io/git-guide/files/git_cheat_sheet.pdf">git cheat sheet</a>, which looks very nice. Found at <a href="http://rogerdudler.github.io/git-guide/">git - the simple guide</a>.</p>
<p>Also, <a href="https://git-scm.com/book/en/v2">Pro Git</a> is an entire book about Git, available under a Creative Commons license. Cool!</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/another-git-cheatsheet.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/alternatives-to-github.html"><h2>Alternatives to Github</h2></a>
<div class= "well small"> Tue 05 June 2018
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>Alternatives to Github, some offer a hosted experience, some requires self-hosting. Check out <a href="https://gitea.io/" title="Gitea">Gitea</a> which requires Go, <a href="https://about.gitlab.com/" title="GitLab">GitLab</a>, <a href="https://bitbucket.org/" title="Bitbucket">Bitbucket</a> by Atlassian, <a href="http://gitprep.yukikimoto.com/" title="GitPrep">GitPrep</a> which calls itself a Github clone, <a href="https://kallithea-scm.org/" title="Kallithea">Kallithea</a>, <a href="https://www.phacility.com/phabricator/" title="Phabricator">Phabricator</a> which is used by FreeBSD among others. There are probably more as well.</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/alternatives-to-github.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/git-more-to-learn.html"><h2>git - more to learn</h2></a>
<div class= "well small"> Fri 25 May 2018
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>For some reason, the submodule ("output") had a detached head, and no matter how much I tried</p>
<div class="highlight"><pre><span></span><span class="err">git submodule init</span>
<span class="err">git submodule update</span>
</pre></div>
<p>the HEAD was still detached. In the end, I just changed into the output directory and did a <code>git checkout master</code> - the existing content was going to …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/git-more-to-learn.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/slides-with-markdown.html"><h2>Slides with Markdown</h2></a>
<div class= "well small"> Thu 24 May 2018
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>I should check out <a href="https://github.com/adamzap/landslide" title="Landslide">Landslide</a>, <a href="https://yhatt.github.io/marp/" title="Marp">Marp</a>, <a href="https://pandoc.org/" title="pandoc">pandoc</a>, <a href="https://github.com/jacksingleton/hacker-slides" title="Hacker Slides">Hacker Slides</a> and other Markdown-powered slide generators.
Not my idea, I read the article <a href="https://opensource.com/article/18/5/markdown-slide-generators">4 Markdown-powered slide generators</a> by Scott Nesbitt. All inspiration comes from there.</p>
<p>Landslide is (mostly) Python which is nice. Marp is an <a href="http://electron.atom.io/">Electron</a> app, so a bit "heavier" on …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/slides-with-markdown.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/github-cheatsheets-.html"><h2>Github cheatsheets</h2></a>
<div class= "well small"> Tue 27 February 2018
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>There are two slightly different git "cheat sheets" that you can download from Github, one <a href="https://services.github.com/on-demand/downloads/github-git-cheat-sheet.pdf">blue</a> and
one <a href="https://education.github.com/git-cheat-sheet-education.pdf">green</a> in color. The blue one refers to Github Training while the green one refers to Github Education.
Also, contents and wording is slightly different between them. Still, they are both useful …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/github-cheatsheets-.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/progress-on-windows-.html"><h2>Progress on Windows</h2></a>
<div class= "well small"> Tue 13 February 2018
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>Ok, I have figured out how to get date the Makefile in Windows, using powershell and a powershell script.
The script is simple</p>
<div class="highlight"><pre><span></span><span class="err">get-date -UFormat '%Y-%m-%d %H:%M:%S'</span>
</pre></div>
<p>yes, that is all. From the Makefile, I run it as </p>
<div class="highlight"><pre><span></span><span class="err">powershell -File .\ScriptDate.ps1</span>
</pre></div>
<p>the Makefile fragment looks …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/progress-on-windows-.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/output-first.html"><h2>Output first</h2></a>
<div class= "well small"> Mon 12 February 2018
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>As the original article says; you have to commit and push the output directory <em>before</em> pushing the source files.
Don't forget it again!</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/output-first.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/pelican-on-windows.html"><h2>Pelican on Windows</h2></a>
<div class= "well small"> Mon 12 February 2018
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>Installing Pelican on Windows is quite easy. You need <a href="https://www.python.org/">Python</a> of course, then it is just 'pip install pelican' followed
by 'pip install MarkDown' and Pelican is installed. All this from <a href="https://en.wikipedia.org/wiki/PowerShell">PowerShell</a>.</p>
<p>Unfortunately, my setup uses a Makefile (originally I set up this under Linux). So I need make, the …</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/pelican-on-windows.html">read more</a></div>
</div>
<div class='article'>
<a href="https://tingox.github.io/lack-of-news.html"><h2>Lack of news</h2></a>
<div class= "well small"> Wed 29 November 2017
by <a class="url fn" href="https://tingox.github.io/author/torfinn-ingolfsen.html">Torfinn Ingolfsen</a>
</div>
<div class="summary"><p>The lack of news here just mirrors the fact that I am busy doing other things. Nothing to worry about.</p> <a class="btn btn-info xsmall" href="https://tingox.github.io/lack-of-news.html">read more</a></div>
</div>
<div class="pagination">
<ul>
<li class="prev disabled"><a href="#">← Previous</a></li>
<li class="active"><a href="https://tingox.github.io/index.html">1</a></li>
<li class=""><a href="https://tingox.github.io/index2.html">2</a></li>
<li class="next"><a href="https://tingox.github.io/index2.html">Next →</a></li>
</ul>
</div>
</div>
<div class="span3">
<div class="well" style="padding: 8px 0; background-color: #FBFBFB;">
<ul class="nav nav-list">
<li class="nav-header">
Site
</li>
<li><a href="https://tingox.github.io/archives.html">Archives</a>
<li><a href="https://tingox.github.io/tags.html">Tags</a>
<li><a href="https://tingox.github.io/feeds/all.atom.xml" rel="alternate">Atom feed</a></li>
</ul>
</div>
<div class="well" style="padding: 8px 0; background-color: #FBFBFB;">
<ul class="nav nav-list">
<li class="nav-header">
Categories
</li>
<li><a href="https://tingox.github.io/category/blog.html">blog</a></li>
<li><a href="https://tingox.github.io/category/misc.html">misc</a></li>
</ul>
</div>
<div class="well" style="padding: 8px 0; background-color: #FBFBFB;">
<ul class="nav nav-list">
<li class="nav-header">
Links
</li>
<li><a href="http://getpelican.com/">Pelican</a></li>
<li><a href="http://python.org/">Python.org</a></li>
<li><a href="http://jinja.pocoo.org/">Jinja2</a></li>
<li><a href="http://heim.bitraf.no/tingo/">Torfinn @heim</a></li>
</ul>
</div>
<div class="social">
<div class="well" style="padding: 8px 0; background-color: #FBFBFB;">
<ul class="nav nav-list">
<li class="nav-header">
Social
</li>
<li><a href="https://www.linkedin.com/in/torfinn-ingolfsen-9816a93/">LinkedIn profile</a></li>
<li><a href="#">Another social link</a></li>
</ul>
</div>
</div>
</div>
</div> </div>
<footer>
<br />
<p><a href="https://tingox.github.io">Just a blog</a> © Torfinn Ingolfsen 2020</p>
</footer>
</div> <!-- /container -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="https://tingox.github.io/theme/bootstrap-collapse.js"></script>
</body>
</html>