Skip to content

Instantly share code, notes, and snippets.

View harmolipi's full-sized avatar

Niko Birbilis harmolipi

  • Wounded Warrior Project
  • Tampa, FL
View GitHub Profile
@bonbud-macryg
bonbud-macryg / learning-hoon.md
Last active August 30, 2025 18:19
Subjective data on crashing my fakeship and walking away.

This was first posted on ~2022.3.16 in a group that no longer exists, based on the first few weeks of my experience in the first Hoon School Live cohort. Reuploaded here for posterity, which means some points are out of date.

Not less because in purple I descended
The western day through what you called
The loneliest air, not less was I myself.

What was the ointment sprinkled on my beard?
What were the hymns that buzzed beside my ears?
What was the sea whose tide swept through me there?
>

@akaihola
akaihola / nixos-x1.rst
Last active May 26, 2026 18:04
Installing NixOS on a Lenovo ThinkPad Carbon X1 Gen 9
@j1n6
j1n6 / noop_sync.vbs
Last active August 29, 2022 09:37
Powershell to sync and push to remote git repository via Windows Scheduled Tasks
' Hack to workaround the Powershell Console popup running on a Windows Scheduled Task
' Powershell limitations: https://github.com/PowerShell/PowerShell/issues/3028
'
' Add this file in the same git root directory as the sync.ps1
'
Dim shell,command
Dim oFSO : Set oFSO = CreateObject("Scripting.FileSystemObject")
Dim sScriptDir : sScriptDir = oFSO.GetParentFolderName(WScript.ScriptFullName)
command = "powershell.exe -nologo -File " & sScriptDir & "\sync.ps1"