Skip to content

Instantly share code, notes, and snippets.

View pulkitgoyal56's full-sized avatar
🔥

Pulkit Goyal pulkitgoyal56

🔥
View GitHub Profile
@aschober
aschober / ssh-on-android-linux-terminal.md
Created March 19, 2025 04:41
Setup SSH and Tailscale on Android 15 Linux Terminal App

Setup SSH and Tailscale on Linux Terminal App

This guide outlines the steps to set up an SSH server and Tailscale on a fresh Debian installation inside the Android Linux Terminal App. After completing these steps, you'll be able to securely SSH into the Linux environment running on your Android device from any remote machine over the internet using Tailscale.

  1. Update package lists and upgrade installed packages to the latest versions:

    sudo apt update && sudo apt upgrade -y
    
@KillyMXI
KillyMXI / README.md
Last active January 23, 2026 08:39
Obsidian list threading and highlight in live preview and source view
@pulkitgoyal56
pulkitgoyal56 / .scripts.sh
Last active January 3, 2026 00:34
Scripts
## 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 "pulkitmds@gmail.com" -f "$H/.ssh/mykey"
eval "$(ssh-agent -s)"
ssh-add "$H/.ssh/mykey"
@fworks
fworks / install-zsh-windows-git-bash.md
Last active January 21, 2026 17:51
Zsh / Oh-my-zsh on Windows Git Bash
@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 13, 2025 04:57
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 December 22, 2025 07:50
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.