Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am aamaliaa on github.
  • I am amaliaviti (https://keybase.io/amaliaviti) on keybase.
  • I have a public key whose fingerprint is 07AC DA01 288E AA07 C92B 8F42 F09F 234A 72F7 5041

To claim this, I am signing this object:

@aamaliaa
aamaliaa / canihaziphone.js
Last active December 24, 2015 11:59
CLI iPhone5s stock checker, inspired by https://medium.com/p/7f921ea94e8f run with node.js
var http = require('http');
var zip = process.argv[2] || '10018'; // defaults to 10018
var phone = process.argv[3] || 'ME349LL/A'; // defaults to 64GB Gold Verizon
var checkForPhones = function(zip, phone){
console.log('Checking for ' + phone + ' near ' + zip + '...');
console.log('=====================================');
@aamaliaa
aamaliaa / interfaces
Created August 11, 2013 04:38
Raspberry Pi wi-fi (automatic wifi every time you boot up) The files: /etc/network/interfaces /etc/wpa_supplicant/wpa_supplicant.conf
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf