This bot is for educational purposes. The only personal data that we retrieve from Facebook is the name of users who send messages to the bot. This data is used to personalise replies and we do not store this data or transmit it to third parties. The bot itself is hosted on AWS in Ireland and data retrieved may appear in diagnostic logs.
I hereby claim:
- I am billglover on github.
- I am billglover (https://keybase.io/billglover) on keybase.
- I have a public key whose fingerprint is 8880 C31E 00BC 4F55 DB20 29D9 845F 3ED6 0173 678F
To claim this, I am signing this object:
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
sudo fing -r1 -n 192.168.2.0/24 -o table,csv | awk -F ";" '$7 ~ /Raspberry/ {print $1}' |
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
#!/bin/bash | |
# update package repository | |
yum -y update | |
# upgrade all installed packages | |
yum -y upgrade | |
# install Apache httpd server | |
yum -y install httpd |
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>Hello World</h1> | |
</body> | |
</html> |
I hereby claim:
- I am billglover on github.
- I am billglover (https://keybase.io/billglover) on keybase.
- I have a public key whose fingerprint is 8880 C31E 00BC 4F55 DB20 29D9 845F 3ED6 0173 678F
To claim this, I am signing this object:
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
import UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
func application(application: UIApplication, handleWatchKitExtensionRequest userInfo: [NSObject : AnyObject]?, reply: (([NSObject : AnyObject]!) -> Void)!) { | |
// expect a request String from the parent application | |
// send a response UIColor in return | |
// Note: you may not see these in the console if debugging WatchKit |
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
import WatchKit | |
import Foundation | |
class InterfaceController: WKInterfaceController { | |
@IBAction func ButtonPress() { | |
var userInfo: [NSObject: AnyObject] = [:] | |
userInfo["request"] = "This is a string" | |
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
import UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
func application(application: UIApplication, handleWatchKitExtensionRequest userInfo: [NSObject : AnyObject]?, reply: (([NSObject : AnyObject]!) -> Void)!) { | |
// expect a request String from the parent application | |
// send a response String in return | |
// Note: you may not see these in the console if debugging WatchKit |
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
import WatchKit | |
import Foundation | |
class InterfaceController: WKInterfaceController { | |
@IBAction func ButtonPress() { | |
var userInfo: [NSObject: AnyObject] = [:] | |
userInfo["request"] = "This is a string" | |