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
| Ctrl+Shift+P | |
| Package Control: Install Package | |
| Emmet | |
| Active: When u use: Set Syntax: Html | |
| Terminus | |
| Use: Ctrl+Shift+P : Terminus : Open default Shell in panel |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Acceso_a_datos; | |
| using System.Dynamic; | |
| using System.Data; | |
| namespace Logica.Objeto |
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
| /* | |
| Create by Jsn jason.scz@gmail.com | |
| */ | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Data; | |
| using System.Data.SqlClient; | |
| using System.Dynamic; |
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
| # Install dependencies | |
| # Go site: https://golang.org/dl/ | |
| # Download | |
| wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz | |
| # Extrat | |
| sudo tar -C /usr/local -xzf go1.12.6.linux-amd64.tar.gz |
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
| # install | |
| sudo apt-get install tmux | |
| # Use | |
| # New terminal | |
| ctrl + b , c | |
| # New column |
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
| # kill process and restart | |
| pkill vmtoolsd ;vmware-user |
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
| https://www.xfce-look.org/p/1272472/ | |
| https://github.com/vinceliuice/Toffee-gtk-theme | |
| https://gitlab.com/spass/toffee-xfwm-theme | |
| https://www.xfce-look.org/p/1299896/ |
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
| # Install pip if u dont have | |
| apt-get install python-pip | |
| # Install dependency | |
| apt-get install libncurses-dev | |
| # Install fix | |
| pip install readline | |
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
| # List of database | |
| db: information_schema | |
| table: schemata | |
| colum: schema_name <- db name | |
| # List of tables | |
| db: information_schema | |
| table: tables | |
| column: table_name <- table name |
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
| # | |
| # Youtube installer by BleICer | |
| # | |
| import ctypes | |
| import os | |
| from types import BuiltinFunctionType | |
| def _isAdmin(): | |
| return ctypes.windll.shell32.IsUserAnAdmin() == 1 |