mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-04-09 21:21:00 +02:00
OcttKB Cross-Repo Sync (HTML to Raw)
This commit is contained in:
parent
6c7595af07
commit
44af6fc87f
@ -1,10 +1,12 @@
|
||||
created: 20230216222435750
|
||||
creator: Octt
|
||||
modified: 20230613185931281
|
||||
modified: 20230816225208208
|
||||
modifier: Octt
|
||||
tags: Development
|
||||
title: Development/Resources
|
||||
|
||||
* [[Rico's cheatsheets (devhint.io)|https://devhints.io/]] --- //TL;DR for developer documentation - a ridiculous collection of cheatsheets// --- <<[# Git "https://github.com/rstacruz/cheatsheets">>
|
||||
|
||||
; Learning
|
||||
: [[Baeldung|https://www.baeldung.com/]]
|
||||
: [[DigitalOcean Tutorials|https://www.digitalocean.com/community/tutorials]]
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230202230035698
|
||||
creator: Octt
|
||||
modified: 20230605214212955
|
||||
modified: 20230816225649623
|
||||
modifier: Octt
|
||||
tags: OS Google Linux
|
||||
title: Android
|
||||
@ -30,6 +30,7 @@ title: Android
|
||||
* https://appetize.io/demo?device=pixel7&osVersion=13.0&scale=75&deviceColor=black
|
||||
* https://www.bluestacks.com/
|
||||
* ''[[WayDroid|https://waydro.id/]]'' - //container-based approach to boot a full Android system on a regular GNU/Linux system// - [[[Git|https://github.com/waydroid]]]
|
||||
* [[docker-android|https://github.com/budtmo/docker-android]] --- //Android in docker solution with noVNC supported and video recording// --- Many system options but subpar performance (high latency) and weird UI, don't reccomend.
|
||||
|
||||
<<{^ """Android/Development""">>
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230227211756543
|
||||
creator: Octt
|
||||
modified: 20230227222403889
|
||||
modified: 20230816230138897
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Cybersecurity
|
||||
@ -10,6 +10,13 @@ title: Cybersecurity
|
||||
* [[Search CVE List|https://cve.mitre.org/cve/search_cve_list.html]] --- Search the Common Vulnerabilities and Exposures
|
||||
* [[Phishing sites analysis and reporting|https://phish.report/]]
|
||||
|
||||
!!! ''Malware''
|
||||
|
||||
!!!! ''Content blockers''
|
||||
|
||||
* [[uBlock Origin|https://ublockorigin.com/]] --- //Free, open-source ad content blocker. Easy on CPU and memory.// --- <<[# Git "https://github.com/gorhill/uBlock">>
|
||||
* [[Pi-hole|https://pi-hole.net/]] --- //Network-wide ad blocking via your own Linux hardware// --- <<[# Git "https://github.com/pi-hole">>
|
||||
|
||||
!!! ''Passwords''
|
||||
|
||||
!!!! ''Concepts''
|
||||
|
@ -1,10 +1,11 @@
|
||||
created: 20230613185754543
|
||||
creator: Octt
|
||||
modified: 20230723230239440
|
||||
modified: 20230816225320897
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Development
|
||||
|
||||
* <<RedditL r/webdev/comments/spr2db/confused_about_web_app_architecture_and/ "Confused about web app architecture and separation of frontend and backend">>
|
||||
* [[What package naming convention do you use for personal/hobby projects|https://stackoverflow.com/questions/292169/what-package-naming-convention-do-you-use-for-personal-hobby-projects-in-java]] in Java/Android/Flatpak?
|
||||
|
||||
* [[Compilation and Installation using Autoconf|https://opensource.apple.com/source/X11libs/X11libs-60/mesa/Mesa-7.8.2/docs/autoconf.html]]
|
||||
|
11
Wiki-OcttKB/tiddlers/Normal/_Document.tid
Normal file
11
Wiki-OcttKB/tiddlers/Normal/_Document.tid
Normal file
@ -0,0 +1,11 @@
|
||||
created: 20230816230347077
|
||||
creator: Octt
|
||||
modified: 20230816230524603
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Document
|
||||
|
||||
<<^wikipediaframe Document>>
|
||||
|
||||
* <<RedditL r/humblebundles/comments/7z37lo/pdf_or_cbz_for_absolute_best_image_quality "PDF or CBZ for absolute best image quality?">>
|
||||
* <<RedditL r/humblebundles/comments/7tks9g/is_there_a_clear_winner_for_best_format_to "Is there a clear winner for best format to download comics?">>
|
@ -0,0 +1,25 @@
|
||||
created: 20230816223835858
|
||||
creator: Octt
|
||||
modified: 20230816224928332
|
||||
modifier: Octt
|
||||
tags: Linux
|
||||
title: Kernel postinst issue on Linux Mint
|
||||
|
||||
The other day I got my Linux Mint system not booting anymore. I suspected this was due to my custom script I placed in `/etc/kernel/postinst.d/` that is needed to copy the latest kernel in my EFI partition after an APT update, to allow boot via efistub bypassing grub. Maybe an unattended upgrade of my kernel failed.
|
||||
|
||||
After manually fixing the EFI partition to boot again in the system, I tried manually to run `apt upgrade`, and saw that my postinst script threw an error due to not finding one of the files to copy from `/boot` to `/boot/efi`.
|
||||
|
||||
After a quick web search, I saw that files in `/etc/kernel/postinst.d` should be numbered as they get run in the proper order by run-parts. I did `ls` on the directory where I've put my script to be certain that it was the very last, and actually it wasn't.
|
||||
|
||||
```
|
||||
$ ls
|
||||
dkms
|
||||
initramfs-tools
|
||||
pm-utils
|
||||
---> UpdateEfiBoot <--- My script
|
||||
xx-update-initrd-links
|
||||
zz-shim
|
||||
zz-update-grub
|
||||
```
|
||||
|
||||
This was ugly to fix since, as seen in this list, my distro's mantainers are geniuses and decided to get rid of numbers, and instead prefer to just use alphabetical ordered naming, falling back to ugly letter suffixes when that plan failed. I renamed my script from `UpdateEfiBoot` to `zzz-UpdateEfiBoot` and that fixed the issue.
|
@ -1,3 +1,7 @@
|
||||
created: 20230816230758244
|
||||
creator: Octt
|
||||
modified: 20230816230815940
|
||||
modifier: Octt
|
||||
title: Programming
|
||||
|
||||
<<^wikipediaframe "Computer programming">>
|
||||
@ -5,4 +9,6 @@ title: Programming
|
||||
* <<WikipediaL "Loop unrolling">>
|
||||
** <<WikipediaL "Duff's device">> --- I can't totally understand how this works but the piece of code is visually a beautiful machine
|
||||
|
||||
* <<WikipediaL Header-only>>
|
||||
|
||||
* [[How much abstraction is too much?|https://stackoverflow.com/questions/2668355/how-much-abstraction-is-too-much]]
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230504095843099
|
||||
creator: Octt
|
||||
modified: 20230508214652879
|
||||
modified: 20230816225427155
|
||||
modifier: Octt
|
||||
tags: Art
|
||||
title: Tech Art
|
||||
@ -18,6 +18,7 @@ Some interesting tech art pieces follow.
|
||||
* [[p01 - Tunnex|http://www.p01.org/256b_tunnex]]
|
||||
* [[p01 - Starfield|http://www.p01.org/starfield]]
|
||||
* [[p01 - Micro Nova|http://www.p01.org/512b_micro_nova]]
|
||||
* [[Internet Explorer 6 Error|https://mrdoob.com/lab/javascript/effects/ie6/index.html]]
|
||||
|
||||
!!! [[Js1k|https://js1k.com/]] --- //The JavaScript code golfing competition//
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20230110102736164
|
||||
creator: Octt
|
||||
modified: 20230305223746772
|
||||
modified: 20230816230750796
|
||||
modifier: Octt
|
||||
tags: $:/tags/Macro
|
||||
title: $:/Macros/MediaWiki/Main
|
||||
@ -30,8 +30,11 @@ title: $:/Macros/MediaWiki/Main
|
||||
\define ExtMediaWikiAnchor(Article, Domain) [[$Domain$/$Article$|https://$Domain$/wiki/$Article$]]
|
||||
|
||||
\define WikipediaLink(Article, Subdomain:"en") [[$Article$|https://$Subdomain$.wikipedia.org/wiki/$Article$]]
|
||||
|
||||
\define WikipediaLink-(Article, Subdomain:"en") [[$Article$ - Wikipedia|https://$Subdomain$.wikipedia.org/wiki/$Article$]]
|
||||
|
||||
\define WikipediaL(Article, Subdomain:"en") <<WikipediaLink "$Article$" "$Subdomain$">>
|
||||
|
||||
<!--
|
||||
<a href={{{[[$Article$]search-replace:g[ ],[_]prepend[https://$Subdomain$.wikipedia.org/]]}}}>$Article$</a>
|
||||
-->
|
||||
|
@ -1,5 +1,5 @@
|
||||
created: 20230813105853435
|
||||
created: 20230816230916467
|
||||
current-tiddler: GettingStarted
|
||||
modified: 20230813105853435
|
||||
modified: 20230816230916467
|
||||
title: $:/HistoryList
|
||||
type: application/json
|
@ -1,6 +1,6 @@
|
||||
created: 20230813102102983
|
||||
created: 20230816223632021
|
||||
creator: Octt
|
||||
list:
|
||||
modified: 20230813105707311
|
||||
modified: 20230816230658515
|
||||
modifier: Octt
|
||||
title: $:/StoryList
|
@ -1,7 +1,7 @@
|
||||
created: 20220920090405977
|
||||
creator: Octt
|
||||
modified: 20230725105919326
|
||||
modified: 20230816223634332
|
||||
modifier: Octt
|
||||
title: $:/state/tab-1749438307
|
||||
|
||||
$:/core/ui/ControlPanel/Info
|
||||
$:/core/ui/ControlPanel/Saving
|
@ -1,6 +1,6 @@
|
||||
created: 20230501095944427
|
||||
creator: Octt
|
||||
modified: 20230605214226653
|
||||
modified: 20230816230626065
|
||||
modifier: Octt
|
||||
title: $:/state/search/currentTab
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
created: 20220920092307479
|
||||
creator: Octt
|
||||
modified: 20230813105825096
|
||||
modified: 20230816230630105
|
||||
modifier: Octt
|
||||
title: $:/state/tab/sidebar--595412856
|
||||
|
||||
OcttKB/Index
|
||||
$:/core/ui/SideBar/More
|
@ -1,6 +1,6 @@
|
||||
created: 20230501095944427
|
||||
creator: Octt
|
||||
modified: 20230605214226653
|
||||
modified: 20230816230626066
|
||||
modifier: Octt
|
||||
title: $:/state/tab/search-results/sidebar
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user