Install the weinre module from npm:
$ sudo npm -g install weinre
In your index.html add the following line before closing the head section:
<script src="http://your-local-ip:8081/target/target-script-min.js#anonymous"></script>
Install the weinre module from npm:
$ sudo npm -g install weinre
In your index.html add the following line before closing the head section:
<script src="http://your-local-ip:8081/target/target-script-min.js#anonymous"></script>
| var o = '{ "user": "tu vieja", "posts": [ { "title": "title 1", "contents": "..." }, { "title": "title 2", "contents": "..." } ] }'; | |
| var fetchShit = function() { | |
| var def = $.Deferred(); | |
| setTimeout(function() { | |
| def.resolve(o); | |
| }, 2000); | |
| return def.promise(); |
| tu biega |
| git rm -r --cached node_modules | |
| git commit -m 'Remove the now ignored directory node_modules' | |
| git push origin master |
| <?php | |
| // Create the stream context | |
| $context = stream_context_create(array( | |
| 'http' => array( | |
| 'timeout' => 3 // Timeout in seconds | |
| ) | |
| )); | |
| // Fetch the URL's contents |
| <?php | |
| function getYoutubeLink($title) | |
| { | |
| @$videoName = ereg_replace('[[:space:]]+', ' ', trim($videoName)); | |
| $videoName = urlencode($videoName); | |
| // generate feed URL | |
| $feedURL = "http://gdata.youtube.com/feeds/api/videos?vq={$videoName}"; |
| DELETE FROM someTable | |
| USING someTable, someTable as virtualTable | |
| WHERE (NOT someTable.id = virtualTable.id) | |
| AND (someTable.name = virtualTable.name) |