Skip to content

Instantly share code, notes, and snippets.

View AlejandroJL's full-sized avatar

Alejandro Julián López Rodríguez AlejandroJL

View GitHub Profile
@AlejandroJL
AlejandroJL / get-docker.sh
Last active August 10, 2023 00:25 — forked from DaveMDS/get-docker.sh
Install docker on arm64 synology
#!/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
@AlejandroJL
AlejandroJL / roku.xml
Last active September 25, 2019 14:48
Roku samples
<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&#xA0;fantasy film&#xA0;" 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
@AlejandroJL
AlejandroJL / s3_bucket_mount.sh
Created June 24, 2018 05:25 — forked from tejasbubane/s3_bucket_mount.sh
Steps to be done for mounting s3 bucket on an amazon ec2 instance
# 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
@AlejandroJL
AlejandroJL / Configuration.md
Last active February 26, 2022 23:55
Xcode 5 automatic TestFlight build uploading and ready for Xcode Server CI Bots.
@AlejandroJL
AlejandroJL / Parse.podspec
Created July 27, 2013 01:01
Parse CocoaPods
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' => 'support@parse.com' }
s.source = { :git => 'https://github.com/jessbowers/Parse.git', :tag => "#{s.version}" }