Skip to content

Instantly share code, notes, and snippets.

View marcosnils's full-sized avatar

Marcos Nils marcosnils

View GitHub Profile

Keybase proof

I hereby claim:

  • I am marcosnils on github.
  • I am marcosnils (https://keybase.io/marcosnils) on keybase.
  • I have a public key ASC8GTDtXlulbviZaCTuRjnp6-8SpJfRkG6i-bj2pWyDDwo

To claim this, I am signing this object:

param([string]$DTR_URL)
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
invoke-webrequest -uri "https://$DTR_URL/ca" -o c:\ca.crt
$cert = new-object System.Security.Cryptography.X509Certificates.X509Certificate2 c:\ca.crt
$store = new-object System.Security.Cryptography.X509Certificates.X509Store('Root','localmachine')
@marcosnils
marcosnils / gist:b119d7325c469de5175bc8a2571448c1
Created April 12, 2017 03:42 — forked from freshjones/gist:b0713263033df8cc9f44
bash script to monitor and do something with docker events
#!/bin/sh
docker events --filter 'event=start' --filter 'event=stop' | while read event
do
container_id=`echo $event | sed 's/.*Z\ \(.*\):\ .*/\1/'`
echo $container_id
FROM ubuntu:wily
RUN apt-get update && apt-get build-dep -y vim && apt-get install -y git
RUN apt-get install -y python3-dev
RUN git clone --depth=1 -b v8.0.0045 https://github.com/vim/vim.git \
&& cd vim \
&& ./configure --with-features=huge --enable-gui=gtk3 --with-x --enable-gtk3-check --enable-athena-check --enable-fontset --with-python3-config-dir=$(python3-config --configdir) --enable-pythoninterp --enable-python3interp --enable-rubyinterp \
&& make && mkdir /pkg && DESTDIR=/pkg make install
ubuntu@box1302:~$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
stepping : 7
microcode : 0x70b
cpu MHz : 2600.080
cache size : 20480 KB
@marcosnils
marcosnils / tmate.sh
Created February 1, 2015 19:30
Tmate slack
#!/bin/bash
set -e
SLACK_WEBHOOK_URL=
DEFAULT_EMOJI=:slack:
CHANNEL=${1:-#general}
AUTHOR="Some user"
tmate -S /tmp/tmate.sock new-session -d && tmate -S /tmp/tmate.sock wait tmate-ready
@marcosnils
marcosnils / RequestTest.js
Last active December 17, 2015 19:48
Request performance test.
var request = require("request"),
http = require("http");
var time;
var plainBody = {"resource":"/test/1111111111111","user_id":15667236,"topic":"test","attempts":1,"sent":"2013-05-27T19:15:17.043Z","received":"2013-05-27T19:15:15.000Z"}
var body = JSON.stringify(plainBody);