start new:
tmux
start new with session name:
tmux new -s myname
| function top = nms(boxes, overlap) | |
| % top = nms_fast(boxes, overlap) | |
| % Non-maximum suppression. (FAST VERSION) | |
| % Greedily select high-scoring detections and skip detections | |
| % that are significantly covered by a previously selected | |
| % detection. | |
| % NOTE: This is adapted from Pedro Felzenszwalb's version (nms.m), | |
| % but an inner loop has been eliminated to significantly speed it | |
| % up in the case of a large number of boxes | |
| % Tomasz Malisiewicz ([email protected]) |
| """Simple TCP server for playing Tic-Tac-Toe game. | |
| Use Player-to-Player game mode based on naming auth. | |
| No thoughts about distribution or pub/sub mode | |
| (for monitoring or something like this). Just | |
| basic functionality. | |
| """ | |
| import time | |
| import logging |
| <a href="http://foursquare.com" rel="nofollow">foursquare</a> | |
| <a href="http://instagram.com" rel="nofollow">Instagram</a> |
| #!/usr/bin/env python | |
| """ Video stabilization with OpenCV (>=2.3) and Hugin | |
| Adrien Gaidon | |
| INRIA - 2012 | |
| TODO: add cropping, clean-up and improve doc-strings | |
| """ |
| var nopt = require('nopt'), | |
| parse = require('url').parse, | |
| WebSocket = require('faye-websocket'); | |
| // | |
| // All based and derived on: http://www.igvita.com/2012/04/09/driving-google-chrome-via-websocket-api | |
| // | |
| // The remote debugging protocol is... I don't have words right now. | |
| // Other than thanks thanks thanks thanks x10e901920 |
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
Unionize lets you connect together docker containers in arbitrarily complex scenarios.
Note: I recommend to use https://github.com/jpetazzo/pipework instead.
Now if you want Unionize, it's still here. Just check those examples.
| require 'rails/all' | |
| require 'rspec' | |
| require 'pry' | |
| module MyMixin | |
| extend ActiveSupport::Concern | |
| included do | |
| raise NotImplementedError.new("#{self} must implement '#bar'.") unless self.instance_methods.include?(:bar) | |
| send(:include, MixinInstanceMethods) |
| // 1. Go to page https://www.linkedin.com/settings/email-frequency | |
| // 2. You may need to login | |
| // 3. Open JS console | |
| // ([How to?](http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers)) | |
| // 4. Copy the following code in and execute | |
| // 5. No more emails | |
| // | |
| // Bookmarklet version: | |
| // http://chengyin.github.io/linkedin-unsubscribed/ |