Skip to content

Instantly share code, notes, and snippets.

View TestSubjector's full-sized avatar

Kumar Prasun TestSubjector

View GitHub Profile
@silgon
silgon / write_read_json.jl
Last active March 16, 2025 15:33
How to Read and Write JSON files in julia
import JSON
###################
### Write data ####
###################
# dictionary to write
dict1 = Dict("param1" => 1, "param2" => 2,
"dict" => Dict("d1"=>1.,"d2"=>1.,"d3"=>1.))
# pass data as a json string (how it shall be displayed in a file)
stringdata = JSON.json(dict1)
@zkiraly
zkiraly / procedure-to-archive-git-branches.md
Last active February 18, 2025 22:00
Procedure to archive git branches.
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active April 24, 2025 05:05
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname