Skip to content

Instantly share code, notes, and snippets.

View MuTLY's full-sized avatar
🎯
Focusing

Leandro Barbosa MuTLY

🎯
Focusing
View GitHub Profile
@MuTLY
MuTLY / keys.txt
Created July 28, 2025 18:18
Cemu keys
# this file contains keys needed for decryption of disc file system data (WUD/WUX)
# 1 key per line, any text after a '#' character is considered a comment
# the emulator will automatically pick the right key
# HOW TO: in Cemu go to "File" -> "Open MLC folder" then go one folder up to the main Cemu folder.
# IMPORTANT: the MLC folder must be the default one, not a custom folder.
# Then copy the contents of this file into the keys.txt file in that main Cemu folder.
d7b00402659ba2abd2cb0db27fa2b656 # Common
805e6285cd487de0faffaa65a6985e17 # Espresso Ancast
@MuTLY
MuTLY / gc_manifest_v2_on.reg
Created July 11, 2025 16:43
Google Chrome manifest V2 enabled
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome]
"ExtensionManifestV2Availability"=dword:00000002
@MuTLY
MuTLY / Hexadecimal Color Transparency.md
Last active November 28, 2023 02:35 — forked from lopspower/README.md
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 after it, like this #00000066.

All hex value from 100% to 0% alpha:

C:\Windows\System32\DriverStore\FileRepository\nvdmi.inf_amd64_43100dd3f0c99703\NvCamera
in admin cmd:
NvCameraEnable.exe off
@MuTLY
MuTLY / hide-ecoritos.js
Last active October 9, 2020 12:15
Hide e-Cores bots on Slack
// ==UserScript==
// @name Hide e-Core bots
// @namespace https://gist.github.com/MuTLY/dd867ede63841e3d2982791f43e95156
// @version 0.1
// @description Hide the e-Core bots on Slack
// @author MuTLY
// @match https://app.slack.com/*
// @grant none
// ==/UserScript==

Improved .sr-only

Theorically bulletproof CSS class for visually hide anything and keep it accessible to ATs.

A Pen by ffoodd on CodePen.

License.

@MuTLY
MuTLY / keyboard-keys.md
Created April 24, 2020 15:54 — forked from bittner/keyboard-keys.md
Keyboard keys markup in MarkDown

Ctrl + Alt + Space

@MuTLY
MuTLY / profiles.json
Created September 3, 2019 16:13
Windows Terminal - Git Bash
{
"globals" :
{
"alwaysShowTabs" : true,
"defaultProfile" : "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"initialCols" : 145,
"initialRows" : 40,
"keybindings" :
[
{
@MuTLY
MuTLY / select-text-range.js
Last active March 1, 2017 20:11 — forked from beiyuu/select-text-range.js
jQuery:Select a text range (input/textarea)
//USE CASE
$('#q').selectRange();
$('#q').selectRange(0, 10);
$('#q').selectRange(searchVal.indexOf('{'), (searchVal.indexOf('}')+1));
$.fn.selectRange = function(start, end) {
if (!start || !end) {
start = 0;
end = 9999;
}
// tries to execute the uri:scheme
function uriSchemeWithHyperlinkFallback(uri, href) {
if(!window.open(uri)){
window.location = href;
}
}