This file contains hidden or 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
https://storage.googleapis.com/golang |
This file contains hidden or 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
pi@c24:~/poco-1.9.0 $ sudo make install | |
make -C /home/pi/poco-1.9.0/Foundation | |
make[1]: Entering directory '/home/pi/poco-1.9.0/Foundation' | |
make[1]: Nothing to be done for 'all'. | |
make[1]: Leaving directory '/home/pi/poco-1.9.0/Foundation' | |
make -C /home/pi/poco-1.9.0/Encodings | |
make[1]: Entering directory '/home/pi/poco-1.9.0/Encodings' | |
make[1]: Nothing to be done for 'all'. | |
make[1]: Leaving directory '/home/pi/poco-1.9.0/Encodings' | |
make -C /home/pi/poco-1.9.0/XML |
This file contains hidden or 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
//#define _XOPEN_SOURCE | |
#define _GNU_SOURCE | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
//#include <unistd.h> | |
#include <crypt.h> | |
int main(int argc, char *argv[]) { | |
if ( argc < 3 || (int) strlen(argv[2]) > 16 ) { |
This file contains hidden or 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
raspbian jessie img | |
[config.txt] | |
dtoverlay=dwc2 | |
[cmdline.txt] | |
rootwait modules-load=dwc2,g_ether | |
touch ssh | |
ping raspberry.local |
This file contains hidden or 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
openssl passwd -crypt -salt X0 toor | |
```python | |
import crypt | |
crypt.crypt('toor','X0') | |
``` | |
This file contains hidden or 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
wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf |
This file contains hidden or 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
hostapd /etc/hostapd/hostapd.conf |
This file contains hidden or 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
nix-shell -p ncurses |
This file contains hidden or 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
# interfaces(5) file used by ifup(8) and ifdown(8) | |
# Please note that this file is written to be used with dhcpcd | |
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf' | |
# Include files from /etc/network/interfaces.d: | |
# source-directory /etc/network/interfaces.d | |
# I dunno what's the purpose of these settings anymore | |
#auto br0 |
This file contains hidden or 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
https://storage.googleapis.com/golang |