I hereby claim:
- I am cpietsch on github.
- I am chrispie (https://keybase.io/chrispie) on keybase.
- I have a public key ASA1z5V4JBxq8UzVGSXn8oqk_wln55LjyjfFZEUtiEz2IAo
To claim this, I am signing this object:
| wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz | |
| tar xvfz jq-1.6.tar.gz | |
| cd jq-1.6/ | |
| autoreconf -vfi | |
| modules/oniguruma | |
| autoreconf -vfi | |
| cd ../.. | |
| ./configure --with-oniguruma=builtin | |
| make -j8 | |
| sudo make install |
| #!/bin/sh | |
| maxTemp="+64" | |
| while true; do | |
| currTemp=$(sensors | awk '/junction/ {print $2}' | cut -d"." -f1) | |
| if [[ $currTemp > $maxTemp ]]; then | |
| shutdown now | |
| echo "too high" | |
| fi |
| Serial | |
| - https://openwrt.org/toh/tp-link/re450#serial | |
| - https://forum.openwrt.org/t/tp-link-re450-brick-after-trying-to-return-the-original-firmware/10563/13 | |
| - https://forum.openwrt.org/t/help-please-110-re450-bricked/7641/12 | |
| Tftp | |
| - https://forum.freifunk.net/t/router-recovery-tftp-pushbutton-und-ttl-serial-recovery/8691 | |
| - https://community.tp-link.com/en/home/forum/topic/81462?page=1 | |
| - https://mikepalmer.net/tp-link-archer-c7-ac1750-v2-tftp-recovery/ |
| Q: What is human life expectancy in the United States? | |
| A: Human life expectancy in the United States is 78 years. | |
| Q: Who was president of the United States in 1955? | |
| A: Dwight D. Eisenhower was president of the United States in 1955. | |
| Q: What party did he belong to? | |
| A: He belonged to the Republican Party. | |
| Q: Who was president of the United States before George W. Bush? |
| [ | |
| { | |
| "id":"8447d084.7e9fb", | |
| "type":"tab", | |
| "label":"Flow 1", | |
| "disabled":false, | |
| "info":"" | |
| }, | |
| { | |
| "id":"5ab61f98.c68d3", |
| var fsPromises = require('fs').promises | |
| var dsv = require('d3-dsv'); | |
| var download = require('download'); | |
| async function all(){ | |
| let data = dsv.csvParse(await fsPromises.readFile("data.csv", { encoding: "utf8" })) | |
| for(let entry of data) { | |
| console.log(entry.url, entry.id) |
I hereby claim:
To claim this, I am signing this object:
| license: mit |
Using selection.property(local, function(d) { … }) to set a local
Forked from mbostock's block: Local Variables
In response to mbostock's block: Local Variables and the Tweet I implemented a little variation having a .local(name[, value) method you can use on selections.
On set, the value is stored on the given element:
element.local("foo", value);
On get, the value is retrieved from given element, or the nearest ancestor that defines it:
var value = element.local("foo");