Skip to content

Instantly share code, notes, and snippets.

View pulkitgoyal56's full-sized avatar
🔥

Pulkit Goyal pulkitgoyal56

🔥
View GitHub Profile
@KillyMXI
KillyMXI / README.md
Last active September 7, 2025 09:09
Obsidian list threading and highlight in live preview and source view
## Set ENV variables for path abbreviations H (Home) and P (Projects)
export H="$HOME" # ~
export P="$H/projects"
## Generate SSH Key for GitHub and add to SSH Agent
ssh-keygen -t ed25519 -C "[email protected]" -f "$H/.ssh/mykey"
eval "$(ssh-agent -s)"
## Show public key
@safijari
safijari / orgmode_spacemacs.org
Last active May 30, 2023 16:11
Org mode spacemacs tutorial file

I hope the tutorial has been useful to you. If it was kindly leave a like and a comment, and consider subscribing and turning on subscription notifications. I intend to make more videos like this on the topics mentioned before as well as on other spacemacs topic like magit (git plugin), large scale refactoring, and a number of other things. Thank you so much for watching.

Org tutorial

Note: a great reference can be had here http://spacemacs.org/layers/+emacs/org/README.html

Outlines/headers

Show that each outline has it’s associated “text” under it

@octavifs
octavifs / tmux_htop_local_install.sh
Last active December 4, 2024 08:41
Install tmux and htop statically without root
#!/bin/sh
# Script for installing tmux & htop on systems where you don't have root access.
# Inspired by https://gist.github.com/ryin/3106801
# tmux will be installed in $HOME/local/bin.
# htop will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
@gubatron
gubatron / compiling_building_c_cpp_notes.md
Last active May 23, 2025 19:16
Things to remember when compiling and linking C/C++ programs

Things to remember when compiling/linking C/C++ software

by Angel Leon. March 17, 2015;

Last update on December 14, 2023

Updated on February 27, 2023

Updated August 29, 2019.