Skip to content

Instantly share code, notes, and snippets.

View lobrien's full-sized avatar
💭
About 7,000 miles away from lounge access.

Larry O'Brien lobrien

💭
About 7,000 miles away from lounge access.
View GitHub Profile
@lobrien
lobrien / gist:7883976
Created December 10, 2013 00:51
Async version
public override void TouchesBegan(NSSet touches, UIEvent evt)
{
var addressString = "2 Park Plaza, Boston, MA, USA 02116";
var geocoder = new CLGeocoder();
var taskCoding = geocoder.GeocodeAddressAsync(addressString);
taskCoding.ContinueWith((addresses) => {
Console.WriteLine("Continuation");
foreach(var address in addresses.Result)
{
Console.WriteLine(address);
@lobrien
lobrien / gist:7935879
Created December 12, 2013 21:33
Basic UITabView stuff
using System;
using System.Collections.Generic;
using System.Linq;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
using System.Drawing;
using MonoTouch.CoreGraphics;
namespace SingleFileTableViewSolution
{
---
uti: com.xamarin.workbook
platforms:
- iOS
---
```csharp
using MapKit;
```
public class TensorflowInferencePredictor : ITidePredictor
{
const string MODEL_FILE_URL = "file:///android_asset/TF_LSTM_Inference.pb";
const string INPUT_ARGUMENT_NAME = "lstm_1_input";
const string OUTPUT_VARIABLE_NAME = "output_node0";
const int OUTPUT_SIZE = 100;
TensorFlowInferenceInterface inferenceInterface;
public TensorflowInferencePredictor(AssetManager assetManager)
@lobrien
lobrien / gist:100c77c8d49ca1f4c33a2c004b872537
Created June 26, 2018 19:53
GCode for temp tower, Tevo Tornado 225-180 layers
This file has been truncated, but you can view the full file.
;FLAVOR:Marlin
;TIME:7421
;Filament used: 5.56723m
;Layer height: 0.2
;Generated with Cura_SteamEngine 3.3.1
M190 S60
M104 S200
M109 S200
M82 ;absolute extrusion mode
G28 ;Home
@lobrien
lobrien / xor.py
Created October 12, 2018 21:47
"Hello, World" Keras Neural Net (XOR)
import numpy as np
from keras.models import Sequential
from keras.layers.core import Activation, Dense
from keras.optimizers import SGD
# Allocate the input and output arrays
X = np.zeros((4, 2), dtype='uint8')
y = np.zeros(4, dtype='uint8')
# Training data X[i] -> Y[i]
@lobrien
lobrien / gist:fdc2492764a65939c53e259e64ffb7bf
Created December 23, 2018 18:55
Robert Reich, Jan 21 2017
I had breakfast recently with a friend who's a former Republican member of Congress. Here's what he said:
Him: Trump is no Republican. He’s just a big fat ego.
Me: Then why didn’t you speak out against him during the campaign?
Him: You kidding? I was surrounded by Trump voters. I’d have been shot.
Me: So what now? What are your former Republican colleagues going to do?
@lobrien
lobrien / combinators.js
Created March 27, 2019 19:11 — forked from Avaq/combinators.js
Common combinators in JavaScript
const I = x => x;
const K = x => y => x;
const A = f => x => f(x);
const T = x => f => f(x);
const W = f => x => f(x)(x);
const C = f => y => x => f(x)(y);
const B = f => g => x => f(g(x));
const S = f => g => x => f(x)(g(x));
const P = f => g => x => y => f(g(x))(g(y));
const Y = f => (g => g(g))(g => f(x => g(g)(x)));
@lobrien
lobrien / README.md
Created August 7, 2019 19:17 — forked from mzabriskie/README.md
Check git status of multiple repos

If you're like me you have a dir like ~/Workspace/Github where all your git repos live. I often find myself making a change in a repo, getting side tracked and ending up in another repo, or off doing something else all together. After a while I end up with several repos with modifications. This script helps me pick up where I left off by checking the status of all my repos, instead of having to check each one individually.

Usage:

git-status [directory]

This will run git status on each repo under the directory specified. If called with no directory provided it will default to the current directory.

@lobrien
lobrien / test.ipynb
Created August 13, 2019 22:24
Proper way to install via pip in Jupyter notebook
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.