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 / 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

Philosophy: Focusing on essentials for competitive raiding / mythic+ / pvp. alcaras#6052 on discord if you have suggestions for things to add. I'll also be updating https://subcreation.net/ for Season 2 of Mythic+ and PvP and for Sanctum of Domination by July 10th.

every week

torghast

(you'll need to work your way up to layer 12; remember once you unlock layer 12 for one wing, it's automatically unlocked for the other -- not 100% clear what layers will be unlocked each week)

  • first week: can only do layer 9 (+120 soul cinders both wings)
  • heroic week: can only do up to layer 10 (+220 soul cinders both wings) or layer 11 (+300 soul cinders both wings)
  • mythic week: can go all the way up to layer 12 (+360 soul cinders both wings)
@MuTLY
MuTLY / API.md
Last active December 23, 2020 17:26 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@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;
}
}