Skip to content

Instantly share code, notes, and snippets.

View barrypitman's full-sized avatar

Barry Pitman barrypitman

  • Ubiquitech
  • South Africa
View GitHub Profile
@david-serrano
david-serrano / Step by step guide - Windows.txt
Last active September 29, 2023 07:15
Building a minified version of OpenCV 3.4.3 for Android from sources
How to build OpenCV from sources for Android on Windows
-------------------------------------------------------
This is a step by step guide on how to get the source code and tools necessary for building OpenCV from scratch.
Downloading required packages:
------------------------------
* Download the Android NDK:
ndk-r20 was used as of the time of writing.
@chunter
chunter / pageant-autoload-keys-at-startup.txt
Created June 20, 2017 10:51
Make Pageant autoload keys at startup
To make Pageant automatically run and load keys at startup:
- Find the location of pageant.exe
- Windows key + R to open the 'run' dialog box
- Type: 'shell:startup' in the dialog box
- Create a shortcut to the pageant.exe and put into this startup folder.
@aaronshaf
aaronshaf / bookmarklet-expanded.js
Last active February 25, 2024 18:56
Copy text from Amazon's Cloud Reader. Helpful for students that need block quotes.
javascript: (function () {
new_window = window.open();
new_window.document.body.innerHTML = $("iframe")
.contents()
.find("iframe")
.contents()
.find("body")
.get(1).innerHTML;
new_window.document.body.querySelector("#content-overlays").remove();
})();