I'm frustrated about keyboards dot text
When I'm working at my desk, I put my laptop on a stand and hook it up to an external monitor and a USB hub with a keyboard and mouse
I'm frustrated about keyboards dot text
When I'm working at my desk, I put my laptop on a stand and hook it up to an external monitor and a USB hub with a keyboard and mouse
package main | |
import ( | |
"fmt" | |
"os" | |
"runtime" | |
) | |
func main() { | |
foo(0) |
import Text exposing (..) | |
import Color exposing (..) | |
import Graphics.Element exposing (..) | |
import Graphics.Collage exposing (..) | |
import List | |
import Time exposing (Time, fps, timestamp) | |
import Signal exposing ((<~)) | |
main = | |
let |
If you are experiencing poor or degrading home network performance, it's good to come armed with evidence when talking with your friendly neighborhood ISP.
Usage:
From your cable or DSL modem, find out the gateway, aka your ISP's router between you and them. Usually you can just run netstat -rn
and the entry next to destination==0.0.0.0 is the gateway. (Be sure to be plugged directly into your modem, not going through your WiFi router, or you'll just be getting the gateway of your internal private network, which will be the WiFi router itself.) Armed with that IP address, log a few hours worth of ping(8)
to a file, and then run ping_report.sh
on it.
$ ping -D <gwipaddress> | tee ping.log
# wait a few hours
from __future__ import print_function | |
from collections import namedtuple | |
import csv | |
import sys | |
import time | |
from urllib import urlopen | |
from bs4 import BeautifulSoup |
package drum | |
import ( | |
"bytes" | |
"encoding/binary" | |
"fmt" | |
"io" | |
"os" | |
"strconv" | |
"strings" |
all: results.csv | |
results.csv: scrape.py | |
python $< > $@.tmp | |
mv $@.tmp $@ | |
clean: | |
-rm -f results.csv | |
.PHONY : clean |
ward | precinct | candidate | votes | |
---|---|---|---|---|
1 | 1 | Rahm Emanuel | 61 | |
1 | 1 | Willie Wilson | 5 | |
1 | 1 | Robert W. Fioretti | 11 | |
1 | 1 | Jesus "Chuy" Garcia | 115 | |
1 | 1 | William Walls, III | 2 | |
1 | 2 | Rahm Emanuel | 55 | |
1 | 2 | Willie Wilson | 10 | |
1 | 2 | Robert W. Fioretti | 12 | |
1 | 2 | Jesus "Chuy" Garcia | 107 |
diff --git a/funcs.h b/funcs.h | |
index 5780af7..d99a5da 100644 | |
--- a/funcs.h | |
+++ b/funcs.h | |
@@ -18,7 +18,7 @@ namespace funcs { | |
#include "funcs/if.h" | |
#include "funcs/array.h" | |
#include "funcs/sort.h" | |
-#include "funcs/reverse.h" | |
+//#include "funcs/reverse.h" |