Skip to content

Instantly share code, notes, and snippets.

@HON95
HON95 / gpg_pubkey
Last active January 21, 2018 07:28
GPG Public Key
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQINBFpkP0QBEACljjL2RyBW5kkUcYgyl6PFQDU2z7uCaiMt7B/153Ex10QVYuWG
inNau2bwLFWfh8w3liZW97+schEEDNLuLAR/mor9BHPlhlfBXhen90ttLJNyH9qj
1/gH4bMQ+TJDdLErpeH9tHtn124iutqIP2gPYVZLS/5+iSTLJKAP4KI7McoC1uUX
3Ul17F/MgUoFfHrtv1cHPp1zlG7AfjeQVQCVjHA9pQ4nAb0GGkyId1gQbOTvpNUD
9nmYx3bm90UP1M8T+kEyc7BZuKSwkDS/CrKPryhIJRvIYMAbnvTvohTkPUTPwCAm
BvxrJaOy4ioKui6M/VqZy7q6zHrcB++yPCxC9ca9BkWYxZSFTPQjHJafJPItMAeU
STHtRgex6RuP45PpVx87n46ZGOgAuV9kU1MTfq235ZUbQgbKCHD17FR3ofIIuBlV
6E8DpQp7bpvp8iqnWIEGJesjf8rC6O2B2sjmTxc5QkVyafeC/AOZvk7kkp/fx8fu
@HON95
HON95 / ssh_pubkey
Last active January 21, 2018 07:45
SSH Public Key
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDNqlSxfxo1eEbgskyiX4THQa2RaGXvejWhclGEP1P7JfbbYzQ3eldTcqZWVWJQtI19nrwgXXe9HcHulioKz812yDMIkGkb0g0DAkmKqv0la2DSV6vbWHAky9mImipcdjivPl6dJ/SJX10lUulGr6qlde50Johkxbhhn9Iiz4ZQO0hUJo6cxIkPVwdfhcI76yENSgv3ElVDG4n2tmZpYHxF70C6AI9WusH928Osyc4RNTv4NFYm7mHganrA17iHiUZB1cxtW/aMFhOcBkGKbTQ7NnrSnt/rHB+My3hxZ2NpRlN4Q7X3kAaDY+vl+sk97nfnedSoJPZvDfSAuzsI7FJw1Z9hX7XxPHY7p1bdXCbFhtg4OMlfTgdAqjZELOxgd4n/JAgt5Y9hL0G14Klk/ZD1DdZTPaYvpXOKWayWrvVBHaPWKrgxA3H92+oXgcpbJUBxr75rG1kzjZ77bOXOX4JO3kBThGpFiBP+QSvlEmjX5p8REqO/TPtcHblhihi+7UzoFSalIcxTU/x5z2bFmuc8IOQmky2ttlV54YwicJlJuN+m4v/J5BhhUlEHz1HoFIAztzCxg3Mi6hWVBtWM5xwWtAveenlawS8hO7vak9zTgfO5i8PK6OwI8K1H5aoel9/5B9kBUy4ACnkGFr7nyJ1DLR60w6mYsP5mj478hQ8VzQ== haavard.nordstrand@gmail.com
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 4, 2024 17:49
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@marioharper
marioharper / clean-docker.sh
Last active July 31, 2023 12:44
Stop all docker processes, remove all containers, remove all images
# stop all processes
docker stop $(docker ps -aq)
# remove all containers
docker rm $(docker ps -aq)
# remove all images
docker rmi $(docker images -aq)
# delete all volumes
@fernandezpablo85
fernandezpablo85 / git-maven-howto.md
Last active April 16, 2024 17:02
how to create your own maven repository on github

How to create a maven repository for your github project step by step

Clone your project in a separate folder

(note: replace ORGANIZATION and PROJECT)

git clone git clone git@github.com:ORGANIZATION/PROJECT.git my-repository

Cd into it

@myusuf3
myusuf3 / delete_git_submodule.md
Created November 3, 2014 17:36
How effectively delete a git submodule.

To remove a submodule you need to:

  • Delete the relevant section from the .gitmodules file.
  • Stage the .gitmodules changes git add .gitmodules
  • Delete the relevant section from .git/config.
  • Run git rm --cached path_to_submodule (no trailing slash).
  • Run rm -rf .git/modules/path_to_submodule (no trailing slash).
  • Commit git commit -m "Removed submodule "
  • Delete the now untracked submodule files rm -rf path_to_submodule
@P7h
P7h / jdk_download.sh
Last active February 20, 2024 11:29
Script to download JDK / JRE / Java binaries from Oracle website from terminal / shell / command line / command prompt
##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### #####
### Shell script to download Oracle JDK / JRE / Java binaries from Oracle website using terminal / command / shell prompt using wget.
### You can download all the binaries one-shot by just giving the BASE_URL.
### Script might be useful if you need Oracle JDK on Amazon EC2 env.
### Script is updated for every JDK release.
### Features:-
# 1. Resumes a broken / interrupted [previous] download, if any.
# 2. Renames the file to a proper name with including platform info.
@andreazevedo
andreazevedo / install_mono.sh
Last active November 12, 2021 02:51
Install mono on centOS 6.x
$ yum install bison gettext glib2 freetype fontconfig libpng libpng-devel libX11 libX11-devel glib2-devel libgdi* libexif glibc-devel urw-fonts java unzip gcc gcc-c++ automake autoconf libtool make bzip2 wget
$ cd /usr/local/src
$ wget http://download.mono-project.com/sources/mono/mono-3.2.8.tar.bz2
$ tar jxf mono-3.2.8.tar.bz2
$ cd mono-3.2.8