Skip to content

Instantly share code, notes, and snippets.

@amrelhagary
amrelhagary / idea.properties
Created December 2, 2014 18:40
fix phpstorm keyboard input freeze on ubuntu 14
append this line to idea.properties
#fix bug
actionSystem.suspendFocusTransferIfApplicationInactive=false
@amrelhagary
amrelhagary / l.facebook.xml
Created August 20, 2014 10:16
Https everywhere firefox adons for facebook rules
<ruleset name="l.facebook.com">
<target host="l.facebook.com" />
<rule from="^http://(l\.)?facebook\.com/" to="https://l.facebook.com/"/>
</ruleset>
@amrelhagary
amrelhagary / curls.sh
Last active August 29, 2015 14:05
use external groovy script for elasticsearch1.3.x transform
curl -XDELETE 'localhost:9200/test'
curl -XPOST 'localhost:9200/test' -d '
{
"mappings": {
"test_type": {
"transform": {
"lang": "groovy",
"script": "dynamicTransformScript"
},