Skip to content

Instantly share code, notes, and snippets.

View rv-jsawczuk's full-sized avatar

Jimmy Sawczuk rv-jsawczuk

View GitHub Profile
@p3t3r67x0
p3t3r67x0 / openssl_commands.md
Last active May 15, 2025 17:31
Some list of openssl commands for check and verify your keys

openssl

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
@gregelin
gregelin / time_command_tips.md
Last active July 1, 2022 15:42
Time command on OSX, Linux

The time command on OSX has less features than gnu-time gtime on Linux.

You can install gtime on OSX with Homebrew: brew install gnu-time

Example:

> time sleep 2

real	0m2.009s
@stevenh512
stevenh512 / gitconfig-git
Created June 11, 2012 10:51
URL rewriting in .gitconfig
# Use git and git+ssh instead of https
[url "git://github.com/"]
insteadOf = https://github.com/
[url "git@github.com:"]
pushInsteadOf = "git://github.com/"
[url "git@github.com:"]
pushInsteadOf = "https://github.com/"