Skip to content

Instantly share code, notes, and snippets.

View maniac787's full-sized avatar
Focusing

maniac787 maniac787

Focusing
View GitHub Profile
@maniac787
maniac787 / multiple_ssh_setting.md
Created September 28, 2023 22:42 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"
@maniac787
maniac787 / Key_starUML.md
Created August 25, 2023 14:15 — forked from danielquisbert/Key_starUML.md
Key para starUML
@maniac787
maniac787 / semantic-commit-messages.md
Created February 14, 2023 15:42 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@maniac787
maniac787 / xampp_php7_xdebug.md
Created August 31, 2021 02:52 — forked from odan/xampp_php7_xdebug.md
Installing Xdebug for XAMPP
@maniac787
maniac787 / Mongo as service
Last active November 7, 2020 01:15
Mongo as service
Unzip file
tar -xvzf mongodb-linux-x86_64-ubuntu2004-4.4.1
create log folder
create mongod.conf into mongo_home
#Data storage locations
storage:
dbPath: /home/roberto/data/
@maniac787
maniac787 / Instalar Nginx + Flask
Created November 5, 2020 23:58
Instalar Nginx + Flask
sudo apt update
sudo apt install nginx
sudo systemctl status nginx
sudo systemctl restart nginx
sudo systemctl disable nginx
sudo systemctl enable nginx
@maniac787
maniac787 / keycloak-configure-mysql-database
Last active October 28, 2020 13:42
keycloak-configure-mysql-database
https://www.appsdeveloperblog.com/keycloak-configure-mysql-database/
SHOW VARIABLES LIKE 'validate_password%';
SET GLOBAL validate_password.policy=LOW;
SET GLOBAL validate_password.length=6;
crear usuario
CREATE USER 'dbadmin'@'%' IDENTIFIED BY 'qwe123';
@maniac787
maniac787 / ReactProject.md
Last active September 14, 2020 15:21
ConfigureReactCodeNpm
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-left "[]"
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-right "[]"
If you ever want to restore the shortcuts, use:
gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-left
gsettings reset org.gnome.desktop.wm.keybindings switch-to-workspace-right
-MATE
select * from dba_network_acls order by acl, host;
select * from dba_network_acl_privileges order by acl, aclid, privilege;
BEGIN
DBMS_NETWORK_ACL_ADMIN.APPEND_HOST_ACE
(
host => '127.0.0.1',