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 | |
# Usage: | |
# ./androidtv-tester <TV IP:5555> <option> | |
# Example: | |
# ./androidtv-tester 192.168.86.43:5555 2 | |
adb_connect() { | |
adb connect $1 | |
} |
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 | |
""" | |
tv_shows_scraper.py | |
Creates 2 files, TV shows titles and year, surrounded with <item> tags. | |
Usage: python tv_show_scraper.py | |
""" |
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
/** | |
* This class provides the URI and const values to work with Any.do's Content Provider. | |
* | |
* A guide is available on http://tech.any.do/content-provider-for-any-do/ | |
*/ | |
public class TasksContract { | |
public static final Uri TASKS_URI = Uri.parse("content://com.anydo.provider/tasks"); | |
public static final Uri FOLDERS_URI = Uri.parse("content://com.anydo.provider/folders"); | |
public static final String PERMISSION_READ = "com.anydo.provider.permission.READ_ANYDO_TASKS"; |