Skip to content

Instantly share code, notes, and snippets.

View jakub-g's full-sized avatar

jakub-g jakub-g

  • Antibes, France
  • 03:52 (UTC +02:00)
View GitHub Profile
@jakub-g
jakub-g / execSync.js
Created October 19, 2015 13:55
NodeJS synchronous exec: printing output to console vs returning output from function
function execSyncPrintOutput(command, env) {
env = env || process.env;
try {
return require('child_process').execSync((command), {
stdio: 'inherit',
env: env
});
} catch (e) {
__handleExecFailure(command);
@jakub-g
jakub-g / fidler delayed android responses.md
Last active October 28, 2020 10:18
fiddler android delayed HTTP responses and HTTPS decryption with Android

http://stackoverflow.com/questions/7026251/android-simulate-low-network-connectivity

  1. Download and install Fiddler from http://www.telerik.com/download/fiddler/fiddler4
  2. Run Fiddler, open Tools > Options and make it listen on port 9999. http://ariatemplates.com/blog/wp-content/uploads/2013/02/fiddopts1.png 8888 is not good as it's often in use by some other software
  3. allow remote computers to connect http://docs.telerik.com/fiddler/Configure-Fiddler/Tasks/UseFiddlerAsReverseProxy
  4. Make it decrypt HTTPS http://docs.telerik.com/fiddler/images/DecryptHTTPS/DecryptHTTPSTrafficOption.png
  5. Download the Fiddler Delayed Extension (a DLL file) from https://fiddlerdelayext.codeplex.com/
  6. Copy the download DLL file to C:\Program Files (x86)\Fiddler2\Scripts
@jakub-g
jakub-g / localStorageWrapper.js
Last active November 25, 2015 16:57
localStorageWrapper that silently fails (reports error to console) on write fail. This is one of the options to tackle Safari's zero quota of localStorage when in private mode.
/**
* A constructor for a wrapper class implementing the localStorage public interface
* (getItem, setItem, removeItem, key, clear) and some of our extensions
* (getObject, setObject, removeObject, getObjectEvenIfNull).
*
* The idea is to create global `localStorageWrapper` and `sessionStorageWrapper` variables,
* to be used instead of `localStorage` and `sessionStorage` (see below).
* This is because in Safari on iOS in private mode, localStorage has a quota of 0
* and always throws an exception when trying to save anything.
@jakub-g
jakub-g / snippets.js
Last active February 16, 2017 12:29
robust cd, execSync wrappers for nodejs 0.12+ and shelljs
var path = require('path');
var clc = require('cli-color');
var shelljs = require('shelljs');
function cd(dir) {
dir = path.resolve(dir)
shelljs.cd(dir);
var cwd = path.resolve(process.cwd());
@jakub-g
jakub-g / hn.md
Last active June 2, 2024 23:29
Hacker News Links

Hacker News "hidden" URLs

Many of HN URLs are not easily discoverable as there are no links to them in a prominent part on the page, or sometimes even nowhere. The following is a list of links to standard and "special" HN pages. The ones is bold are the less discoverable ones.

See also: https://github.com/minimaxir/hacker-news-undocumented

Posts

@jakub-g
jakub-g / gist:63e9606137557dbdd299
Last active November 3, 2020 20:26
git pre-push hook to check and print how many commits behind origin/master you are
#!/bin/bash
git-log-flat-message-author () {
git log --format="%s %an" "$@"
}
git-log-flat-colored() {
git --no-pager log --format="%C(yellow)%h%Creset %C(cyan)%cd%Creset %s %Cgreen%an%Creset" --date=short "$@"
}
REFERENCE_BRANCH="origin/releases/master"
@jakub-g
jakub-g / gist:0e7bee5c101c6e5d03879d0229174339
Last active May 9, 2016 11:56
angular 1.4.3 http code 0
ERR_TUNNEL_CONNECTION_FAILED (connecting to http server that is down)
request timeout
airplane mode
* text=auto
*.htm text diff=html
*.html text diff=html
*.java text diff=java
*.properties text
*.js text
*.json text
*.jsonp text
*.jsp text
@jakub-g
jakub-g / gist:4d5cd6d829608d86cba3c66d260d8aa9
Created November 30, 2016 15:25
HTTPS SSL certs issues
openssl s_client -showcerts -connect yourhost.com:443
http://stackoverflow.com/questions/24573037/webview-and-ssl-certificates
@jakub-g
jakub-g / gist:17cb54694a72dd968dd4daf1f98b0832
Created January 12, 2017 13:17
node and npm from maven
#!/usr/bin/env node
var path = require('path');
// note this is required on maven BEFORE npm install so it can not be outsourced to ng-scripts
var execWithEnv = require('./execWithEnv');
var exec = function(command) {
command = command + ' --no-color';
var cwd = process.cwd();