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
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ; Caracteres en español usando CapsLock | |
| ; Presionar CapsLock mas la vocal para acentuarla | |
| ; Para la ñ se puede usar la n o la tecla ; (porque ahí estaba la ñ originalmente) | |
| ; Para la ¿ usamos CapsLock y la tecla que tiene actualmente el ? | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ; mapear la n como ñ | |
| CapsLock & n:: | |
| If GetKeyState("Shift", "P") |
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
| 127.0.0.1 media-match.com | |
| 127.0.0.1 adclick.g.doublecklick.net | |
| 127.0.0.1 www.googleadservices.com | |
| 127.0.0.1 open.spotify.com | |
| 127.0.0.1 pagead2.googlesyndication.com | |
| 127.0.0.1 desktop.spotify.com | |
| 127.0.0.1 googleads.g.doubleclick.net | |
| 127.0.0.1 pubads.g.doubleclick.net | |
| 127.0.0.1 securepubads.g.doubleclick.net | |
| 127.0.0.1 audio2.spotify.com |
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
| #!/bin/sh | |
| ## A simple `wifi` command for Debian that will connect you to a WPA2 WiFi network | |
| ## usage: | |
| ## sudo ./wpa2-wifi-connect.sh <ssid> <pass> | |
| ifdown wlan0 | |
| # build the interfaces file that will point to the file that holds our configuration | |
| rm /etc/network/interfaces | |
| touch /etc/network/interfaces |
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
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """This module's docstring summary line. | |
| This is a multi-line docstring. Paragraphs are separated with blank lines. | |
| Lines conform to 79-column limit. | |
| Module and packages names should be short, lower_case_with_underscores. | |
| Notice that this in not PEP8-cheatsheet.py |