Skip to content

Instantly share code, notes, and snippets.

View johndpope's full-sized avatar

John D. Pope johndpope

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We couldn’t find that file to show.
#!/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
@johndpope
johndpope / local_machine_setup.sh
Last active April 1, 2025 20:12 — forked from louisguitton/v1.sh
New Machine Setup
## 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"
@johndpope
johndpope / notes.md
Created August 19, 2019 09:24 — forked from choongng/notes.md
Swift for TensorFlow quick start with Docker on Mac

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:

Rationale for S4TF and background reading

https://github.com/tensorflow/swift/blob/master/docs/WhySwiftForTensorFlow.md https://github.com/tensorflow/swift/blob/master/docs/DifferentiableFunctions.md

@johndpope
johndpope / install_docker.sh
Last active July 9, 2019 03:52 — forked from mnadjit/install_docker.sh
Ubuntu Scripts + docker for host
#!/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 -
@johndpope
johndpope / AWSS3RequestSigner
Created July 2, 2019 07:09 — forked from elmyn/AWSS3RequestSigner
Signing AWS GET S3 requests with signature version 4 in Swift 4, Xcode 10
// 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
//
@johndpope
johndpope / instadump
Created June 18, 2019 05:07 — forked from morrah/instadump
dumps direct links to pic/video inside every post of chosen user
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import sys
from datetime import datetime
import ssl
import urllib
import urllib2
import json
import re
@johndpope
johndpope / README.md
Last active March 27, 2019 08:19 — forked from dan-zheng/README.md
Python interoperability in Swift

Python interoperability

Check out this tutorial demonstrating Python interoperability in Swift.

Python library version details

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.

@johndpope
johndpope / detweet.swift
Created January 16, 2019 16:45 — forked from mxcl/detweet.swift
Delete all tweets and favorites older than two months ago. Instructions in comment.
#!/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"