Skip to content

Instantly share code, notes, and snippets.

View iPotaje's full-sized avatar

Emilio G.C. iPotaje

  • iPotaje
  • Lanzarote
  • 03:20 (UTC +01:00)
View GitHub Profile
@iPotaje
iPotaje / ShortIntroToScraping.rst
Last active December 15, 2020 19:57 — forked from bradmontgomery/ShortIntroToScraping.rst
Really short intro to scraping with Beautiful Soup and Requests
@iPotaje
iPotaje / EjemplosBatch.bat
Created December 15, 2020 17:36 — forked from HiroNakamura/EjemplosBatch.bat
Ejemplos de programas en Batch MS-DOS
@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
@iPotaje
iPotaje / gist:1fca82b3d508781d8059827f041dc0a2
Last active July 1, 2016 11:16 — forked from chrissimpkins/gist:5bf5686bae86b8129bee
Atom Editor Cheat Sheet (Sweetmeat)

Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.

Key to the Keys

  • ⌘ : Command key
  • ⌃ : Control key
  • ⌫ : Delete key
  • ← : Left arrow key
  • → : Right arrow key
  • ↑ : Up arrow key
@iPotaje
iPotaje / .jshintrc.js
Last active August 29, 2015 14:14 — forked from connor/.jshintrc.js
// 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`.
@iPotaje
iPotaje / cache.js
Last active August 29, 2015 14:10 — forked from bshamric/cache.js
var fs = require('fs');
//this is the path that QTNetwork classes uses for caching files for it's http client
//the path should be the one that has 16 folders labeled 0,1,2,3,...,F
exports.cachePath = '/path/to/phantomjs/cache/data/folder';
//this is the extension used for files in the cache path
exports.cacheExtension = "d";
//the resources that are to be saved