Skip to content

Instantly share code, notes, and snippets.

View tterb's full-sized avatar
Building stuff

Brett Stevenson tterb

Building stuff
View GitHub Profile
#!/usr/bin/python
# Returns the common lines between each of the 'n' specified files
python -c 'import sys;print " ".join(sorted(set.intersection(*[set(open(a).readl
ines()) for a in sys.argv[1:]])))'
@tterb
tterb / GitHubDownloads.md
Last active June 5, 2024 00:05
Downloads README Badge

Github All Releases

[![Github All Releases](https://img.shields.io/github/downloads/username/repo/total.svg)](https://github.com/username/repo/releases)
@tterb
tterb / zipSnapshot.md
Last active March 19, 2019 21:04
Download the current snapshot of GitHub repo as .zip file

Download the current snapshot of a repo as a .zip archive

[current snapshot](https://github.com/<username>/<repo>/zipball/master)
@tterb
tterb / Powershell_profile.ps1
Last active April 26, 2017 21:45
Powershell Profile
# Set-Up
$Shell = $Host.UI.RawUI
$size = $Shell.WindowSize
$size.width=90
$size.height=30
$Shell.WindowSize = $size
$size = $Shell.BufferSize
$size.width=140
$size.height=2500
@tterb
tterb / Makefile
Created November 11, 2016 11:56
C++ Makefile example
# makefile
# define target, its dependencies and files
p5: main.o LinkedList.o
g++ -o p4 main.o LinkedList.o
# define how each object file is to be built
main.o: main.cpp LinkedList.h
g++ -c main.cpp
@tterb
tterb / cppArgs
Last active November 11, 2016 11:53
Reading command-line arguments in C++
int main(int argc, char* argv[]){
if(argc > 1) //if there is an argument
/* Do something */
string firstArg = argv[1];
}
@tterb
tterb / FormattingBadges.md
Created September 24, 2016 13:18
Formatting Badges
@lukas-h
lukas-h / license-badges.md
Last active August 3, 2025 12:17
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.

Translations: (No guarantee that the translations are up-to-date)

@nbremer
nbremer / .block
Last active July 31, 2025 23:13
Radar Chart Redesign
height: 600
license: mit
acknowledgement: Please add "Nadieh Bremer | Visual Cinnamon" to your credit when re-using this code, thank you!