Code | Title | Duration | Link |
---|---|---|---|
GPSB20 | A Path To Success: Your APN Journey Starts Now | 0:39 | https://www.youtube.com/watch?v=ylZQogN31gk |
GPSB20 | Accelerate To Win: Leverage AWS Go-To-Market Channels and Resources | 0:45 | https://www.youtube.com/watch?v=Hz3QpCnH19M |
GPSB20 | Break Away From The Pack: Differentiation In A Partner Ecosystem | 0:42 | https://www.youtube.com/watch?v=BKHMdKB_RiM |
GPSB20 | [The Art of Engagement wit |
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
# | |
# Notes: | |
# | |
# I used the following AMI: | |
# "Amazon Linux AMI 2015.09.1 (HVM), SSD Volume Type - ami-60b6c60a" | |
# Running on AMI: amzn-ami-hvm-2015.09.1.x86_64-gp2 (ami-60b6c60a) | |
# | |
# You probably want to use an instance type with a large amount of memory. My first | |
# attempt was with a c4.2xlarge but it rant out of memory without using -j option to | |
# limit the parallel build. |
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
{"messageHeader":{"deviceContext":[{"name":"playbackState", "namespace":"AudioPlayer", "payload":{"streamId":"", "offsetInMilliseconds":"0", "playerActivity":"IDLE"}}]}, "messageBody":{"profile":"doppler-scone", "locale":"en-us", "format":"audio/L16; rate=16000; channels=1"}} |
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/sh | |
CERT=$1 | |
PROFILE=$2 | |
if [ ! -f "$CERT" ] || [ ! -f "$PROFILE" ] | |
then | |
echo "Usage: mpverify.sh <cert p12> <profile>" | |
exit | |
fi |
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
sudo yum groupinstall development | |
sudo yum install libmpc dpkg-devel python-devel python-pip git curl flex bison texinfo autoconf gmp-devel mpfr-devel elfutils-libelf-devel ncurses-devel libmpc-devel python27 python27-devel python-virtualenv freetype-devel zlib-devel libjpeg-devel libtiff-devel httpd | |
sudo chkconfig httpd on | |
sudo service httpd start | |
sudo chown $USER.$USER /var/www/html/ | |
git clone https://github.com/pebble/arm-eabi-toolchain.git | |
PREFIX=$HOME/arm-cs-tools PROCS=16 make install-cross |
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
mkdir installroot | |
INSTALLROOT=`pwd`/installroot | |
curl -OL http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz | |
tar xvzf pkg-config-0.28.tar.gz | |
cd pkg-config-0.28 | |
./configure --prefix=$INSTALLROOT --with-internal-glib | |
make | |
make install |
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
zoe | |
yourpackagename | |
urturn-expression-css | |
underscoreDeepExtend | |
ui-calendar | |
typeahead | |
twangular | |
toolkit | |
time | |
testingStash |
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/sh | |
mkdir installroot | |
INSTALLROOT=`pwd`/installroot | |
echo "Downloading and installing pkg-config" | |
curl -OL http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz | |
tar xvzf pkg-config-0.28.tar.gz | |
cd pkg-config-0.28 |
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
# | |
# Grab the latest mruby | |
# | |
git clone git://github.com/mruby/mruby.git | |
cd mruby | |
make clean | |
make | |
make test | |
cd .. |
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
#!/usr/bin/python | |
# sudo lpadmin -p printer-name-here -E -v socket://localhost:12000 -m raw | |
import socket | |
fpsock = socket.socket() | |
fpsock.bind(('127.0.0.1', 12000)) | |
fpsock.listen(5) |
NewerOlder