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 RPi.GPIO as GPIO | |
import spidev | |
from time import sleep, localtime, strftime, time | |
import sys | |
import smbus | |
class PiHardware(object): | |
def __init__(self): |
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 strict' | |
// A very simple nodeJS script that demonstrates how you can access | |
// memory usage information similar to how free -m works on the | |
// Raspberry Pi. Goes with µCast #14. http://youtu.be/EqyVlTP4R5M | |
// Usage: node pi_mem.js | |
// Example Output | |
// |
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 sys, urllib | |
from time import sleep | |
import spidev | |
def spi_send(bus, data): | |
xfer_list = [] | |
if type(data) == str: | |
for c in data: | |
xfer_list.append(ord(c)) | |
elif type(data) == list: |
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/env python | |
# | |
# file: isgovtdown.py | |
# | |
# description: checks usa.gov for the "Government has shut down" message | |
# | |
# usage: ./isgovtdown.py [pi] | |
# Passing argument 'pi' causes status LEDs to be used | |
# | |
# or in a crontab: |
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
$("ul.tweet-actions").each(function(index){ | |
$(this).prepend('<li><a role="button" class="my-custom-link" class="js-tooltip" href="#"><b>My Option</b></a></li>'); | |
}); | |
$(".my-custom-link").click(function(evt){ | |
evt.preventDefault(); | |
var el = $(evt.target) || $(evt.srcElement); | |
var tweetText = el.closest(".content").find("p.tweet-text").first().text(); | |
alert("This is the text from the tweet that you can use for something:\n\n" + tweetText); | |
}); |
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
node_modules |
NewerOlder