Skip to content

Instantly share code, notes, and snippets.

View MylesDev's full-sized avatar
☁️
🎮

Myles Stanbury MylesDev

☁️
🎮
View GitHub Profile
@Tamal
Tamal / git-ssh-error-fix.sh
Last active October 16, 2024 17:57
Solution for 'ssh: connect to host github.com port 22: Connection timed out' error
$ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj
Cloning into 'my-awesome-proj'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
$ # This should also timeout
$ ssh -T git@github.com
ssh: connect to host github.com port 22: Connection timed out
$ # but this might work
@chrisnc
chrisnc / rawudp.go
Last active August 9, 2024 17:42
constructing ip/udp packets in go
package main
import (
"bufio"
"bytes"
"encoding/binary"
"flag"
"fmt"
"net"
"os"
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active October 20, 2024 15:52
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname