build.gradle in your project which generates the apk:
apply from:'https://gist.githubusercontent.com/pboos/c4ae04b62641d7e9897c/raw/45515edf3cf00925b59a51d0ca893c44a2b06851/gradle-s3-upload.gradle'
~/.gradle/gradle.properties
var playlists = JSON.parse(localStorage.getItem("playlist")); | |
for (var key in playlists) { | |
var playlist = playlists[key]; | |
console.log(playlist.name); | |
for (var index in playlist.items) { | |
console.log("http://www.youtube.com/watch?v=" + playlist.items[index].substr(2)); | |
} | |
} |
configurations { | |
apt | |
} | |
dependencies { | |
compile 'com.squareup.dagger:dagger:1.1.0' | |
apt 'com.squareup.dagger:dagger-compiler:1.1.0' | |
} | |
android.applicationVariants.all { variant -> |
// we can use jquery since site has it added | |
// 1. add header | |
document.oldWrite = document.write; | |
document.write = function(text) { | |
var parser = new DOMParser(); | |
var element = parser.parseFromString(text, "text/xml"); | |
var child = element.firstChild; | |
var element = document.createElement("script"); | |
element.src = child.getAttribute('src'); | |
element.type= "text/javascript"; |
require 'httparty' | |
require 'json' | |
class Crashlytics | |
include HTTParty | |
base_uri 'https://api.crashlytics.com/api/v2' | |
def session(email, password) | |
self.class.post('/session.json', | |
body: {email: email, password:password}.to_json, |
# For setup: | |
# adb -d forward tcp:1080 tcp:1080 | |
# adb -d shell monkey --port 1080 | |
import sys | |
import time | |
import telnetlib | |
tn = telnetlib.Telnet("localhost", 1080, 5) |
-- vim: ts=4 sw=4 noet ai cindent syntax=lua | |
--[[ | |
Conky, a system monitor, based on torsmo | |
Any original torsmo code is licensed under the BSD license | |
All code written since the fork of torsmo is licensed under the GPL | |
Please see COPYING for details |
Time: 7:00 PM to 9:30 PM | |
Location: TenTen's Office | 東京都渋谷区神宮前4丁目22番3号 パレスジン301 · Tokyo | |
How to find us: On Arrival: Press 301 on the panel near the door and use stairs to 3rd floor. |
from __future__ import division, print_function, absolute_import | |
# library for optmising inference | |
from tensorflow.python.tools import optimize_for_inference_lib | |
from tensorflow.python.tools import freeze_graph | |
import tensorflow as tf | |
# Higher level API tflearn | |
import tflearn | |
from tflearn.data_utils import shuffle, to_categorical | |
from tflearn.layers.core import input_data, dropout, fully_connected | |
from tflearn.layers.conv import conv_2d, max_pool_2d |
Based on: https://haefelfinger.ch/posts/2018/2018-10-31-fiber7-tv7-with-plex-media-server/
Create telly config file
Create file /volume1/docker/iptv/telly/telly.config.toml
and replace contents YOUR_HOST_IP
with your host ip.
Update docker-compose.yaml
Replace YOUR_HOST_IP
with your host ip.