The following steps facilitate remote pairing using:
- tmux which allows terminal sessions to be attached to different terminals, and
- ngrok which provides secure tunnels to your localhost
OS X: brew install tmux
use std::collections::HashMap; | |
use futures::TryStreamExt; | |
use iceberg::{ | |
io::{S3_ACCESS_KEY_ID, S3_ENDPOINT, S3_SECRET_ACCESS_KEY}, | |
Catalog, TableIdent, | |
}; | |
use iceberg_catalog_rest::{RestCatalog, RestCatalogConfig}; | |
#[tokio::main] |
I hereby claim:
To claim this, I am signing this object:
#include <Cocoa/Cocoa.h> | |
#include <mono/metadata/appdomain.h> | |
#include <mono/metadata/assembly.h> | |
#include <mono/metadata/image.h> | |
#include <mono/metadata/class.h> | |
#include <mono/metadata/object.h> | |
// http://www.jerrodputman.com/2010/01/10/the-unityobjective-c-divide/ | |
MonoMethod *update_method; |
# ~/.tmuxinator/gas_manager.yml | |
name: gas_manager | |
root: ~/projects/personal/gas_manager | |
windows: | |
- editor: vim . | |
- server: layout: main-horizontal | |
panes: | |
- bundle exec rails s | |
- bundle exec rails c |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Exception in thread "main" java.lang.UnsatisfiedLinkError: Can't load library: /var/folders/69/p71lfqp573vg49p3d87vzzhm0000gn/T/libgdxandreluis/553733341/liblwjgl.dylib | |
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1817) | |
at java.lang.Runtime.load0(Runtime.java:809) | |
at java.lang.System.load(System.java:1083) | |
at org.lwjgl.Sys$1.run(Sys.java:70) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at org.lwjgl.Sys.doLoadLibrary(Sys.java:66) | |
at org.lwjgl.Sys.loadLibrary(Sys.java:95) | |
at org.lwjgl.Sys.<clinit>(Sys.java:112) | |
at org.lwjgl.openal.AL.<clinit>(AL.java:59) |
import _ from 'underscore' | |
export class MapParser{ | |
constructor(mapString){ | |
this.mapString = mapString | |
} | |
sizes() { | |
let match = this.mapString.match(/([0-9]*)&/)[1] |
require 'native' | |
doc = Native(`document`) | |
puts %Q[Object instance of #{doc.body.class} for "#{doc.title}"] | |
puts %Q[Body DOM element class: "#{doc.body.className}"] | |
# => Object instance of Native::Object for "Try Opal: Browser compiler and REPL" | |
# => Body DOM element class: "try try_index" |