For a Chocolatey cheat sheet, see this gist.
Software | Keywords | Chocolatey Package | A² | OS |
---|---|---|---|---|
.NET Core SDK | development |
For a Chocolatey cheat sheet, see this gist.
Software | Keywords | Chocolatey Package | A² | OS |
---|---|---|---|---|
.NET Core SDK | development |
#include <iostream> | |
#define yeet int | |
#define Yeet main | |
#define yEet std | |
#define yeEt cout | |
#define yeeT return | |
#define Yeeet ( | |
#define yeeeT ) | |
#define Yeeeet { |
use strict; | |
use warnings; | |
use feature qw(say); | |
use Getopt::Std; | |
# If set to true, exit script after processing --help or --version flags | |
$Getopt::Std::STANDARD_HELP_VERSION = 1; | |
our $VERSION = "0.1"; | |
#------------------------------------------------------------------------------# |
Playlists and videos from The Coding Train's Youtube channel
function linkHighlight() { | |
let colors = { | |
"HostBg": "#00F", "Host": "#FFF", "HostOut": "#000", | |
"DomainBg": "#808", "Domain": "#FFF", "DomainOut": "#000", | |
"OtherBg": "#F00", "Other": "#FFF", "OtherOut": "#000", | |
"WikiBg": "#FF0", "Wiki": "#000", "WikiOut": "#000", | |
}; | |
let Hosts = {}; | |
let Domains = {}; |
Latency Comparison Numbers (~2012) | |
---------------------------------- | |
L1 cache reference 0.5 ns | |
Branch mispredict 5 ns | |
L2 cache reference 7 ns 14x L1 cache | |
Mutex lock/unlock 25 ns | |
Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
Compress 1K bytes with Zippy 3,000 ns 3 us | |
Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
| Author | Serie | Year | | Title |
A GRUB_INIT_TUNE uses the following format: tempo [freq duration] [freq duration]…
You can preview the tunes below with the standalone index.html included in this gist.
#!/usr/bin/perl | |
# This filter changes all words to Title Caps, and attempts to be clever | |
# about *un*capitalizing small words like a/an/the in the input. | |
# | |
# The list of "small words" which are not capped comes from | |
# the New York Times Manual of Style, plus 'vs' and 'v'. | |
# | |
# 10 May 2008 | |
# Original version by John Gruber: |