mindmap
root((mindmap))
Origins
Long history
::icon(fa fa-book)
Popularisation
British popular psychology author Tony Buzan
Research
On effectivenessand features
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
import serial | |
BUSPIRATE_PORT = '/dev/ttyUSB0' | |
SETUP_SEQUENCE = [ | |
# '#', # reset bus pirate (slow, maybe not needed) | |
'm', # change mode (goal is to get away from HiZ) | |
'3', # UART MODE | |
'9', # Port Speed 115200 | |
'1', # Parity (NO) |
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
#include <stdio.h> | |
#include <stdint.h> | |
// Philips Sonicare NFC Head Password calculation by @atc1441 Video manual: https://www.youtube.com/watch?v=EPytrn8i8sc | |
uint16_t CRC16(uint16_t crc, uint8_t *buffer, int len) // Default CRC16 Algo | |
{ | |
while(len--) | |
{ | |
crc ^= *buffer++ << 8; | |
int bits = 0; | |
do |
---
config:
sankey:
showValues: false
---
sankey-beta
Agricultural 'waste',Bio-conversion,124.729
Bio-conversion,Liquid,0.597
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
build: | |
arduino-cli compile -v -p /dev/ttyUSB0 --fqbn esp32:esp32:esp32 | |
flash: | |
arduino-cli compile -v -p /dev/ttyUSB0 --fqbn esp32:esp32:esp32 -u | |
setup: | |
arduino-cli core install esp32:esp32 |
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
#!/bin/zsh | |
# Convert Flipper's NFC file to Proxmark3 compatible file | |
set -eu | |
if ! [ $# -eq 2 ] | |
then | |
echo "usage: $0 <input.nfc> <output.bin>" | |
exit 1 | |
fi |
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
(ns user | |
(:require [clojure.java.io :as io] | |
[clojure.core.match :as m]) | |
(:import java.awt.Color | |
java.awt.image.BufferedImage | |
javax.imageio.ImageIO)) | |
(defn interpolate-colors | |
[^Color color & {:keys [lint?] :or {lint? true}}] | |
(m/match [(.getRed color) (.getGreen color) (.getBlue color)] |
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
// e2271467ad3ecc2a716aef5872c785bbc5d7ce6af0b535a6d82f4fb29e388b35 | |
#include <stdio.h> | |
#include <stdint.h> | |
#define MAGIC_TABLE_SIZE 192 | |
#define KEY_LENGTH 6 | |
#define UID_LENGTH 4 | |
int main(int argc, char *argv[]) { |
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
#!/bin/sh -exu | |
dev=$1 | |
cd $(mktemp -d) | |
function umountboot { | |
umount boot || true | |
umount root || true | |
} | |
# RPi1/Zero (armv6h): |
NewerOlder