Skip to content

Instantly share code, notes, and snippets.

View iras's full-sized avatar

Ivano Ras iras

  • Farnham, Surrey, UK
View GitHub Profile
@staltz
staltz / introrx.md
Last active July 15, 2024 15:43
The introduction to Reactive Programming you've been missing
@latentflip
latentflip / Instrumentor.coffee
Created October 27, 2012 12:21
Instrumentor
#depends on underscore
_.isConstructor = (thing) ->
if thing.name && thing.name[0].toUpperCase() == thing.name[0]
true
else
false
class Instrumentor
constructor: (namespace) ->
@yoggy
yoggy / curf_gpu.cpp
Created December 9, 2011 13:10
OpenCV cv::gpu::SURF_GPU & cv::gpu::BruteForceMatcher_GPU sample
#include <SDKDDKVer.h>
#include <Windows.h>
#pragma warning(disable:4819)
#pragma warning(disable:4996)
// for OpenCV2
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/gpu/gpu.hpp"