This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var s:String = "[email protected] hey wasup! , [email protected] [email protected]"; | |
var rex:RegExp = /[^\s,]+@[^\s,]+/g; | |
trace( s.match(rex).join(",") ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alert("xss"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/Desktop/temp ᐅ adb shell screenrecord /sdcard/kitkat.mp4 | |
~/Desktop/temp ᐅ ffmpeg -i kitkat.mp4 -vf scale=320:-1 -r 10 ffout%03d.png | |
~/Desktop/temp ᐅ convert -delay .1 -loop 0 ffout*.png output.gif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alert('XSS'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script>alert('XSS');</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.samere | |
{ | |
import flash.display.Loader; | |
import flash.display.Sprite; | |
import flash.events.Event; | |
import flash.events.EventDispatcher; | |
import flash.events.IOErrorEvent; | |
import flash.events.ProgressEvent; | |
import flash.net.URLRequest; | |
import flash.system.ApplicationDomain; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inspect = require('util-inspect'); | |
var wordNet = require('util') | |
var wordNet = require('wordnet-magic') | |
var wn = wordNet(__dirname + '/sqlite-31.db', false) | |
var input = 'the cat is patiently waiting at some of the best hospitals in Los Angeles' | |
var words = input.split(' ') | |
var sort = { nouns:[], verbs:[], adjectives:[], adverbs:[] } | |
processWord(0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inspect = require('util-inspect'); | |
var wordNet = require('util') | |
var wordNet = require('wordnet-magic') | |
var wn = wordNet(__dirname + '/sqlite-31.db', false) | |
var input = 'the cat is patiently waiting at some of the best hospitals in Los Angeles' | |
var words = input.split(' ') | |
var sort = { nouns:[], verbs:[], adjectives:[], adverbs:[] } | |
processWord(0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.ProfileCard.js-actionable-user').each( function(index){ | |
if ( !$( this ).find('.FollowStatus').length ) { | |
$( this ).find('.user-actions-follow-button.js-follow-btn.follow-button').click(); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var THREE = require( 'three' ); | |
var OrbitControls = require( 'three-orbit-controls' ); | |
var ColladaLoader = require( '../../libs/loaders/ColladaLoader' ); | |
import * as dat from '../../libs/utils/dat.gui.min'; | |
const SIZE = 256; | |
const vertexShader = ` | |
precision highp float; |
OlderNewer