This file contains 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<profiles version="21"> | |
<profile kind="CodeFormatterProfile" name="cheesits456" version="21"> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statment" value="separate_lines_if_wrapped"/> | |
<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter" value="do not insert"/> |
This file contains 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
/* ========== | |
AutoHideMembers.theme.css by cheesits456 (https://cheesits456.dev) | |
For CSS compatible with browser extensions, see | |
https://gist.github.com/cheesits456/0d5bede837f022e443e9a5fc4aa386cb#file-discordbrowserstyles-css-L49 | |
========== */ | |
/* Auto-hide the members list, show on hover */ |
This file contains 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
/* ========== | |
RemoveButtons.theme.css by cheesits456 (https://cheesits456.dev) | |
For BetterDiscord version, see https://gist.github.com/cheesits456/41d659f932b5a574b5dfb9b391a4506e | |
========== */ | |
/* Hide Nitro gift button */ | |
button[aria-label="Send a gift"] { |
This file contains 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
@echo off | |
title Activate Windows 10 ALL versions for FREE! | |
cls | |
echo ============================================================================ | |
echo Activate Windows 10 ALL versions for FREE! | |
echo ============================================================================ | |
echo. | |
echo Supported Products: | |
echo - Windows 10 Home | |
echo - Windows 10 Home N |
This file contains 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
/* ========== | |
RemoveButtons.theme.css by cheesits456 (https://cheesits456.dev) | |
For CSS compatible with browser extensions, see | |
https://gist.github.com/cheesits456/0d5bede837f022e443e9a5fc4aa386cb#file-discordbrowserstyles-css-L20 | |
========== */ | |
/* Disable timestamp when hovering a message */ |
This file contains 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
.da-scrollerWrap .da-scroller::-webkit-scrollbar-thumb { | |
background-color: #2c75ff !important; | |
border-color: #091833 !important; | |
} | |
.theme-dark .da-scrollerWrap .da-scroller::-webkit-scrollbar-track-piece { | |
background-color: #000b1e !important; | |
border-color: #091833 !important; | |
} |
This file contains 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
function uneval(o) { | |
switch (typeof o) { | |
case "undefined": return "(void 0)"; | |
case "boolean": return String(o); | |
case "number": return String(o); | |
case "string": return `"${o.replace(/\W/gi, function(_) { return `\\u${(0x10000 + _.charCodeAt(0)).toString(16).slice(1)}` })}"`; | |
case "function": return `(${o.toString()})`; | |
case "object": | |
if (o == null) return "null"; | |
let ret, type = Object.prototype.toString.call(o).match(/\[object (.+)\]/); |