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
FROM php:5.6-apache | |
RUN apt-get update && apt-get install -y freetds-common freetds-bin freetds-dev unixodbc | |
RUN ln -s /usr/lib/x86_64-linux-gnu/libsybdb.a /usr/lib/ | |
RUN docker-php-ext-install mssql |
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 <MicroView.h> | |
void setup(){ | |
uView.begin(); | |
uView.clear(PAGE); | |
pinMode(A0, INPUT); | |
digitalWrite(A0, HIGH); | |
} | |
void loop(){ |
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
from base64 import b64encode | |
from pprint import pprint | |
# pip install requests | |
import requests | |
# Configuration variables, see examples on http://beta.skritter.com/api/v0/docs/authentication | |
OAUTH_CLIENT_NAME = '' | |
OAUTH_CLIENT_SECRET = '' | |
# which account do you want to access? | |
USER_NAME = '' |