Skip to content

Instantly share code, notes, and snippets.

View cpietsch's full-sized avatar
💭
in the void

Christopher Pietsch cpietsch

💭
in the void
View GitHub Profile
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/
[
{
"id":"8447d084.7e9fb",
"type":"tab",
"label":"Flow 1",
"disabled":false,
"info":""
},
{
"id":"5ab61f98.c68d3",
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?
@cpietsch
cpietsch / download.js
Created December 19, 2018 21:42
nodejs script to download images from a csv file
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)

Keybase proof

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:

@cpietsch
cpietsch / .block
Last active April 25, 2017 13:30
Geo Scatterplot Transitions
license: mit
@cpietsch
cpietsch / README.md
Last active May 29, 2016 17:59
Local Variables 2
@cpietsch
cpietsch / README.md
Last active May 29, 2016 14:38
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");

@cpietsch
cpietsch / .block
Last active February 27, 2016 12:08 — forked from mbostock/.block
Pseudo-Dorling Cartogram
license: gpl-3.0
@cpietsch
cpietsch / spookymultiple.js
Created May 24, 2013 17:58
run spooky.js in a recursive mode multiple times
var Spooky, config, i, run_spooky, scraping, spooky, spooky_is_ready;
Spooky = require('spooky');
config = {
child: {
port: 8081
}
};