Skip to content

Instantly share code, notes, and snippets.

@ken-master
ken-master / bash.sh
Created August 20, 2015 07:15
Linux Mount SSHFS follow symlinks
sshfs -o -follow_symlinks username@server_or_ip:/path/to/remote/folder/ /path/to/local/mount/folder
@atoponce
atoponce / gist:07d8d4c833873be2f68c34f9afc5a78a
Last active July 17, 2024 07:03 — forked from tqbf/gist:be58d2d39690c3b366ad
Cryptographic Best Practices

Cryptographic Best Practices

Putting cryptographic primitives together is a lot like putting a jigsaw puzzle together, where all the pieces are cut exactly the same way, but there is only one correct solution. Thankfully, there are some projects out there that are working hard to make sure developers are getting it right.

The following advice comes from years of research from leading security researchers, developers, and cryptographers. This Gist was [forked from Thomas Ptacek's Gist][1] to be more readable. Additions have been added from

@ikenfin
ikenfin / gismeteo-city-codes.md
Created October 27, 2016 07:59
Список кодов городов XML API Gismeteo
Код Название
27611 Москва
26062 С.-Петербург
29865 Абакан
22550 Архангельск
34880 Астрахань
29838 Барнаул
34214 Белгород
31510 Благовещенск
@walm
walm / main.go
Last active May 15, 2024 06:01
Simple Golang DNS Server
package main
import (
"fmt"
"log"
"strconv"
"github.com/miekg/dns"
)
@joyrexus
joyrexus / README.md
Last active February 24, 2024 15:16
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")
@LucasWiemers
LucasWiemers / userContent.css
Last active March 25, 2019 22:27
Firefox userContent.css to fix color issues in input fields with dark themes. Place this file in ~/.mozilla/firefox/$PROFILE.default/chrome/
input:not([type='checkbox']):not([type='radio']),
textarea,
select {
border: 1px solid #ddd;
background-color: white;
border-radius: 2px;
padding: 0.4rem;
color: black;
-moz-appearance: none !important;
}