Skip to content

Instantly share code, notes, and snippets.

View itorain's full-sized avatar

Isaiah Torain itorain

View GitHub Profile
@itorain
itorain / README-Template.md
Created May 10, 2017 08:21 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@itorain
itorain / main.cpp
Last active April 5, 2019 18:10
C++ LCG
#include <iostream>
#include <memory>
using namespace std;
typedef unsigned char BYTE;
int M = 0xA5;
int A = 0xc9;
int N = 256;
int init = 0x55;
@PurpleBooth
PurpleBooth / README-Template.md
Last active September 24, 2024 10:44
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@grugq
grugq / gist:03167bed45e774551155
Last active August 10, 2024 22:42
operational pgp - draft

Operational PGP

This is a guide on how to email securely.

There are many guides on how to install and use PGP to encrypt email. This is not one of them. This is a guide on secure communication using email with PGP encryption. If you are not familiar with PGP, please read another guide first. If you are comfortable using PGP to encrypt and decrypt emails, this guide will raise your security to the next level.

# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth