http://www.quakelive.com/#!join/688917
This file contains 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
Pod::Spec.new do |s| | |
s.name = 'Parse' | |
s.version = '1.2.11' | |
s.license = { :type => 'Commercial', :text => 'See https://parse.com/about/terms' } | |
s.platform = :ios | |
s.summary = 'iOS framework for developing apps using the Parse BaaS.' | |
s.description = 'To integrate after adding this pod, continue with step 9 in the QuickStart: (https://parse.com/apps/quickstart).' | |
s.homepage = 'http://parse.com' | |
s.author = { 'Parse' => '[email protected]' } | |
s.source = { :git => 'https://github.com/jessbowers/Parse.git', :tag => "#{s.version}" } |
cd /var
sudo mkdir teamsserver
sudo chown _teamsserver teamsserver
https://www.testflightapp.com/account/#api
sudo -H -u _teamsserver git config --global testflight.apitoken YOUR_APITOKEN
This file contains 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
# download the proper versions of s3fs and fuse | |
wget http://s3fs.googlecode.com/files/s3fs-1.61.tar.gz | |
wget http://downloads.sourceforge.net/project/fuse/fuse-2.X/2.8.4/fuse-2.8.4.tar.gz | |
# unpack them | |
tar -xzf s3fs-1.61.tar.gz | |
tar -xzf fuse-2.8.4.tar.gz | |
# install dependencies | |
yum install gcc libstdc++-devel gcc-c++ curl-devel libxml2-devel openssl-devel mailcap |
This file contains 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
<Content> | |
<item title="Bip and Bop" description="Apple test stream" hdposterurl="http://logok.org/wp-content/uploads/2014/04/Apple-Logo-black.png" streamformat="hls" url="http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8"/> | |
<item title="Sintel the Movie" description="a short 15-minute fantasy film " hdposterurl="https://durian.blender.org/wp-content/uploads/2010/04/Sintel1.png" streamformat="mp4" url="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/Sintel.mp4"/> | |
<item title="The Biker" description="biker rides along the coast" hdposterurl="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Bicycle_with_Rider.svg/1182px-Bicycle_with_Rider.svg.png" streamformat="hls" url="https://content.jwplatform.com/manifests/yp34SRmf.m3u8"/> | |
<item title="Parkour in Santorini, Greece" description="Hardcore Parkour!" hdposterurl="https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Running_icon_-_Noun_Project_22889.svg/1024px-Running_icon_-_Noun_Project_22889.svg.p |
This file contains 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 | |
set -e | |
#ARCH=aarch64 | |
ARCH=armhf | |
ARCH_COMPOSE=armv7 | |
DOCKER_VERSION=24.0.5 | |
COMPOSE_VERSION=2.20.2 | |
DOCKER_DIR=/volume1/@docker |