- Lynn Root
- roguelynn.com
- roguelynn-spy.herokuapp.com
Use scapy
python library for sniffing network traffic. Chrome does one DNS request for each autocomplete guess. Interesting.
### Keybase proof | |
I hereby claim: | |
* I am eykd on github. | |
* I am eykd (https://keybase.io/eykd) on keybase. | |
* I have a public key ASCtPxBeTQqK-TZwsV225mEtCNQO1VwTa01NGBf2aS8XoAo | |
To claim this, I am signing this object: |
$ echo 'hello world' >> /mnt/repo/helloworld.txt | |
$ cat /mnt/repo/helloworld.txt | |
$ echo 'hello world' >> /mnt/repo/helloworld.txt | |
$ cat /mnt/repo/helloworld.txt | |
hello world | |
$ cat /mnt/repo/helloworld.txt | |
hello world | |
$ cat /mnt/repo/helloworld.txt | |
hello world | |
$ echo 'hello world' >> /mnt/repo/test.txt |
from __future__ import print_function | |
foo = 'bar' | |
# This works | |
[foo for _ in range(5)] | |
# This also works: | |
class Foo: |
import logging | |
import random | |
logger = logging.getLogger('mylib.query') | |
def query_predicates(query, predicates): | |
matches = [] | |
qkeys = set() | |
for rkey, predicate in predicates: |
.vagrant |
.vagrant |
.vagrant |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.define :web do |web| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, |
Feature: String Transformation Puzzles | |
In order to get a job, | |
As an interviewee, | |
I need to be able to implement stupid, meaningless string transformations. | |
Scenario: Compress consecutive characters to a number and the character itself. | |
Write a function that takes in a char *string and converts series of | |
consecutive identical characters to the number of consecutive characters and | |
the character itself. |