#!/bin/bash | |
# Run like so: echo http://cam.hackerspace.sg.s3-ap-southeast-1.amazonaws.com/ | ./listing.sh | |
s3ns=http://s3.amazonaws.com/doc/2006-03-01/ | |
while read s3url | |
do | |
test "$s3url" || continue | |
i=0 |
## install homebrew | |
echo "Installing Homebrew.." | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
echo "Homebrew successfully installed" | |
## install brew cask | |
echo "Installing brew cask.." | |
brew tap caskroom/cask | |
echo "Homebrew cask successfully installed" |
A good way to get a taste of Swift for Tensorflow language and tools is to set it up with Jupyter with the fastai Swift notebooks. I wanted a quick setup, which the Mac install experience currently not, so instead I installed the release binaries in a Ubuntu container via Docker. The setup process for this scenario is not well documented, so here it is for you / future me.
What we're about to do is install the S4TF 0.4 release and the fastai v3 Swift notebooks on Ubuntu 18.04. Generally we follow the swift-jupyter docker file, but install cpu-only release versions of the packages.
Below are some of the references I looked at:
https://github.com/tensorflow/swift/blob/master/docs/WhySwiftForTensorFlow.md https://github.com/tensorflow/swift/blob/master/docs/DifferentiableFunctions.md
#!/bin/bash | |
sudo apt-get -y update | |
# Install required libraries | |
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common | |
# Add Key | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |
// This is free and unencumbered software released into the public domain. | |
// Anyone is free to copy, modify, publish, use, compile, sell, or | |
// distribute this software, either in source code form or as a compiled | |
// binary, for any purpose, commercial or non-commercial, and by any | |
// means. | |
// For more information, please refer to <https://unlicense.org> | |
// | |
// AWSS3RequestSigner.swift | |
// SampleRESTApi | |
// |
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
import sys | |
from datetime import datetime | |
import ssl | |
import urllib | |
import urllib2 | |
import json | |
import re |
Check out this tutorial demonstrating Python interoperability in Swift.
This function is intended to set the Python version before any references to the global PythonInterface
called Python
-
it cannot be used to switch Python versions dynamically.
#!/usr/bin/swift sh | |
import Foundation | |
import PromiseKit // @mxcl ~> 6.5 | |
import Swifter // @mattdonnelly == b27a89 | |
let swifter = Swifter( | |
consumerKey: "FILL", | |
consumerSecret: "ME", | |
oauthToken: "IN", | |
oauthTokenSecret: "https://developer.twitter.com/en/docs/basics/apps/overview.html" |