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
| package com.twilio; | |
| import javax.servlet.http.HttpServlet; | |
| import javax.servlet.http.HttpServletRequest; | |
| import javax.servlet.http.HttpServletResponse; | |
| import java.io.IOException; | |
| import java.util.Map; | |
| import java.util.HashMap; | |
| import com.twilio.sdk.resource.instance.Account; | |
| import com.twilio.sdk.TwilioRestClient; |
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
| /interface bridge | |
| add l2mtu=1598 name=LAN | |
| /interface ethernet | |
| set 2 master-port=ether2 | |
| set 3 master-port=ether2 | |
| set 4 master-port=ether2 | |
| /interface wireless security-profiles | |
| add authentication-types=wpa2-psk eap-methods=passthrough management-protection=allowed mode=dynamic-keys name=149 supplicant-identity="" wpa2-pre-shared-key=149149149149 | |
| /interface wireless | |
| set 0 band=2ghz-b/g/n channel-width=20/40mhz-ht-above frequency=2427 security-profile=149 ssid=149 |
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 | |
| # PiTFT Resistive 2.8" (PID 1601) or Capacitive 2.8" (PID 1983) setup script or Resistive 3.5" (PID 2097) or 2.2" No-Touchscreen setup script! | |
| set -e | |
| function cleanup() { | |
| if [ "${mountpoint}" != "/" ] | |
| then | |
| sudo -n umount "${mountpoint}/boot" 2> /dev/null |
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
| # Load Json into a Python object | |
| import urllib2 | |
| import json | |
| req = urllib2.Request("http://localhost:81/sensors/temperature.json") | |
| opener = urllib2.build_opener() | |
| f = opener.open(req) | |
| json = json.loads(f.read()) | |
| print json | |
| print json['unit'] |
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
| # Send SMS messages using Raspberry Pi. | |
| # Using gammu and Huawei E220 | |
| # Prepare SD card with wheezy. | |
| # Login / complete rasp-config / reboot / login | |
| # Set vimrc to prevent annoying ADBC arrow keys | |
| cp /etc/vim/vimrc ~/.vimrc |
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
| cd $ANDROID_BUILD_TOP/packages/apps/Music | |
| mm |
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
| echo 'Get remote translation files from the server.' | |
| rm -rf res | |
| ncftpget -u myusername -R -F mydomain.org . www/translate/res | |
| rm -rf res/values | |
| php diff-online-translations.php | |
| echo 'Copy new translation files to our local working copy.' | |
| cp -rf res /home/myusername/dev/myapp/myandroidapp/ |
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
| # following Python packages needs to be installed | |
| # xlrd, xlsxrd, unidecode, MySQLdb | |
| import xlrd | |
| import xlsxrd | |
| import MySQLdb as mdb | |
| import re | |
| import unidecode |
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/sh | |
| # Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the | |
| # CREATE block and create them in separate commands _after_ all the INSERTs. | |
| # Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk. | |
| # The mysqldump file is traversed only once. | |
| # Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite | |
| # Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite |
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 | |
| """ | |
| JSON encoder/decoder adapted for use with Google App Engine NDB. | |
| Usage: | |
| import ndb_json | |
| # Serialize an ndb.Query into an array of JSON objects. | |
| query = models.MyModel.query() |