Skip to content

Instantly share code, notes, and snippets.

View Marzogh's full-sized avatar
🏔️
Off the grid - as much as possible

Marzogh Marzogh

🏔️
Off the grid - as much as possible
View GitHub Profile
@Marzogh
Marzogh / TypeClipboard.md
Created March 15, 2025 03:49 — forked from ethack/TypeClipboard.md
Scripts that simulate typing the clipboard contents. Useful when pasting is not allowed.

It "types" the contents of the clipboard.

Why can't you just paste the contents you ask? Sometimes pasting just doesn't work.

  • One example is in system password fields on OSX.
  • Sometimes you're working in a VM and the clipboard isn't shared.
  • Other times you're working via Remote Desktop and again, the clipboard doesn't work in password boxes such as the system login prompts.
  • Connected via RDP and clipboard sharing is disabled and so is mounting of local drives. If the system doesn't have internet access there's no easy way to get things like payloads or Powershell scripts onto it... until now.

Windows

The Windows version is written in AutoHotKey and easily compiles to an executable. It's a single line script that maps Ctrl-Shift-V to type the clipboard.

@Marzogh
Marzogh / POTA_VK_ZL_Callsign_list.txt
Last active December 22, 2025 13:13
Use this callsign list with Ham2K PoLo Logger's Callsign Notes Feature if you want a list of VK / ZL callsigns + a few prolific non-VK/ZL hunters (https://polo.ham2k.com/docs/polo-features/callsign-notes/)
1AO VK1AO,VK2MET
1AD VK1AD,VK1NAM
1OZ VK1OZ,VK2OZI,VK1PW,VK2APW
1RF VK1RF,VK2MK,VK2CEE
1VIC VK1VIC,VK2VIC
2BM VK2BM,VK1JIM,VK2TER,VK2QRP
2ETI VK2ETI,VK2AIT,VK2AIQ,VK2AIX,VK2AIZ
2GOM VK2GOM,VK2VAR
2IO VK2IO,VK2GEZ
2RP VK2RP,VK2BDR
@Marzogh
Marzogh / Forking a wiki from Github.txt
Created November 29, 2025 05:59
How to fork a wiki from github
Fork a repo. The wiki is not forked automatically. So your fork will have empty wiki.
Create a wiki in the forked repo. Just create an empty Home page or whatever.
Clone the git repo of original wiki: git clone https://github.com/org-a/project-x.wiki.git
Assuming your forked repo now sits in https://github.com/org-b/project-x, add the new remote to the wiki repo: git remote add fork https://github.com/org-b/project-x.wiki.git
Do the force push to overwrite your wiki with the original git push -f fork master
@Marzogh
Marzogh / gitflow-breakdown.md
Created December 22, 2025 13:09 — forked from JamesMGreene/gitflow-breakdown.md
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository