Skip to content

Instantly share code, notes, and snippets.

@NrI3
NrI3 / sublime-plugins.txt
Last active September 23, 2019 02:03
Sublime - Instalación de plugins básicos para desarrollo
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
@NrI3
NrI3 / Resultado.cs
Created September 1, 2019 11:26
Manejador de JConnector.cs
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
@NrI3
NrI3 / Conector.cs
Last active September 1, 2019 11:28
C Sharp - C# - SQLServer - Ejecuta un procedimiento almacenado y retorna el resultado como una lista de objetos o como una Data Table
/*
Create by Jsn jason.scz@gmail.com
*/
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Dynamic;
@NrI3
NrI3 / gobuster-install
Last active July 3, 2019 06:34
Install dirbuster debian
# 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
@NrI3
NrI3 / tmux-terminal
Last active July 3, 2019 10:13
tmux terminal linux
# install
sudo apt-get install tmux
# Use
# New terminal
ctrl + b , c
# New column
@NrI3
NrI3 / fix-vm-tools-linux
Created July 1, 2019 01:09
restart vmtools copy paste linux
# kill process and restart
pkill vmtoolsd ;vmware-user
@NrI3
NrI3 / theme-linux
Last active June 30, 2019 14:09
Custom theme icon
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/
@NrI3
NrI3 / read-line-fix
Created June 29, 2019 21:26
Fix read line python linux
# Install pip if u dont have
apt-get install python-pip
# Install dependency
apt-get install libncurses-dev
# Install fix
pip install readline
@NrI3
NrI3 / mysql-info
Created June 29, 2019 01:12
Mysql information basic
# 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
@NrI3
NrI3 / install.py
Last active June 10, 2021 23:22
Youtube dl pack windows
#
# Youtube installer by BleICer
#
import ctypes
import os
from types import BuiltinFunctionType
def _isAdmin():
return ctypes.windll.shell32.IsUserAnAdmin() == 1