Skip to content

Instantly share code, notes, and snippets.

View rhumlover's full-sized avatar

Thomas LE JEUNE rhumlover

  • San Francisco, California
View GitHub Profile
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView wview = (WebView) findViewById(R.id.webviewD);
wview.setWebChromeClient(new WebChromeClient(){
@Override
public void onShowCustomView(View view, CustomViewCallback callback) {
super.onShowCustomView(view, callback);
if (view instanceof FrameLayout){
var _embedder = (function(doc) {
var referrer = doc.referrer,
anchor = doc.createElement('a'),
res = [referrer];
/*
Two different ways to extract domain from url:
- for only one part, we can use a fast regexp: referrer.match(/:\/\/(.[^/]+)/)[1])
- for 2+ parts, create manually a '<a>' tag, set his href to the referrer url, and
then we can access to several url infos: protocol, hostname, port...
@rhumlover
rhumlover / pretty-print-json.sh
Created June 17, 2013 11:51
Pretty-printing JSON and XML on Mac OSX
# Pretty-printing JSON and XML on Mac OSX
python -m json.tool < unformatted.json | less
@rhumlover
rhumlover / add_ssh_id_dsa.md
Last active December 25, 2015 20:09
Issue: git ask for password while gitconfig is correctly set Solution: add your private ssh key

Issue

git ask for password while gitconfig is correctly set

Test

$ ssh-add -L
The agent has no identities.

Solution

add your private ssh key

@rhumlover
rhumlover / gruntfile.js
Created October 21, 2013 16:45
"open" task can specify another target browser instead of the default one
grunt.initConfig({
open: {
server: {
path: "http://localhost:<%= connect.options.port %>",
app: "Google Chrome Canary"
}
}
})
function levenshtein(a, b) {
if(a.length === 0) return b.length;
if(b.length === 0) return a.length;
var matrix = [];
// increment along the first column of each row
var i;
for(i = 0; i <= b.length; i++){
matrix[i] = [i];
ifconfig | grep -E '([0-9]{1,3}\.){3}[0-9]{1,3}'
# Disable and enable event on scroll begin and scroll end.
# @see http://www.thecssninja.com/javascript/pointer-events-60fps
root = document.documentElement
timer = null
window.addEventListener 'scroll', ->
clearTimeout timer
# Pointer events has not already been disabled.
if not root.style.pointerEvents
root.style.pointerEvents = 'none'
@rhumlover
rhumlover / countries_with_vat.txt
Created March 15, 2016 14:58
Countries with a VAT system
1 Austria AT
2 Belgium BE
3 Brazil BR
4 Bulgaria BG
5 Croatia HR
6 Cyprus CY
7 Czech Republic CZ
8 Denmark DK
9 Estonia EE
10 Finland FI
@rhumlover
rhumlover / review.md
Last active December 5, 2016 23:36
Javascript Templates Comparison: Hogan, dust, doT, underscore

JavaScript Templates Engines

A quick comparison/ benchmark between Hogan, Dust, doT and underscore

Presentation and Readability

Hogan.js

Developed by Twitter (same team as Bootstrap), use exactly the same syntax as Mustache, but more performant and more stuff available server side.

My name is {{ name }}