View grafana_crypto_dashboard.json
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
{ | |
"annotations": { | |
"list": [] | |
}, | |
"editable": true, | |
"gnetId": null, | |
"graphTooltip": 1, | |
"hideControls": false, | |
"id": 18, | |
"links": [], |
View fishtank.ino
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
const int pin_all = D0; | |
const int pin_blue = D2; | |
#include <ESP8266WiFi.h> | |
const char* ssid = "your_wifi_name_here"; | |
const char* password = "your_wifi_password_here"; | |
int fade_delay = 2; //how many milliseconds between pulses (the lower, the faster the light changes) | |
//code starts here |
View raspi_preparestream.sh
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/bash | |
apt-get update | |
apt-get install -y git cmake autoconf bc libvpx-dev libx264-dev libjpeg-dev build-essential libtool autoconf ffmpeg #raspberrypi-kernel-headers | |
wget http://www.live555.com/liveMedia/public/live555-latest.tar.gz -O - | tar xvzf - | |
cd live | |
./genMakefiles linux | |
sudo make CPPFLAGS=-DALLOW_RTSP_SERVER_PORT_REUSE=1 install |
View ethpay.php
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
<?php | |
define('RPC_IP','127.0.0.1'); | |
define('RPC_PORT',8545); | |
require 'libs/ethereum-php/ethereum.php'; | |
$e = new EthPay(); | |
class EthPay | |
{ |
View easybank.class.php
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
<?php | |
/* | |
* EasyBank.at client lib | |
* Reverse engineered by looking at the API calls of the app | |
* | |
* Example usage: | |
* | |
* <?php | |
* include_once('easybank.class.php'); |
View raspi-security.py
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
from ctypes import * | |
import math | |
import random | |
import time | |
import os | |
def sample(probs): | |
s = sum(probs) | |
probs = [a/s for a in probs] | |
r = random.uniform(0, 1) |
View irrigation.ino
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 <ESP8266WiFi.h> | |
#include <PubSubClient.h> | |
#define wifi_ssid "YourWIfiName" | |
#define wifi_password "YourWifiPassword" | |
const char* mqttServer = "192.168.1.61"; //IP of your MQTT Server | |
const int mqttPort = 1883; // Port of your MQTT server | |
//pins change these if you used different pins |
View gist:645c4cb569a39d9958b2e64fa7221c36
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
### Keybase proof | |
I hereby claim: | |
* I am geek-at on github. | |
* I am geek_at (https://keybase.io/geek_at) on keybase. | |
* I have a public key ASAvzF9dHs0BRtZBYM5m2LiyWafirsvb6qDoy5Bn7B5p6wo | |
To claim this, I am signing this object: |
View example.php
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
<?php | |
$nsfw = new NSFW(); | |
// Example 1: upload images to check later | |
// | |
$results = $nsfw->uploadFile('image1.jpg',true); | |
if(is_array($results)) | |
echo "Classification done. Image is {$results['classification']}".PHP_EOL; |
View example.sh
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 | |
# Test image1.jpg | |
curl -s -F "image=@image1.jpg" "https://nsfw-categorize.it/api/upload" | |
# Let the API analyze an externally hosted image | |
curl -s "https://nsfw-categorize.it/api/upload?url=https://i.imgur.com/wubvFTM.jpeg" | |
OlderNewer