yay -S windscribe-cli
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
{ | |
"singleQuote": true, | |
"useTabs": true, | |
"tabWidth": 4, | |
"semi": false | |
} |
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
{ | |
"Imprimir Arrays": { | |
"scope": "php", | |
"prefix": "_pre", | |
"body": [ | |
"echo '<pre>'.print_r($${1:array}, true).'</pre>';" | |
], | |
"description": "Imprimir Arrays" | |
} | |
} |
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
#!/bin/python3 | |
import time | |
import curses | |
import socket | |
import requests | |
import subprocess | |
host = '1.1.1.1' | |
chat = '*****' |
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
Código | Banco | |
---|---|---|
0156 | 100%BANCO | |
0196 | ABN AMRO BANK | |
0172 | BANCAMIGA BANCO MICROFINANCIERO, C.A. | |
0171 | BANCO ACTIVO BANCO COMERCIAL, C.A. | |
0166 | BANCO AGRICOLA | |
0175 | BANCO BICENTENARIO | |
0128 | BANCO CARONI, C.A. BANCO UNIVERSAL | |
0001 | BANCO CENTRAL DE VENEZUELA. | |
0164 | BANCO DE DESARROLLO DEL MICROEMPRESARIO |
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
#!/bin/bash | |
# zenity for GTK | |
# qarma for QT | |
Pack="qarma" | |
Url=$($Pack --title "Youtube" --entry --text "Url YouTube") | |
OP=$($Pack --title "Youtube" --list --text "Select Option" --column "#" --column "Desc." "1" "Only Audio" "2" "Video 480p" "3" "Video 720p" "4" "Video 1080p") | |
case $OP in |
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
<?php | |
class App { | |
const SP = '.'; | |
const SP_REGEXP = '/[^\w.]/'; // if use " / " change to '/[^\w\/]/' | |
protected static $Data = []; | |
public static function set($Path, $Value = null) { | |
$Path = self::clean_path($Path); |
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
<?php | |
/** | |
* https://www.php-fig.org | PSR-1 , PSR-4 | |
*/ | |
spl_autoload_register(function ($Class) { | |
$Class = ltrim($Class, '\\'); | |
$_P = explode('\\', $Class); | |
$_P[] = str_replace('_', DIRECTORY_SEPARATOR, array_pop($_P)); | |
$Class = implode(DIRECTORY_SEPARATOR, $_P).'.php'; |
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
<?php | |
/** | |
* | |
* Eventos y Disparadores | |
* @author Nicolás Giacaman <[email protected]> | |
* @url http://nicolasg.cf | |
* @fork https://gist.github.com/im4aLL/548c11c56dbc7267a2fe96bda6ed348b | |
* | |
*/ |
NewerOlder