I hereby claim:
- I am mglinski on github.
- I am mglinski (https://keybase.io/mglinski) on keybase.
- I have a public key whose fingerprint is E615 2AC6 1093 AB36 E379 BE34 37EF FE36 613A F196
To claim this, I am signing this object:
<?php | |
/** | |
* Class ECDSA | |
* | |
* Encapsulate ECDSA Functions from phpecc (https://github.com/mdanter/phpecc) into an easy to use API | |
* | |
* @author Matthew Glinski | |
* @link | |
* @version 1.0 | |
* @license MIT (http://opensource.org/licenses/MIT) |
I hereby claim:
To claim this, I am signing this object:
Edward Snowden answered questioned after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
-server | |
-Xms2048m | |
-Xmx2048m | |
-XX:NewSize=512m | |
-XX:MaxNewSize=512m | |
-XX:PermSize=512m | |
-XX:MaxPermSize=512m | |
-XX:+UseParNewGC | |
-XX:ParallelGCThreads=4 | |
-XX:MaxTenuringThreshold=1 |
-server | |
-Xms2048m | |
-Xmx2048m | |
-XX:NewSize=512m | |
-XX:MaxNewSize=512m | |
-XX:PermSize=512m | |
-XX:MaxPermSize=512m | |
-XX:+UseParNewGC | |
-XX:ParallelGCThreads=4 | |
-XX:MaxTenuringThreshold=1 |
# see https://www.topbug.net/blog/2013/04/14/install-and-use-gnu-command-line-tools-in-mac-os-x/ | |
# core | |
brew install coreutils | |
# key commands | |
brew install binutils | |
brew install diffutils | |
brew install ed --default-names | |
brew install findutils --with-default-names |
<?php | |
function returnsInt() : int { | |
return 2; | |
} | |
function returnsFloat() : float { | |
return 1; | |
} |
I took some examples from khanhicetea
and dillansimmons
from this older gist and made a hybrid version using URL and URLSearchParams classes for all of the heavy lifting. This method will not work on older browsers.
This js snippet propagate any query param starting with utm_
in the current page url into all <a href="..." />
tags on the current page, taking care to follow the following constraints:
utm_
Hopefully this saves someone time in the future.