Skip to content

Instantly share code, notes, and snippets.

View KlausEverWalkingDev's full-sized avatar
🇧🇷

Klaus Ferreira KlausEverWalkingDev

🇧🇷
View GitHub Profile
@KlausEverWalkingDev
KlausEverWalkingDev / gpg-ssh-setup.md
Created October 7, 2023 18:23 — forked from mcattarinussi/gpg-ssh-setup.md
A setup guide to use a personal gpg key for ssh authentication

GPG - SSH setup

Generating the master key

Here we create the master key. We want only Certify capability: we use the master key only to create the subkeys, Sign - Encrypt - Authenticate capabilities will be assigned to the subkeys.

Run the following command to start the master key generation process. Select the set your own capabilities creation process (type 8)

  ▶ gpg --full-generate-key --expert

gpg (GnuPG) 2.2.9; Copyright (C) 2018 Free Software Foundation, Inc.

@KlausEverWalkingDev
KlausEverWalkingDev / bun-sde-fix-install_script.sh
Created July 15, 2022 02:52 — forked from spidy0x0/bun-sde-fix-install_script.sh
This script automates the installation of the Intel SDE, to fix compatibility issues with older CPU's that do not support the AVX2 instruction set. It fixes the "Illegal hardware instruction" error.
#!/bin/bash
# Solution provided by https://github.com/renhiyama
# (https://github.com/Jarred-Sumner/bun/issues/282#issuecomment-1177154684)
# License agreement
echo "The Intel Software Development Emulator is distributed under the Intel Software License Agreement, available at https://www.intel.com/content/dam/develop/external/us/en/documents/pdf/intel-simplified-software-license-version-august-2021.pdf"
echo ""
echo "If you do not accept the terms of the license agreement, you have 10 seconds to stop this script (Ctrl+C)"

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@KlausEverWalkingDev
KlausEverWalkingDev / XMLHttpRequest.js
Created February 18, 2021 23:16 — forked from jesperorb/XMLHttpRequest.js
XMLHttpRequest example
/****************
* GET REQUEST *
****************/
/* We create a new request-object that will handle the transaction between the server/database
* and the client (me/us/the browser). */
var request = new XMLHttpRequest();
/*
* We add a listener to the request which will listen to when the state changes,
@KlausEverWalkingDev
KlausEverWalkingDev / install_ubuntu_fonts_rehat.md
Created July 25, 2020 15:32 — forked from android10/install_ubuntu_fonts_rehat.md
Install Ubuntu Fonts on RedHat/Fedora Linux

1 - Open the terminal and type below given command

cd /root
yum install wget       (you can skip this step if wget is already installed)
wget https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-0.83.zip (check the newest version)

2 - Check if the directory /usr/share/fonts exist. If the fonts directory do not exist,you can create yourself.

@KlausEverWalkingDev
KlausEverWalkingDev / ssh-add.md
Created July 17, 2020 23:52 — forked from egoens/ssh-add.md
Use this if ssh key keeps asking for password
@KlausEverWalkingDev
KlausEverWalkingDev / Correct_GnuPG_Permission.sh
Last active July 12, 2020 17:48 — forked from oseme-techguy/Correct_GnuPG_Permission.sh
This fixes the " gpg: WARNING: unsafe permissions on homedir '/home/path/to/user/.gnupg' " error while using Gnupg .
#!/usr/bin/env bash
# To fix the " gpg: WARNING: unsafe permissions on homedir '/home/path/to/user/.gnupg' " error
# Make sure that the .gnupg directory and its contents is accessibile by your user.
chown -R $(whoami) ~/.gnupg/
# Also correct the permissions and access rights on the directory
chmod 600 ~/.gnupg/*
chmod 700 ~/.gnupg
@KlausEverWalkingDev
KlausEverWalkingDev / bluetooth.sh
Created October 31, 2019 22:01 — forked from RamonGilabert/bluetooth.sh
Bluetoothctl automation
#!/usr/bin/expect -f
set prompt "#"
set address [lindex $argv 0]
spawn sudo bluetoothctl -a
expect -re $prompt
send "remove $address\r"
sleep 1
expect -re $prompt
@KlausEverWalkingDev
KlausEverWalkingDev / "'LÓGICA DE PROGRAMAÇÃO' É BOBAGEM, e explicarei porquê", by Paulo Torrens.md
Last active September 4, 2019 16:32 — forked from vinicius73/post.md
["LÓGICA DE PROGRAMAÇÃO" É BOBAGEM, e explicarei porquê.]

#Name: "error: gpg failed to sign the data" Fix
#By Paulo Torrens (forked from @vinicius73/post.md)
#Version: N/D
#Release Date: September 3th, 2019

#["LÓGICA DE PROGRAMAÇÃO" É BOBAGEM, e explicarei porquê.]