One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
go build helloworld.go | |
GOOS=windows GOARCH=amd64 go build helloworld.go |
<?xml version="1.0" encoding="utf-8"?> | |
<!-- This file should be outside of release manifest (in this case app/src/mock/Manifest.xml --> | |
<manifest | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.example.tests"> | |
<!-- For espresso testing purposes, this is removed in live builds, but not in dev builds --> | |
<uses-permission android:name="android.permission.SET_ANIMATION_SCALE" /> | |
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> | |
<uses-permission android:name="android.permission.WAKE_LOCK" /> |
public abstract class BaseStatelessBlackBoxEspressoTest<T extends Activity> extends ActivityInstrumentationTestCase2<T> { | |
private SystemAnimations mSystemAnimations; | |
public BaseStatelessBlackBoxEspressoTest(Class clazz) { | |
super(clazz); | |
} | |
@Override | |
protected void setUp() throws Exception { |
Results of running this script: https://gist.github.com/jabbalaci/398429347c96e98aba88 | |
Views Ups Downs Title (Speakers) | |
9,810 166 3 Keynote - Jacob Kaplan-Moss - Pycon 2015 (Jacob Kaplan-Moss) | |
7,044 64 0 Type Hints - Guido van Rossum - PyCon 2015 (Guido van Rossum) | |
4,742 121 0 David Beazley - Python Concurrency From the Ground Up: LIVE! - PyCon 2015 (David Beazley) | |
4,684 66 3 Keynote - Guido van Rossum - PyCon 2015 (Guido van Rossum) | |
4,272 78 1 Dan Callahan - My Python's a little Rust-y - PyCon 2015 (Dan Callahan) | |
2,694 34 0 How to build a brain with Python (Trevor Bekolay) | |
2,391 29 0 Andrew T. Baker - Demystifying Docker - PyCon 2015 (Andrew T. Baker) |
Link list to yesterdays talk:
The MongoDB problem, illustrated:
https://gist.github.com/skade/33ef03948ff280dd2a44
A very good post on Postgres full text. Make sure to read the final paragraphs, discussing limits and flaws.
http://blog.lostpropertyhq.com/postgres-full-text-search-is-good-enough/
package main | |
import ( | |
"encoding/csv" | |
"fmt" | |
"net/http" | |
) | |
func readCSVFromUrl(url string) ([][]string, error) { | |
resp, err := http.Get(url) |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.