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
| -----BEGIN CERTIFICATE----- | |
| MIIGCDCCA/CgAwIBAgIQKy5u6tl1NmwUim7bo3yMBzANBgkqhkiG9w0BAQwFADCB | |
| hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G | |
| A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV | |
| BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMjEy | |
| MDAwMDAwWhcNMjkwMjExMjM1OTU5WjCBkDELMAkGA1UEBhMCR0IxGzAZBgNVBAgT | |
| EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR | |
| Q09NT0RPIENBIExpbWl0ZWQxNjA0BgNVBAMTLUNPTU9ETyBSU0EgRG9tYWluIFZh | |
| bGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP | |
| ADCCAQoCggEBAI7CAhnhoFmk6zg1jSz9AdDTScBkxwtiBUUWOqigwAwCfx3M28Sh |
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
| use Irssi; | |
| use POSIX; | |
| use JSON; | |
| use vars qw($IRSSI); | |
| %IRSSI = ( | |
| name => "awayforward", | |
| license => "Public Domain", | |
| ); | |
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
| /** \mainpage | |
| * | |
| * __NaCl__ (pronounced _salt_) is a new easy-to-use high-speed | |
| * software library for network communication, encryption, decryption, | |
| * signatures, etc. NaCl's goal is to provide all of the core | |
| * operations needed to build higher-level cryptographic tools. | |
| * | |
| * __Sodium__ is a portable, cross-compilable, installable, | |
| * packageable, API-compatible version of NaCl. | |
| * |
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
| // Morse Code - USE MQTT! | |
| // based on a project from 30 Arduino Projects for the Evil Genius | |
| // thanks to Simon Monk | |
| // Andy Piper @andypiper, Nov 2013 | |
| int ledPin = 12; | |
| char* letters[] = { | |
| ".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", // A-I |
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
| porkrevenge(~/build/fpm) % git branch -a | |
| * master | |
| remotes/origin/HEAD -> origin/master | |
| remotes/origin/master | |
| porkrevenge(~/build/fpm) % tail -2 ~/.gitconfig | |
| [remote "origin"] | |
| fetch = +refs/pull/*/head:refs/remotes/origin/pull/* | |
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
| include RELEASE-VERSION | |
| include version.py | |
| # Anything else you normally use | |
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
| 1-tr-18su-ka-8dow-56-oo9-13swx-r-k-ife-0nj-rnq-ihb-dd-p-1-0-z-a.info. | |
| 292fu2013-1-2-3-htt-4t3l60-zqn673-w9gp7kip0422wemrzsftm-htm-com.info. | |
| aljumahiriyahalarabiyahallibiyahashshabiyahalishtirakiyahaluzma.info. | |
| anderson-piedmont-spartanburg-greenville-easley-spine-pain-care.info. | |
| associationfrancaisedesdirecteursdelaphotographiedelatelevision.info. | |
| audio-player-zawqkerrhfoepdnmvbdkslahgjvklahjkfqqqojcgrtsksmcls.info. | |
| ausencosandwellascentisaaxwaynegossruddswanheinercrimemellifont.info. | |
| camp-the-lycian-way-camps-the-lycian-way-camping-lycian-way-map.info. | |
| camp-the-lycian-way-turkey-camps-the-lycian-way-turkey-camp-map.info. | |
| cassock-robe-cassock-robes-cassock-attire-apparel-garments-gown.info. |
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
| #!/usr/bin/python | |
| from pylcdsysinfo import BackgroundColours, TextColours, TextAlignment, TextLines, LCDSysInfo | |
| import mosquitto | |
| import textwrap | |
| import sys | |
| from time import sleep | |
| def on_message(mosq, obj, msg): | |
| lines = textwrap.wrap(msg.payload, width=20) |
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
| CREATE EXTENSION IF NOT EXISTS plpython2u; | |
| CREATE OR REPLACE FUNCTION redis_publish_trigger() | |
| RETURNS trigger | |
| AS $$ | |
| import json | |
| db = SD.get('redis') | |
| if not db: | |
| import redis | |
| db = redis.Redis() |
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
| #!/usr/bin/python | |
| # vim: set fileencoding=utf8 : | |
| import mosquitto | |
| import sys | |
| reload(sys) | |
| sys.setdefaultencoding('utf8') | |
| def on_message(mosq, obj, msg): | |
| print(msg.topic + " : " + msg.payload) |