Skip to content

Instantly share code, notes, and snippets.

View josketres's full-sized avatar

Josue Zarzosa josketres

View GitHub Profile
package com.josketres.test.util;
import org.hamcrest.FeatureMatcher;
import org.hamcrest.Matcher;
import java.util.function.Function;
/**
* Utilities and syntactic sugar stuff for hamcrest.
*/
# https://github.com/docker/for-mac/issues/69
# create the directory to mount
mkdir -p ~/test-issue-69/data
# this should work
docker run --rm -it -v ~/test-issue-69/data:/my-data busybox /bin/touch /my-data/foo
# start a container and check periodically if directory is writable
docker run --rm -it -v ~/test-issue-69/data:/my-data busybox /bin/sh -c "while true; do sleep 1;touch /my-data/foo&&echo ok; done"
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: AES-128-CBC,F626774C824D9ED2C98EEA5B58CBE1F6
VWgn8Z+WHE1EHOKzkwgstWdajAENIQRGhmziwGFUOnemCb2VJaSWoojQhjgY2czN
K+yfAn81JGSgr2QkAgE/2VvBoSAVXBnlbtOMwKyeiiBqUazQQg/eZHWJRTilmAH1
d7Cf7gSyZdZLvlu6d/WbYYQkHP39PEYGHM+hBgmkMu9F84dd39+h2k4hVsvBWWGH
v2KdC11EpxxdK4zocszFYJ357y516XcM5jiuVxc3kJ+LublPBx6+R75Mg26f+d/j
6oEHv1anHg8AMzh1Jlrx3TaV0TPFVfNrJjD48V3ot/1nZRlxKj5qH4+Pgzar3NMZ
RumQTzWM4ch7dHW8A8VkBv4WRkZy9SJuq6JQqLEs3/P0P3L13hZ2DdXaoM5/+Ze0
@josketres
josketres / GLPK+JAVA+Windows example
Created September 29, 2013 22:13
GLPK+JAVA+Windows example
import org.gnu.glpk.GLPK;
import org.gnu.glpk.GLPKConstants;
import org.gnu.glpk.GlpkException;
import org.gnu.glpk.SWIGTYPE_p_double;
import org.gnu.glpk.SWIGTYPE_p_int;
import org.gnu.glpk.glp_prob;
import org.gnu.glpk.glp_smcp;
public class Main {
// Minimize z = (x1-x2) /2 + (1-(x1-x2)) = -.5 * x1 + .5 * x2 + 1
#!/usr/bin/env node
// utility script to count the max. nesting level on a sass file
const fs = require('fs');
const { parse } = require('scss-parser');
const createQueryWrapper = require('query-ast');
const files = process.argv.slice(2);