This file contains hidden or 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
<script> | |
function glitch(caller) { | |
var x = caller.textContent | |
randIndex = Math.floor(Math.random() * x.length) | |
upperOrLower = Math.round(Math.random()) | |
if(upperOrLower > 0.5) | |
{ | |
caller.innerHTML = x.substring(0, randIndex) + x.charAt(randIndex).toLowerCase() + x.substring(randIndex+1, x.length) | |
} | |
else if(upperOrLower < 0.5) |
This file contains hidden or 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
cmd package uninstall -k --user 0 com.google.android.deskclock; | |
cmd package uninstall -k --user 0 com.google.android.calendar; | |
cmd package uninstall -k --user 0 com.google.android.calculator; | |
cmd package uninstall -k --user 0 com.android.chrome; | |
cmd package uninstall -k --user 0 com.google.android.apps.docs; | |
cmd package uninstall -k --user 0 com.google.android.apps.nbu.files; | |
cmd package uninstall -k --user 0 com.google.android.googlequicksearchbox; | |
cmd package uninstall -k --user 0 com.google.android.youtube; | |
cmd package uninstall -k --user 0 com.google.android.apps.youtube.music; | |
cmd package uninstall -k --user 0 com.google.android.apps.safetyhub; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
<link href="https://fonts.googleapis.com/css?family=Lexend+Giga&display=swap" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet"> | |
<style> | |
#blog {padding-bottom:150px;} | |
#inner_div {margin-left:30px; margin-right:30px; margin-top:30px; align:left; z-index:999} |
This file contains hidden or 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 | |
cls | |
:start | |
set choice= | |
xcopy /e /y /d C:\Users\Hunter\Music\*.* D: | |
goto wait | |
:check | |
timeout /t 1 /nobreak >nul | |
echo waiting |
This file contains hidden or 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
"set colors | |
syntax on | |
colorscheme onedark | |
"allow navigation up/down within lines | |
noremap <silent> <Up> gk | |
noremap <silent> <Down> gj | |
noremap <silent> <Home> g<Home> | |
noremap <silent> <End> g<End> | |
inoremap <silent> <Up> <C-o>gk |
This file contains hidden or 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 initSnowflakes() { | |
// Check if current month is December (month is 0-based, so December is 11) | |
const currentMonth = new Date().getMonth(); | |
if (currentMonth !== 11) { | |
return; // Exit if not December | |
} | |
// Create and inject the CSS | |
const styleSheet = document.createElement('style'); | |
styleSheet.textContent = ` |