This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[General] | |
FileVersion=53 | |
NumberOfJoysticks=1 | |
DisplayMode=3 | |
UseDiagonalInput=0 | |
UsePOV8Way=0 | |
Threshold=250 | |
Threshold2=610 | |
KeySendMode=0 | |
[Joystick 1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
function TallyVotes() | |
{ | |
var candidates = | |
[ | |
["STEEZY", "STEEZYXL"], | |
["EPRAHIM"] | |
]; | |
var comments = document.querySelectorAll(".comment-even, .comment-odd"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Currently working on: | |
Advent of Code day 19, part 1: https://adventofcode.com/2016/day/18 | |
my code: https://github.com/knutaf/advent2016 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://drawings.jvns.ca/networking/ | |
https://drawings.jvns.ca/mac-address/ | |
https://drawings.jvns.ca/dns/ | |
https://drawings.jvns.ca/packet/ | |
https://drawings.jvns.ca/tcp-1/ | |
https://drawings.jvns.ca/layers/ | |
https://drawings.jvns.ca/ipv6/ | |
https://drawings.jvns.ca/nat/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::io::Read; | |
fn main() { | |
for b in std::io::stdin().bytes() { | |
let val = b.unwrap(); | |
match val { | |
0xd => println!(""), | |
0xa => (), | |
_ => println!("{:#02x}", val), | |
} | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer