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
read oldrev newrev refname |
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
shell | |
sudo su | |
wpa_cli | |
add_network # using the number returned by this command as XX below... | |
set_network XX ssid "PAL2.0" | |
set_network XX scan_ssid 1 | |
set_network XX proto WPA | |
set_network XX priority 1 | |
set_network XX key_mgmt WPA-EAP | |
set_network XX eap PEAP |
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
NETWORK=$(wpa_cli -i wlan0 add_network) || exit | |
read -p "Username: " USERNAME || exit | |
wpa_cli -i wlan0 set_network $NETWORK ssid \"PAL2.0\" > /dev/null || exit | |
wpa_cli -i wlan0 set_network $NETWORK scan_ssid 1 > /dev/null || exit | |
wpa_cli -i wlan0 set_network $NETWORK proto WPA > /dev/null || exit | |
wpa_cli -i wlan0 set_network $NETWORK priority 1 > /dev/null || exit | |
wpa_cli -i wlan0 set_network $NETWORK key_mgmt WPA-EAP > /dev/null || exit | |
wpa_cli -i wlan0 set_network $NETWORK eap PEAP > /dev/null || exit |
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
shell | |
sudo su | |
cd /mnt/stateful_partition/home/chronos/user/ | |
wget http://mbmccormick.com/files/pal2.sh | |
chmod +x pal2.sh |
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
shell | |
cd ~ | |
sudo su | |
bash pal2.sh |
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
git remote add appharbor https://[email protected]/returnflix.git | |
git push appharbor master |
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
$ git push appharbor master | |
error: error setting certificate verify locations: | |
CAfile: /bin/curl-ca-bundle.crt | |
CApath: none | |
while accessing https://[email protected]/returnflix.git/info/regs |
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
git config --global http.sslcainfo "C:/Program Files (x86)/Git/bin/curl-ca-bundle.crt" |
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
HKLM\Software\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background\OEMBackground |
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
/// <summary> | |
/// HawaiiClient stores the Hawaii Application Id. | |
/// </summary> | |
public static class HawaiiClient | |
{ | |
/// <summary> | |
/// The Hawaii Application Id. | |
/// Please go to http://hawaiiguidgen.cloudapp.net/default.aspx, | |
/// obtain a Hawaii Application Id and set HawaiiApplicationId to that value. | |
/// </summary> |