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 | |
sudo apt-get update && sudo apt-get install python-gi && sudo apt-get install python-setuptools | |
wget https://pypi.python.org/packages/de/8c/f8f5d38b4f26893af267ea0b39023d4951705ab0413a39e0cf7cf4900505/python-pam-1.8.2.tar.gz | |
tar xfz python-pam-1.8.2.tar.gz | |
cd python-pam-1.8.2 | |
sudo python setup.py install |
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
<?php | |
// Using: php -f timezone.php | |
$last_date = ''; | |
$time = time(); | |
for ($i=0; $i < $time; $i+=86400) { | |
$date = date('O', $i); | |
if($date !== $last_date) { | |
echo "|\n"; | |
echo "|-> ".date(DATE_RFC2822, $i)."\n"; |
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
// Using: node timezone.js | |
var date; | |
var lastDate = new Date(-1); | |
var time = (new Date()).getTime(); | |
for (var i = 0; i < time; i+=(86400 * 1000)) { | |
date = new Date(i); | |
if(date.getTimezoneOffset() !== lastDate.getTimezoneOffset()) { | |
console.log("|"); | |
console.log("|-> %s", date); |
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 <SoftwareSerial.h> | |
SoftwareSerial SIM900(7, 8); | |
char incoming_char=0; | |
String inputString = ""; // a string to hold incoming data | |
boolean stringComplete = false; // whether the string is complete | |
void setup() | |
{ | |
Serial.begin(19200); // for serial monitor |
NewerOlder