-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.txt
4480 lines (4195 loc) · 197 KB
/
data.txt
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
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"data": [
{
"episode": "E00",
"episode_title": "/dev/nullnummer",
"episode_url": "https://focusonlinux.podigee.io/t1-dev-nullnummer",
"date": "2022-01-22",
"name": "ncdu",
"type": "💿",
"description": "Disk usage analyzer with an ncurses interface",
"url": "https://dev.yorhel.nl/ncdu",
"author": "Christian Stankowic"
},
{
"episode": "E00",
"episode_title": "/dev/nullnummer",
"episode_url": "https://focusonlinux.podigee.io/t1-dev-nullnummer",
"date": "2022-01-22",
"name": "sshuttle",
"type": "💿",
"description": "Transparent proxy server that works as a poor man's VPN",
"url": "https://github.com/sshuttle/sshuttle",
"author": "Enrico Bartz"
},
{
"episode": "E00",
"episode_title": "/dev/nullnummer",
"episode_url": "https://focusonlinux.podigee.io/t1-dev-nullnummer",
"date": "2022-01-22",
"name": "GTG (Getting Things GNOME!)",
"type": "💿",
"description": "Personal tasks and TODO-list items organizer for the GNOME desktop environment",
"url": "https://dev.yorhel.nl/ncdu",
"author": "Felix Kerker"
},
{
"episode": "E01",
"episode_title": "Newsupdate 01/22 – CVE-2022-0185, D-Installer, SUSE Liberty Linux",
"episode_url": "https://focusonlinux.podigee.io/2-newsupdate-01-22-cve-2022-0185-d-installer-suse-liberty-linux",
"date": "2022-01-28",
"name": "csview",
"type": "💿",
"description": "Pretty and fast csv viewer for cli with cjk/emoji support",
"url": "https://github.com/wfxr/csview",
"author": "Christian Stankowic"
},
{
"episode": "E01",
"episode_title": "Newsupdate 01/22 – CVE-2022-0185, D-Installer, SUSE Liberty Linux",
"episode_url": "https://focusonlinux.podigee.io/2-newsupdate-01-22-cve-2022-0185-d-installer-suse-liberty-linux",
"date": "2022-01-28",
"name": "tldr",
"type": "💿",
"description": "Collaborative cheatsheets for console commands",
"url": "https://github.com/tldr-pages/tldr",
"author": "Felix Kerker"
},
{
"episode": "E02",
"episode_title": "Newsupdate 02/22 – Pwnkit, Slackware 15, openSUSE 15.4, Docker Desktop",
"episode_url": "https://focusonlinux.podigee.io/3-newsupdate-02-22-pwnkit-slackware-15-opensuse-15-4-docker-desktop",
"date": "2022-02-25",
"name": "Timeshift",
"type": "💿",
"description": "System restore tool for Linux",
"url": "https://github.com/teejee2008/timeshift",
"author": "Christian Stankowic"
},
{
"episode": "E02",
"episode_title": "Newsupdate 02/22 – Pwnkit, Slackware 15, openSUSE 15.4, Docker Desktop",
"episode_url": "https://focusonlinux.podigee.io/3-newsupdate-02-22-pwnkit-slackware-15-opensuse-15-4-docker-desktop",
"date": "2022-02-25",
"name": "Pandoc",
"type": "💿",
"description": "A universal document converter",
"url": "https://pandoc.org",
"author": "Jan Walther"
},
{
"episode": "E02",
"episode_title": "Newsupdate 02/22 – Pwnkit, Slackware 15, openSUSE 15.4, Docker Desktop",
"episode_url": "https://focusonlinux.podigee.io/3-newsupdate-02-22-pwnkit-slackware-15-opensuse-15-4-docker-desktop",
"date": "2022-02-25",
"name": "fpm",
"type": "💿",
"description": "Build packages for multiple platforms with great ease and sanity",
"url": "https://github.com/jordansissel/fpm",
"author": "Jasper Wiegratz"
},
{
"episode": "E03",
"episode_title": "Newsupdate 03/22 – Dirty Pipe, ArchLinux, Raspberry Pi, openSUSE/SLE 15.4 Beta, Asahi Linux",
"episode_url": "https://focusonlinux.podigee.io/4-newsupdate-03-22-dirty-pipe-archlinux-raspberry-pi-opensuse-sle-15-4-beta-asahi-linux",
"date": "2022-03-25",
"name": "Obfuscate",
"type": "💿",
"description": "Lets you redact your private information from any image",
"url": "https://www.flathub.org/apps/details/com.belmoussaoui.Obfuscate",
"author": "Christian Stankowic"
},
{
"episode": "E03",
"episode_title": "Newsupdate 03/22 – Dirty Pipe, ArchLinux, Raspberry Pi, openSUSE/SLE 15.4 Beta, Asahi Linux",
"episode_url": "https://focusonlinux.podigee.io/4-newsupdate-03-22-dirty-pipe-archlinux-raspberry-pi-opensuse-sle-15-4-beta-asahi-linux",
"date": "2022-03-25",
"name": "Lollypop",
"type": "💿",
"description": "Modern music player for GNOME",
"url": "https://wiki.gnome.org/Apps/Lollypop",
"author": "Jan Walther"
},
{
"episode": "E03",
"episode_title": "Newsupdate 03/22 – Dirty Pipe, ArchLinux, Raspberry Pi, openSUSE/SLE 15.4 Beta, Asahi Linux",
"episode_url": "https://focusonlinux.podigee.io/4-newsupdate-03-22-dirty-pipe-archlinux-raspberry-pi-opensuse-sle-15-4-beta-asahi-linux",
"date": "2022-03-25",
"name": "cheat.sh",
"type": "💿",
"description": "The only cheat sheet you need",
"url": "https://github.com/chubin/cheat.sh",
"author": "Felix Kerker"
},
{
"episode": "E04",
"episode_title": "Newsupdate 04/22 – CVE-2022-1015/1016, Ubuntu 22.04 LTS, elementaryOS, SUSE Adaptive Linux Platform, Red Hat Satellite 7.0",
"episode_url": "https://focusonlinux.podigee.io/5-newsupdate-04-22-cve-2022-1015-1016-ubuntu-22-04-lts-elementaryos-suse-adaptive-linux-platform-red-hat-satellite-7-0",
"date": "2022-04-29",
"name": "Flatseal",
"type": "💿",
"description": "Manage Flatpak permissions",
"url": "https://flathub.org/apps/com.github.tchx84.Flatseal",
"author": "Christian Stankowic"
},
{
"episode": "E04",
"episode_title": "Newsupdate 04/22 – CVE-2022-1015/1016, Ubuntu 22.04 LTS, elementaryOS, SUSE Adaptive Linux Platform, Red Hat Satellite 7.0",
"episode_url": "https://focusonlinux.podigee.io/5-newsupdate-04-22-cve-2022-1015-1016-ubuntu-22-04-lts-elementaryos-suse-adaptive-linux-platform-red-hat-satellite-7-0",
"date": "2022-04-29",
"name": "ripgrep",
"type": "💿",
"description": "Recursively searches directories for a regex pattern while respecting your gitignore",
"url": "https://wiki.gnome.org/Apps/Lollypop",
"author": "Jan Walther"
},
{
"episode": "E04",
"episode_title": "Newsupdate 04/22 – CVE-2022-1015/1016, Ubuntu 22.04 LTS, elementaryOS, SUSE Adaptive Linux Platform, Red Hat Satellite 7.0",
"episode_url": "https://focusonlinux.podigee.io/5-newsupdate-04-22-cve-2022-1015-1016-ubuntu-22-04-lts-elementaryos-suse-adaptive-linux-platform-red-hat-satellite-7-0",
"date": "2022-04-29",
"name": "Super Productivity",
"type": "💿",
"description": "Personal Task Management with integrated Time Tracking",
"url": "https://github.com/chubin/cheat.sh",
"author": "Felix Kerker"
},
{
"episode": "E06",
"episode_title": "Newsupdate 05/22 – RHEL 9.0, Fedora 36, Pop!_OS 22.04, NVIDIA OSS-Kernelmodule, Framework-Laptop",
"episode_url": "https://focusonlinux.podigee.io/7-newsupdate-05-22-rhel-9-0-fedora-36-pop-_os-22-04-nvidia-oss-kernelmodule-framework-laptop",
"date": "2022-05-27",
"name": "mdbook",
"type": "💿",
"description": "Create book from markdown files - like Gitbook but implemented in Rust",
"url": "https://github.com/rust-lang/mdBook",
"author": "Christian Stankowic"
},
{
"episode": "E06",
"episode_title": "Newsupdate 05/22 – RHEL 9.0, Fedora 36, Pop!_OS 22.04, NVIDIA OSS-Kernelmodule, Framework-Laptop",
"episode_url": "https://focusonlinux.podigee.io/7-newsupdate-05-22-rhel-9-0-fedora-36-pop-_os-22-04-nvidia-oss-kernelmodule-framework-laptop",
"date": "2022-05-27",
"name": "zoxide",
"type": "💿",
"description": "A smarter cd command - supports all major shells",
"url": "https://github.com/ajeetdsouza/zoxide",
"author": "Jan Walther"
},
{
"episode": "E06",
"episode_title": "Newsupdate 05/22 – RHEL 9.0, Fedora 36, Pop!_OS 22.04, NVIDIA OSS-Kernelmodule, Framework-Laptop",
"episode_url": "https://focusonlinux.podigee.io/7-newsupdate-05-22-rhel-9-0-fedora-36-pop-_os-22-04-nvidia-oss-kernelmodule-framework-laptop",
"date": "2022-05-27",
"name": "pipx",
"type": "💿",
"description": "Install and Run Python Applications in Isolated Environments ",
"url": "https://github.com/pypa/pipx",
"author": "Felix Kerker"
},
{
"episode": "E08",
"episode_title": "Newsupdate 06/22 - CVE-2022-1966, openSUSE Leap 15 SP4, AlmaLinux 9.0, NixOS 22.05, HP Dev One",
"episode_url": "https://focusonlinux.podigee.io/9-newsupdate-06-22-cve-2022-1966-opensuse-leap-15-sp4-almalinux-9-0-nixos-22-05-hp-dev-one",
"date": "2022-06-24",
"name": "deb-get",
"type": "💿",
"description": "apt-get for .debs published via GitHub or direct download",
"url": "https://github.com/wimpysworld/deb-get",
"author": "Christian Stankowic"
},
{
"episode": "E08",
"episode_title": "Newsupdate 06/22 - CVE-2022-1966, openSUSE Leap 15 SP4, AlmaLinux 9.0, NixOS 22.05, HP Dev One",
"episode_url": "https://focusonlinux.podigee.io/9-newsupdate-06-22-cve-2022-1966-opensuse-leap-15-sp4-almalinux-9-0-nixos-22-05-hp-dev-one",
"date": "2022-06-24",
"name": "pass",
"type": "💿",
"description": "The standard UNIX password manager",
"url": "https://www.passwordstore.org",
"author": "Jan Walther"
},
{
"episode": "E10",
"episode_title": "Newsupdate 07/22 - RETBleed, Rocky Linux 9.0, SUSE Manager 4.3, Red Hat Satellite 6.11, Proxmox",
"episode_url": "https://focusonlinux.podigee.io/11-newsupdate-07-22-retbleed-rocky-linux-9-0-suse-manager-4-3-red-hat-satellite-6-11-proxmox",
"date": "2022-07-29",
"name": "Ventoy",
"type": "💿",
"description": "A new bootable USB solution",
"url": "https://github.com/ventoy/Ventoy",
"author": "Christian Stankowic"
},
{
"episode": "E10",
"episode_title": "Newsupdate 07/22 - RETBleed, Rocky Linux 9.0, SUSE Manager 4.3, Red Hat Satellite 6.11, Proxmox",
"episode_url": "https://focusonlinux.podigee.io/11-newsupdate-07-22-retbleed-rocky-linux-9-0-suse-manager-4-3-red-hat-satellite-6-11-proxmox",
"date": "2022-07-29",
"name": "OpenGrok",
"type": "💿",
"description": "Fast and usable source code search and cross reference engine, written in Java",
"url": "https://github.com/oracle/opengrok",
"author": "Jan Walther"
},
{
"episode": "E11",
"episode_title": "Newsupdate 08/22 - Linux 5.19/6.0, Debian-/GNOME-/SUSE-Jubiläen, GNOME 43, Ubuntu 22.04.1",
"episode_url": "https://focusonlinux.podigee.io/12-newsupdate-08-22-linux-5-19-6-0-debian-gnome-suse-jubilaen-gnome-43-ubuntu-22-04-1",
"date": "2022-08-26",
"name": "diagrams.net",
"type": "💿",
"description": "Client-side editor for general diagramming",
"url": "https://app.diagrams.net",
"author": "Christian Stankowic"
},
{
"episode": "E11",
"episode_title": "Newsupdate 08/22 - Linux 5.19/6.0, Debian-/GNOME-/SUSE-Jubiläen, GNOME 43, Ubuntu 22.04.1",
"episode_url": "https://focusonlinux.podigee.io/12-newsupdate-08-22-linux-5-19-6-0-debian-gnome-suse-jubilaen-gnome-43-ubuntu-22-04-1",
"date": "2022-08-26",
"name": "MicrocodeDecryptor",
"type": "💿",
"description": "Tool for decrypting CPU microcode",
"url": "https://github.com/chip-red-pill/MicrocodeDecryptor",
"author": "Jan Walther"
},
{
"episode": "E11",
"episode_title": "Newsupdate 08/22 - Linux 5.19/6.0, Debian-/GNOME-/SUSE-Jubiläen, GNOME 43, Ubuntu 22.04.1",
"episode_url": "https://focusonlinux.podigee.io/12-newsupdate-08-22-linux-5-19-6-0-debian-gnome-suse-jubilaen-gnome-43-ubuntu-22-04-1",
"date": "2022-08-26",
"name": "Ghidra",
"type": "💿",
"description": "Software reverse engineering suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission",
"url": "https://ghidra-sre.org",
"author": "Jan Walther"
},
{
"episode": "E12",
"episode_title": "Monitoring",
"episode_url": "https://focusonlinux.podigee.io/13-monitoring",
"date": "2022-09-16",
"name": "Glances",
"type": "💿",
"description": "An top/htop alternative for GNU/Linux, BSD, Mac OS and Windows operating systems",
"url": "https://github.com/nicolargo/glances",
"author": "Christian Stankowic"
},
{
"episode": "E12",
"episode_title": "Monitoring",
"episode_url": "https://focusonlinux.podigee.io/13-monitoring",
"date": "2022-09-16",
"name": "viddy",
"type": "💿",
"description": "A modern watch command",
"url": "https://github.com/sachaos/viddy",
"author": "Michael Friedrich"
},
{
"episode": "E12",
"episode_title": "Monitoring",
"episode_url": "https://focusonlinux.podigee.io/13-monitoring",
"date": "2022-09-16",
"name": "netapp-cdot-nagios",
"type": "💿",
"description": "Nagios-Checks for monitoring NetApp cDOT-Systems via NetApp Perl API",
"url": "https://github.com/aleex42/netapp-cdot-nagios",
"author": "Philip Baier"
},
{
"episode": "E12",
"episode_title": "Monitoring",
"episode_url": "https://focusonlinux.podigee.io/13-monitoring",
"date": "2022-09-16",
"name": "check_redfish",
"type": "💿",
"description": "A monitoring/inventory plugin to check components and health status of systems which support Redfish",
"url": "https://github.com/bb-Ricardo/check_redfish",
"author": "Philip Baier"
},
{
"episode": "E12",
"episode_title": "Monitoring",
"episode_url": "https://focusonlinux.podigee.io/13-monitoring",
"date": "2022-09-16",
"name": "moreutils",
"type": "💿",
"description": "Collection of the unix tools that nobody thought to write long ago when unix was young",
"url": "https://joeyh.name/code/moreutils",
"author": "Gerd Stolz"
},
{
"episode": "E14",
"episode_title": "Ältere Hardware mit Linux wiederbeleben",
"episode_url": "https://focusonlinux.podigee.io/15-altere-hardware-mit-linux-wiederbeleben",
"date": "2022-10-14",
"name": "tlp",
"type": "💿",
"description": "Optimize Linux Laptop Battery Life",
"url": "https://linrunner.de/tlp",
"author": "Christian Stankowic"
},
{
"episode": "E14",
"episode_title": "Ältere Hardware mit Linux wiederbeleben",
"episode_url": "https://focusonlinux.podigee.io/15-altere-hardware-mit-linux-wiederbeleben",
"date": "2022-10-14",
"name": "restic",
"type": "💿",
"description": "Fast, secure, efficient backup program",
"url": "https://github.com/restic/restic",
"author": "Markus Rest"
},
{
"episode": "E14",
"episode_title": "Ältere Hardware mit Linux wiederbeleben",
"episode_url": "https://focusonlinux.podigee.io/15-altere-hardware-mit-linux-wiederbeleben",
"date": "2022-10-14",
"name": "pwgen",
"type": "💿",
"description": "Small password generator which creates passwords which can be easily memorized by a human",
"url": "https://sourceforge.net/projects/pwgen",
"author": "Frank Hofmann"
},
{
"episode": "E15",
"episode_title": "Newsupdate 10/22 - awk, Ubuntu 22.10, SUSE ALP, RHEL 8.7/9.1 Beta, Ubuntu Pro",
"episode_url": "https://focusonlinux.podigee.io/16-newsupdate-10-22-awk-ubuntu-22-10-suse-alp-rhel-8-7-9-1-beta-ubuntu-pro",
"date": "2022-10-28",
"name": "Hugo",
"type": "💿",
"description": "The world's fastest framework for building websites",
"url": "https://gohugo.io",
"author": "Christian Stankowic"
},
{
"episode": "E15",
"episode_title": "Newsupdate 10/22 - awk, Ubuntu 22.10, SUSE ALP, RHEL 8.7/9.1 Beta, Ubuntu Pro",
"episode_url": "https://focusonlinux.podigee.io/16-newsupdate-10-22-awk-ubuntu-22-10-suse-alp-rhel-8-7-9-1-beta-ubuntu-pro",
"date": "2022-10-28",
"name": "Hugo Themes",
"type": "💿",
"description": "Themes for the Hugo Static Site Generator",
"url": "https://themes.gohugo.io",
"author": "Christian Stankowic"
},
{
"episode": "E15",
"episode_title": "Newsupdate 10/22 - awk, Ubuntu 22.10, SUSE ALP, RHEL 8.7/9.1 Beta, Ubuntu Pro",
"episode_url": "https://focusonlinux.podigee.io/16-newsupdate-10-22-awk-ubuntu-22-10-suse-alp-rhel-8-7-9-1-beta-ubuntu-pro",
"date": "2022-10-28",
"name": "wordpress-to-markdown",
"type": "💿",
"description": "Wordpress Export XML converter that outputs Markdown posts",
"url": "https://github.com/ytechie/wordpress-to-markdown",
"author": "Christian Stankowic"
},
{
"episode": "E15",
"episode_title": "Newsupdate 10/22 - awk, Ubuntu 22.10, SUSE ALP, RHEL 8.7/9.1 Beta, Ubuntu Pro",
"episode_url": "https://focusonlinux.podigee.io/16-newsupdate-10-22-awk-ubuntu-22-10-suse-alp-rhel-8-7-9-1-beta-ubuntu-pro",
"date": "2022-10-28",
"name": "direnv",
"type": "💿",
"description": "Loads/unloads environment variables depending on the current directory",
"url": "https://direnv.net",
"author": "Felix Kerker"
},
{
"episode": "E16",
"episode_title": "Proxmox",
"episode_url": "https://focusonlinux.podigee.io/17-proxmox",
"date": "2022-11-11",
"name": "SadServers",
"type": "💿",
"description": "Capture The Flag challenges - train and prove your debugging skills",
"url": "https://sadservers.com",
"author": "Christian Stankowic"
},
{
"episode": "E16",
"episode_title": "Proxmox",
"episode_url": "https://focusonlinux.podigee.io/17-proxmox",
"date": "2022-11-11",
"name": "MkDocs",
"type": "💿",
"description": "Project documentation with Markdown",
"url": "https://www.mkdocs.org",
"author": "Sebastian Zoll"
},
{
"episode": "E16",
"episode_title": "Proxmox",
"episode_url": "https://focusonlinux.podigee.io/17-proxmox",
"date": "2022-11-11",
"name": "Proxmox Helper Scripts",
"type": "💿",
"description": "Scripts for Simplifying your Homelab",
"url": "https://tteck.github.io/Proxmox",
"author": "Jens Schanz"
},
{
"episode": "E16",
"episode_title": "Proxmox",
"episode_url": "https://focusonlinux.podigee.io/17-proxmox",
"date": "2022-11-11",
"description": "Ping but with a graph ",
"name": "gping",
"type": "💿",
"url": "https://github.com/orf/gping",
"author": "Marc Sauer"
},
{
"episode": "E17",
"episode_title": "Newsupdate 11/22 - CVE-2022-3602/3786, Python 3.11, Fedora 37, Gitea-Fork, RHEL 8.7/9.1",
"episode_url": "https://focusonlinux.podigee.io/18-newsupdate-11-22-cve-2022-3602-3786-python-3-11-fedora-37-gitea-fork-rhel-8-7-9-1",
"date": "2022-11-25",
"name": "instances.social",
"type": "🌍",
"description": "Mastodon instance finder",
"url": "https://instances.social",
"author": "Christian Stankowic"
},
{
"episode": "E17",
"episode_title": "Newsupdate 11/22 - CVE-2022-3602/3786, Python 3.11, Fedora 37, Gitea-Fork, RHEL 8.7/9.1",
"episode_url": "https://focusonlinux.podigee.io/18-newsupdate-11-22-cve-2022-3602-3786-python-3-11-fedora-37-gitea-fork-rhel-8-7-9-1",
"date": "2022-11-25",
"name": "Fedifinder",
"type": "🌍",
"description": "Find your Twitter contacts in the Fediverse",
"url": "https://fedifinder.glitch.me",
"author": "Christian Stankowic"
},
{
"episode": "E17",
"episode_title": "Newsupdate 11/22 - CVE-2022-3602/3786, Python 3.11, Fedora 37, Gitea-Fork, RHEL 8.7/9.1",
"episode_url": "https://focusonlinux.podigee.io/18-newsupdate-11-22-cve-2022-3602-3786-python-3-11-fedora-37-gitea-fork-rhel-8-7-9-1",
"date": "2022-11-25",
"name": "twitter-archive-parser",
"type": "💿",
"description": "Python code to parse a Twitter archive and output in various ways",
"url": "https://github.com/timhutton/twitter-archive-parser",
"author": "Christian Stankowic"
},
{
"episode": "E17",
"episode_title": "Newsupdate 11/22 - CVE-2022-3602/3786, Python 3.11, Fedora 37, Gitea-Fork, RHEL 8.7/9.1",
"episode_url": "https://focusonlinux.podigee.io/18-newsupdate-11-22-cve-2022-3602-3786-python-3-11-fedora-37-gitea-fork-rhel-8-7-9-1",
"date": "2022-11-25",
"name": "pytest",
"type": "💿",
"description": "Python unit testing framework",
"url": "https://docs.pytest.org",
"author": "Felix Kerker"
},
{
"episode": "E17",
"episode_title": "Newsupdate 11/22 - CVE-2022-3602/3786, Python 3.11, Fedora 37, Gitea-Fork, RHEL 8.7/9.1",
"episode_url": "https://focusonlinux.podigee.io/18-newsupdate-11-22-cve-2022-3602-3786-python-3-11-fedora-37-gitea-fork-rhel-8-7-9-1",
"date": "2022-11-25",
"name": "acme.sh",
"type": "💿",
"description": "A pure Unix shell script implementing ACME client protocol",
"url": "https://github.com/acmesh-official/acme.sh",
"author": "Jan Walther"
},
{
"episode": "E18",
"episode_title": "Rückblick: Das Jahr 2022 aus der FLOSS-Sicht",
"episode_url": "https://focusonlinux.podigee.io/35-ruckblick-das-jahr-2022-aus-der-floss-sicht",
"date": "2022-12-16",
"name": "JSON Crack",
"type": "🌍",
"description": "Visualizes JSON data graphically",
"url": "https://jsoncrack.com",
"author": "Christian Stankowic"
},
{
"episode": "E18",
"episode_title": "Rückblick: Das Jahr 2022 aus der FLOSS-Sicht",
"episode_url": "https://focusonlinux.podigee.io/35-ruckblick-das-jahr-2022-aus-der-floss-sicht",
"date": "2022-12-16",
"name": "sed",
"type": "💿",
"description": "Text stream editor",
"url": "https://sed.sourceforge.io",
"author": "Michael Kleinhenz"
},
{
"episode": "E18",
"episode_title": "Rückblick: Das Jahr 2022 aus der FLOSS-Sicht",
"episode_url": "https://focusonlinux.podigee.io/35-ruckblick-das-jahr-2022-aus-der-floss-sicht",
"date": "2022-12-16",
"name": "bash",
"type": "💿",
"description": "Sh-compatible shell that incorporates useful features from the Korn shell and the C shell",
"url": "https://www.gnu.org/software/bash",
"author": "Oliver Zendel"
},
{
"episode": "E43",
"episode_title": "Newsupdate 12/22 - Linux 6.1, ComposeFS, Proxmox 7.3, Forgejo, ClamAV 1.0",
"episode_url": "https://focusonlinux.podigee.io/43-newsupdate-12-22-linux-6-1-composefs-proxmox-7-3-forgejo-clamav-1-0",
"date": "2022-12-23",
"name": "jo",
"type": "💿",
"description": "JSON output from a shell",
"url": "https://github.com/jpmens/jo",
"author": "Christian Stankowic"
},
{
"episode": "E43",
"episode_title": "Newsupdate 12/22 - Linux 6.1, ComposeFS, Proxmox 7.3, Forgejo, ClamAV 1.0",
"episode_url": "https://focusonlinux.podigee.io/43-newsupdate-12-22-linux-6-1-composefs-proxmox-7-3-forgejo-clamav-1-0",
"date": "2022-12-23",
"name": "k9s",
"type": "💿",
"description": "Kubernetes CLI To Manage Your Clusters In Style!",
"url": "https://k9scli.io",
"author": "Jan Walther"
},
{
"episode": "E43",
"episode_title": "Newsupdate 12/22 - Linux 6.1, ComposeFS, Proxmox 7.3, Forgejo, ClamAV 1.0",
"episode_url": "https://focusonlinux.podigee.io/43-newsupdate-12-22-linux-6-1-composefs-proxmox-7-3-forgejo-clamav-1-0",
"date": "2022-12-23",
"name": "wl-clipboard",
"type": "💿",
"description": "Command-line copy/paste utilities for Wayland",
"url": "https://github.com/bugaevc/wl-clipboard",
"author": "Felix Kerker"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "gnome-shell-extension-caffeine",
"type": "💿",
"description": "Disable screensaver and auto suspend",
"url": "https://github.com/eonpatapon/gnome-shell-extension-caffeine",
"author": "Christian Stankowic"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "Sound Input & Output Device Chooser",
"type": "💿",
"description": "Gnome Shell Extension to show a simple chooser to select Input & Output device based on gnome control center",
"url": "https://github.com/kgshank/gse-sound-output-device-chooser",
"author": "Christian Stankowic"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "Pop!_OS Shell",
"type": "💿",
"description": "GNOME extension with tiling window support",
"url": "https://github.com/pop-os/shell",
"author": "Christian Stankowic"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "Easy Docker Containers",
"type": "💿",
"description": "A GNOME Shell extension (GNOME Panel applet) to be able to generally control your available Docker containers.",
"url": "https://extensions.gnome.org/extension/2224/easy-docker-containers/",
"author": "Christian Stankowic"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "Removable Drive Menu",
"type": "💿",
"description": "A status menu for accessing and unmounting removable devices.",
"url": "https://extensions.gnome.org/extension/7/removable-drive-menu/",
"author": "Jan Walther"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "Lock Keys",
"type": "💿",
"description": "Numlock & Capslock status on the panel.",
"url": "https://extensions.gnome.org/extension/36/lock-keys/",
"author": "Jan Walther"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "RunCat",
"type": "💿",
"description": "The cat tells you the CPU usage by running speed",
"url": "https://extensions.gnome.org/extension/2986/runcat/",
"author": "Jan Walther"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "dash-to-dock",
"type": "💿",
"description": "GNOME shell extension that moves the dash out of the overview transforming it in a dock for an easier launching.",
"url": "https://github.com/micheleg/dash-to-dock",
"author": "Jan Walther"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "clipboard-indicator",
"type": "💿",
"description": "The most popular clipboard manager for GNOME",
"url": "https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator",
"author": "Felix Kerker"
},
{
"episode": "E19",
"episode_title": "GNOME Shell-Extensions",
"episode_url": "https://focusonlinux.podigee.io/19-gnome-shell-extensions",
"date": "2022-12-01",
"name": "hass-gshell-extension",
"type": "💿",
"description": "A simple gnome shell extension for home assistant",
"url": "https://github.com/geoph9/hass-gshell-extension",
"author": "Felix Kerker"
},
{
"episode": "E20",
"episode_title": "Nützliche Shell-Tricks",
"episode_url": "https://focusonlinux.podigee.io/20-nutzliche-shell-tricks",
"date": "2022-12-02",
"name": "Viele nützliche Oneliner",
"type": "📕",
"description": "A collection of handy Bash One-Liners and terminal tricks for data processing and Linux system maintenance.",
"url": "https://github.com/onceupon/Bash-Oneliner",
"author": "Christian Stankowic, Felix Kerker, Jan Walther"
},
{
"episode": "E20",
"episode_title": "Nützliche Shell-Tricks",
"episode_url": "https://focusonlinux.podigee.io/20-nutzliche-shell-tricks",
"date": "2022-12-02",
"name": "Emac-Navigation",
"type": "📕",
"description": "Verschiedene Bash-Shortcuts",
"url": "https://gist.github.com/tuxfight3r/60051ac67c5f0445efee",
"author": "Felix Kerker"
},
{
"episode": "E20",
"episode_title": "Nützliche Shell-Tricks",
"episode_url": "https://focusonlinux.podigee.io/20-nutzliche-shell-tricks",
"date": "2022-12-02",
"name": "pushd, popd und dirs -l",
"type": "📕",
"description": "In computing, pushd and popd are a pair of commands which allow users to quickly switch between the current and previous directory when using the command line.",
"url": "https://en.wikipedia.org/wiki/Pushd_and_popd",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "CoolRetroTerm",
"type": "💿",
"description": "A good looking terminal emulator which mimics the old cathode display",
"url": "https://github.com/Swordfish90/cool-retro-term",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "doge",
"type": "💿",
"description": "wow very terminal doge",
"url": "https://github.com/Olivia5k/doge",
"author": "Moritz Meid"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "lolcat (Ruby)",
"type": "💿",
"description": "Rainbows and unicorns!",
"url": "https://github.com/busyloop/lolcat/",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "lolcat (Python)",
"type": "💿",
"description": "Rainbows and unicorns (without Ruby! jay!)",
"url": "https://github.com/tehmaze/lolcat/",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "lolcat-cc",
"type": "💿",
"description": "fast cross-platform c++ implementation of lolcat",
"url": "https://github.com/n-ham/lolcat-cc",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "figlet",
"type": "💿",
"description": "FIGlet is a program for making large letters out of ordinary text",
"url": "http://www.figlet.org/",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "activate-linux",
"type": "💿",
"description": "The 'Activate Windows' watermark ported to Linux",
"url": "https://github.com/MrGlockenspiel/activate-linux",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "WSysMon",
"type": "💿",
"description": "A windows task manager clone for Linux.",
"url": "https://github.com/SlyFabi/WSysMon",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "psdoom",
"type": "💿",
"description": "Doom as an Interface for Process Management",
"url": "https://www.cs.unm.edu/~dlchao/flake/doom/chi/chi.html",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "sl",
"type": "💿",
"description": "Cure your bad habit of mistyping",
"url": "https://github.com/mtoyoda/sl",
"author": "Moritz Meid"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "goscooter",
"type": "💿",
"description": "Client-Cli and go package for howmuchisthe.fish",
"url": "https://github.com/fxkk/goscooter",
"author": "Felix Kerker"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "howmuchisthe.fish",
"type": "💿",
"description": "Lyrical madness from the brains of H.P. Baxxter in the form of a JSON API.",
"url": "https://github.com/theimpossibleastronaut/howmuchisthe.fish",
"author": "Felix Kerker"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "fishdraw",
"type": "💿",
"description": "Procedurally generated fish drawings.",
"url": "https://github.com/LingDong-/fishdraw",
"author": "Christian Stankowic"
},
{
"episode": "E21",
"episode_title": "For teh lulz",
"episode_url": "https://focusonlinux.podigee.io/21-for-teh-lulz",
"date": "2022-12-03",
"name": "cmatrix",
"type": "💿",
"description": "Terminal based 'The Matrix' like implementation.",
"url": "https://github.com/abishekvashok/cmatrix",
"author": "Christian Stankowic"
},
{
"episode": "E22",
"episode_title": "Tools für Mäuse",
"episode_url": "https://focusonlinux.podigee.io/22-tools-fur-mause",
"date": "2022-12-04",
"name": "Solaar",
"type": "💿",
"description": "A Linux manager for many Logitech keyboards",
"url": "https://pwr-solaar.github.io/Solaar/",
"author": "Christian Stankowic"
},
{
"episode": "E22",
"episode_title": "Tools für Mäuse",
"episode_url": "https://focusonlinux.podigee.io/22-tools-fur-mause",
"date": "2022-12-04",
"name": "piper",
"type": "💿",
"description": "GTK application to configure gaming devices",
"url": "https://github.com/libratbag/piper",
"author": "Christian Stankowic"
},
{
"episode": "E22",
"episode_title": "Tools für Mäuse",
"episode_url": "https://focusonlinux.podigee.io/22-tools-fur-mause",
"date": "2022-12-04",
"name": "Liste von ratbagd unterstützter Mäuse",
"type": "📕",
"description": "Liste von ratbagd unterstützter Mäuse",
"url": "https://github.com/libratbag/libratbag/tree/master/data/devices",
"author": "Christian Stankowic"
},
{
"episode": "E23",
"episode_title": "Musik unter Linux",
"episode_url": "https://focusonlinux.podigee.io/23-musik-unter-li",
"date": "2022-12-05",
"name": "Lollypop",
"type": "💿",
"description": "a modern music player for GNOME",
"url": "https://wiki.gnome.org/Apps/Lollypop",
"author": "Jan Walther"
},
{
"episode": "E23",
"episode_title": "Musik unter Linux",
"episode_url": "https://focusonlinux.podigee.io/23-musik-unter-li",
"date": "2022-12-05",
"name": "Navidrome",
"type": "💿",
"description": "Personal Streaming Service",
"url": "https://www.navidrome.org/",
"author": "Jan Walther"
},
{
"episode": "E23",
"episode_title": "Musik unter Linux",
"episode_url": "https://focusonlinux.podigee.io/23-musik-unter-li",
"date": "2022-12-05",
"name": "Funkwhale",
"type": "💿",
"description": "A platform for all your audio",
"url": "https://funkwhale.audio/",
"author": "Christian Stankowic"
},
{
"episode": "E23",
"episode_title": "Musik unter Linux",
"episode_url": "https://focusonlinux.podigee.io/23-musik-unter-li",
"date": "2022-12-05",
"name": "Maloja",
"type": "💿",
"description": "Self-hosted music scrobble database to create personal listening statistics and charts",
"url": "https://github.com/krateng/maloja",
"author": "Jan Walther"
},