I hereby claim:
- I am notetiene on github.
- I am notetiene (https://keybase.io/notetiene) on keybase.
- I have a public key whose fingerprint is 2133 8F9A 68EA 75AD 531D 11E1 1BF3 8BFA 3390 A95A
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Tech Target Paywall Removal | |
| // @run-at context-menu | |
| // @version 2.0 | |
| // @description Remove paywall from tech target site | |
| // @author Etienne Prud'homme (https://gist.github.com/notetiene) | |
| // @match https://*.techtarget.com/* | |
| // @match https://*.theserverside.com/* | |
| // @match https://*.lemagit.fr/* | |
| // @grant none |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash -e | |
| emacs_server_is_running() { | |
| return lsof -c emacs | grep server | tr -s " " | cut -d' ' -f8 | |
| } | |
| if [[ `emacs_server_is_running` ]]; then | |
| emacsclient "$@" | |
| else | |
| emacs "$@" |
| ;;; setup-help --- Helm | |
| ;;; Commentary: | |
| ;;; Code: | |
| (require 'helm-config) | |
| ;; The default "C-x c" is quite close to "C-x C-c", which quits Emacs. | |
| ;; Changed to "C-c h". Note: We must set "C-c h" globally, because we | |
| ;; cannot change `helm-command-prefix-key' once `helm-config' is loaded. | |
| (global-set-key (kbd "C-c h") 'helm-command-prefix) |
| 'use strict'; | |
| // Requires | |
| var gulp = require('gulp'); | |
| // Include plugins | |
| // var gutil = require('gulp-util'); // For logs | |
| var sass = require('gulp-sass'); // SASS to CSS compilation | |
| var concat = require('gulp-concat'); | |
| var uglify = require('gulp-uglify'); |