Skip to content

Instantly share code, notes, and snippets.

View LordH3lmchen's full-sized avatar
🏠
Working from home

Florian Trabauer LordH3lmchen

🏠
Working from home
  • Austria
View GitHub Profile
@n0ts
n0ts / get_oracle_jdk_x64.sh
Last active September 16, 2023 12:07
Get latest Oracle JDK package bash shell script for linux/osx/windows
#!/bin/bash
# You must accept the Oracle JDK License Update
# https://www.oracle.com/java/technologies/javase-downloads.html
# usage: get_oracle_jdk_x64.sh <jdk_version> <platform> <ext>
# jdk_version: 14
# platform: linux or osx or windows
# ext: rpm or dmg or tar.gz or exec
jdk_version=${1:-14}
@tuogex
tuogex / gist.lua
Last active June 18, 2022 18:04
Gist client for ComputerCraft. Uses JSON library from http://regex.info/blog/lua/json
-- --
-- gist client - tuogex
-- --
JSON = (loadfile "json.lua")()
--helper functions
function printHelp()
print("Gist client by tuogex")
print("-i <gistId> - Gets information about a gist")
print("-if <gistId> <gistFileName> - Gets information about a single file in the gist")
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active April 25, 2024 06:23
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname