Using Requests and Beautiful Soup, with the most recent Beautiful Soup 4 docs.
Install our tools (preferably in a new virtualenv):
pip install beautifulsoup4
Using Requests and Beautiful Soup, with the most recent Beautiful Soup 4 docs.
Install our tools (preferably in a new virtualenv):
pip install beautifulsoup4
| @rem Ejemplos de código en Bat | |
| @rem autor: yo | |
| @rem Aqui hay varios scripts http://foro.elhacker.net/scripting/libreria_de_funciones_y_scripts_batch_actualizado_260507-t163184.0.html | |
| goto :com1 |
Esto es algo pendiente
| /* http://stackoverflow.com/a/23703655 */ | |
| .content { | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| -webkit-transform: translate(-50%, -50%); | |
| transform: translate(-50%, -50%); | |
| } |
| mv */*.pdf . | |
| find . -type d -empty -delete |
| git clone --bare url .git | |
| [git clone --bare https://github.com/planetoftheweb/angular2.git .git] | |
| git config --bool core.bare false #switch the bare repo to a normal version of the repo | |
| git reset --hard |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
| var lib = require('./patch.js'); | |
| var Sequelize = require('sequelize'); | |
| var sequelize = new Sequelize('sqlite://dbname', {dialectModulePath: 'sql.js'}); | |
| var User = sequelize.define('user', { | |
| username: Sequelize.STRING, | |
| birthday: Sequelize.DATE | |
| }); |
| var gulp = require('gulp'); | |
| var dest = { | |
| preDirectory : 'pre', | |
| directory : 'dist', | |
| bundle : '/' + 'all.js' | |
| }; | |
| var src = { | |
| webserver : '.', |
| // NOTE: I added the .js extension to this gist so it would have syntax highlighting. This file should have NO file extension | |
| { | |
| // Settings | |
| "passfail" : false, // Stop on first error. | |
| "maxerr" : 100, // Maximum error before stopping. | |
| // Predefined globals whom JSHint will ignore. | |
| "browser" : true, // Standard browser globals e.g. `window`, `document`. |