-
creates a virtualenv
python3 -m venv venv
-
activates the virtualenv
source venv/bin/activate
This file contains 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
config.ini |
This file contains 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
javascript: (function () { | |
document.getElementById("num_ide").value = "cedulaaaaaaa"; | |
document.getElementById("fecha_pago").value = "fechaaaaa"; | |
document.getElementById("tipo_solic").value = 1; | |
document.getElementById("num_tel").value = "cel"; | |
document.getElementById("correo").value = "[email protected]"; | |
document.getElementById("correo_ok").value = "[email protected]"; | |
document.getElementById("acepto").checked = true; | |
})(); |
This file contains 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
# This is a DNS blocklist for the PiHole (https://pi-hole.net/) to block unnecessary connections to Xiaomi. | |
# | |
# License: GPL-3.0-or-later | |
# | |
# Please help to collect domains! | |
abtest.mistat.intl.xiaomi.com | |
abtest.mistat.xiaomi.com | |
account.preview.n.xiaomi.net | |
account.xiaomi.com |
This file contains 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
/* | |
Styles for printing correctly the book | |
"Learning JavaScript Design Patterns" by Addy Osmani | |
http://addyosmani.com/resources/essentialjsdesignpatterns/book/ | |
*/ | |
@media print { | |
/* resets */ | |
body { | |
background: none; |
This file contains 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
//Override the $ function in order to log failed selectors | |
function $(arg) { | |
if ( jQuery(arg).length == 0) { | |
console.log(arg+" fails"); | |
} | |
return jQuery(arg); | |
} | |
//Reassign all the attributes | |
for (var attrname in jQuery) { $[attrname] = jQuery[attrname]; } |