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
/**** | |
* Script Exemplo para MariaDB ou MySQL com permissões de banco de dados | |
*****/ | |
DROP DATABASE IF EXISTS luds; | |
CREATE DATABASE luds DEFAULT CHARACTER SET utf8 ; | |
USE luds; | |
DROP TABLE IF EXISTS arquivos; | |
CREATE TABLE arquivos( |
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 More Speed | |
* Open console Browser with hot key F12 | |
* | |
* Link text in Portugueses | |
* http://devblog.drall.com.br/assistindo-videos-do-youtube-em-velocidades-diferentes-das-fornecidas-em-suas-opcoes | |
* | |
* Be careful with speed above 4, it may cause audio problems. | |
**/ |
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
# 2020-09-04 | |
# Reinaldo A. Barreto Jr | |
# | |
# This file will search all files and folders within a given directory, and use Notepad++ to convert their EOL to UNIX. | |
# Based on the script of ConvertUTF-8.py de Scott McCutchen | |
# | |
# This file must be run using the PythonScript plugin from within Notepad++, which is available through the Notepad++ Plugin Manager | |
# | |
# You must have Python 2.7 installed | |
# |
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
# 2020-06-07 | |
# Reinaldo A. Barreto Jr | |
# | |
# This file will search all files and folders within a given directory, and use Notepad++ to convert their EOL to UNIX. | |
# Based on the script of ConvertUTF-8.py de Scott McCutchen | |
# | |
# This file must be run using the PythonScript plugin from within Notepad++, which is available through the Notepad++ Plugin Manager | |
# | |
# You must have Python 2.7 installed | |
# |
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
# 2017 | |
# Reinaldo Barreto Jr | |
# | |
# This file will search all files and folders within a given directory, and use Notepad++ to convert their encoding to ANSI. | |
# Based on the script of ConvertUTF-8.py de Scott McCutchen | |
# | |
# This file must be run using the PythonScript plugin from within Notepad++, which is available through the Notepad++ Plugin Manager | |
# | |
# You must have Python 2.7 installed | |
# |
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
# 2016-2017 Soverance Studios. | |
# Scott McCutchen | |
# This file will search all files and folders within a given directory, and use Notepad++ to convert their encoding to UTF-8 without Byte Order Marks | |
# | |
# This file must be run using the PythonScript plugin from within Notepad++, which is available through the Notepad++ Plugin Manager | |
# | |
# You must have Python 2.7 installed | |
# | |
# Additionally, this script can only exist and be run from within the Notepad++ user's working directory, the default of which is here: |