https://graph.facebook.com/<VERSION>/me?fields=picture.width(<WIDTH>).height(<HEIGHT>)
// Remove or specify the value the sz parameter
https://.../photo.jpg?sz=50
| <?php | |
| /* | |
| ** Google texter - v0.2 | |
| ** This experimental script creates a random text by | |
| ** using google search as source. | |
| ** | |
| ** Warning: Do not execute this script on a webserver! | |
| ** This script was made to execute from a command line. | |
| ** |
| var http = require('http'); | |
| var port = 3000; | |
| var server = http.createServer(function (request, response) { | |
| response.writeHead(200,{'content-type':'text/plain'}); | |
| response.write("Hello From Momin ! Server running"); | |
| response.end(); | |
| }); | |
| server.listen(port); | |
| console.log('Server working !' + port); |
Install Termux, an Android terminal emulator that provides a Linux execution environment and various tools.
Update system packages in Termux:
$ pkg update -y