start new:
tmux
start new with session name:
tmux new -s myname
| var textNode = document.querySelector("$SELECTOR"); | |
| textNode.addEventListener("DOMCharacterDataModified", action, false); | |
| function action(evt) { | |
| if($CONDITION) { | |
| window.open("http://www.google.com", "test" ,"modal=yes"); | |
| window.focus(); | |
| textNode.removeEventListener("DOMCharacterDataModified", action, false); | |
| } |
| <?php | |
| function getMultiContents($url_list) | |
| { | |
| $mh = curl_multi_init(); | |
| $ch_list = array(); | |
| foreach ($url_list as $url) { | |
| $ch_list[$url] = curl_init($url); | |
| curl_setopt($ch_list[$url], CURLOPT_RETURNTRANSFER, TRUE); | |
| curl_setopt($ch_list[$url], CURLOPT_TIMEOUT, 1); |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond %{REQUEST_FILENAME}\.php -f | |
| RewriteRule ^(.*)$ $1.php [NC,L] |
| $query = "DESCRIBE tablename"; | |
| $result = $db->query($query); | |
| while ($row => $result->fetch_array()) { | |
| echo "{$row['Field']} - {$row['Type']}; | |
| } |
| curl \ | |
| -F 'requestType=sendMessage' \ | |
| -F 'recipient=$recipientAddress' \ | |
| -F 'secretPhrase=$password' \ | |
| -F 'chain=ignis' \ | |
| -F 'message=$publicMessage' \ | |
| -F 'messageToEncryptIsText=true' \ | |
| -F 'encryptedMessageIsPrunable=true' \ | |
| -F 'referencedTransaction=2:dfe36cf9f8dff41f30f1cde92717ee6f1ac2c5342bba7d691b5e0b75a6bc5204' \ | |
| -F 'feeNQT=0' \ |
| function fetchUrl($uri,$method=false) { | |
| $handle = curl_init(); | |
| curl_setopt($handle, CURLOPT_URL, $uri); | |
| curl_setopt($handle, CURLOPT_POST, $method); | |
| curl_setopt($handle, CURLOPT_BINARYTRANSFER, false); | |
| curl_setopt($handle, CURLOPT_HEADER, true); | |
| curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); | |
| curl_setopt($handle, CURLOPT_CONNECTTIMEOUT, 10); | |
| var isMobile = { | |
| Android: function() { | |
| return navigator.userAgent.match(/Android/i); | |
| }, | |
| BlackBerry: function() { | |
| return navigator.userAgent.match(/BlackBerry/i); | |
| }, | |
| iOS: function() { | |
| return navigator.userAgent.match(/iPhone|iPad|iPod/i); | |
| }, |
| filter_var($string,FILTER_VALIDATE_REGEXP, array( "options" => array("regexp"=>"/^([a-zA-Z0-9]*-[a-zA-Z0-9]*){4}$/"))) |
| 0. App Name | |
| a. 45 characters MAX | |
| 1. App Icon | |
| a. 128x128 | |
| b. Must be in PNG format | |
| 2. Screenshot Images | |
| a. 1280x800 [OR] 640x400 | |
| b. Max 5 | |
| 3. Promotional tile images, maximum one upload per size | |
| a. 440x280 **Required** |