I hereby claim:
- I am arashmilani on github.
- I am arashmilani (https://keybase.io/arashmilani) on keybase.
- I have a public key ASBAHKbqmQ3luqdiylYs0-VSq8T1dMERacsT3p3q-OHUaAo
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name twitter-activity-tweets-remover | |
| // @namespace http://arashmilani.com/ | |
| // @version 0.1 | |
| // @description Twitter "activity tweets" remover | |
| // @author Arash Milani | |
| // @match https://*twitter.com/* | |
| // @grant none | |
| // ==/UserScript== |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /* | |
| Usage example: | |
| [googlemap height='300' lat='38.0658495' lng='46.3238727' | |
| zoom='17' title='A wonderfull place', icon='../wp-content/themes/my-theme/images/pin.png' disableDefaultUI='true'] | |
| */ | |
| function google_map ($atts) { | |
| $height = isset($atts['height']) ? $atts['height'] : 300; |
| function assertType(obj, type) { | |
| return obj.constructor.name === type.name | |
| } | |
| console.info(assertType("test", String)); //true | |
| console.info(assertType(1, String)); //false | |
| console.info(assertType(1, Number)); //true | |
| function Book(){}; | |
| function Desk(){}; |