Skip to content

Instantly share code, notes, and snippets.

@gphg
Last active January 10, 2026 09:24
Show Gist options
  • Select an option

  • Save gphg/1aac63c3cb45bb7da77529ecc5a04b7e to your computer and use it in GitHub Desktop.

Select an option

Save gphg/1aac63c3cb45bb7da77529ecc5a04b7e to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<!--
------------===--------===---====-----::::..:.............................................
---------====-----:-========--==------:::....................:............::::::::::::::::
--------------------=========--=------::::................................::::::::::::::::
-----------------=-===-==-----=+=-----::::..........................:::::::...............
----------==---==--------:::--=++=----:::.........................::--===-:............::.
==---=======--===------:::::--=+++=--:::.:......................::-=++++**=:..............
========--------::::::::::::--=++++=-:::.......................:-====++****-:.............
------::::::::::::::::::::----=+*++++-::.....................:--=++++++****+::............
:::::::::::::---------------===++*++++=-:::::.............::-=++++++********:.............
::::::::-----------========-=+++=============--------------=++*+++*******+**-.............
-------=====++++++++++++++=============================+++++*#*+**######****-.............
==+++++++++++++++++++++====------====+++++++===========+****#*++**#%%%#*+**+::........::..
***++++++++++++++=======---------====+++++===============+****+++*#%%#**++++::..........::
++++++++++++=====----------------===+++====================+**+*#%%%##+++++-:.............
+++++++++======------------::-:--==++++======================+*#%%%#*++++*+::.............
++++++========-:-----------------==++++==-----=================++**++++**++-:::.::.....::.
++=======-----------------------=+++++==-------===+++=============+++++***+=-:::..........
-------:::::::::...:-=*##*+=--====+====---------===+++=========---==+++****==-:::.........
:::::::::::::::....::==##%%+===--==--===---==========++==============++*##*+=--::....:....
::::::::::::::....:--==***+==-------===++**#***#%#*++==================+***+==-::.........
:::::::::::::.....:-----------------==+*#%%*=*%%@%%%*+==================++++==-::......:..
::::::::::::......:::::-------------==++=+++++****+=----------------=====+++==-::......:.:
:::::::::::.......::-=====-----------====--========----:::::----------====+===-::.........
-:::----:::...:..+######*##+=--::---------------------:::::-------------=======-:::.......
*+=------::::...=%@%%@@@@@%%#=:::::---------:::::-----::::::::::::-------=======-::.::::.:
+**+=----:.:::.:=*%%%@@@@@@%#+-:::-::-------:::::::::::::::::::::-------========-::::.::::
--------:..::::-+%%%@%@%%@@%*=--------------:----::::-::::------------===++=====--::::::.:
--------::::::-=+*#%@%%%%%#*+=-=--------=-=--------:::--------------=====++======--:::::::
--------::::::-=+*##%%#%%#*++==-=============----------------=-------===++++======-:::::::
--------::::::-=+*#%%%#####*++==-========+++==--=-------------------====+++==++===-:::::::
--------::::::::=##%%%@@%%%#*+======++*###*===-=-------------:--------==++==+=====--::::::
.::::::::::::::--=+*#%%%%%%%%%#%######**+==---==--------------------===++++++======--:::::
..........::::::---=*********###**++++===---====------------------====++++++++++====-:::::
..........::::::----=++++++=======================--------------====++++++++++++=====::...
:..........:::::----------=---=================---------------=====+++++++++++++++===-:...
::::::.....:::::--------------================---------------=====++++++++*+++++=+===-::..
:::::::::.:::-----------------==============-------------=--=======++++****++++++====-:::.
:::::::::::::-----------------==============---------------========+++++++++========--::::
:::::::::::::----------------================--=-----===------=====+++++++=======-----::::
:::::::::::::------------------=======================----===========+++======-------:::::
::::::::::::::--------=============================--=--====-======++==--------------:::::
::::::::::::::::--------===+=+===+++++++========-----------==--====------------------:::::
:::::::::::::::::-------===========+++======-------==---------------------------------::::
--::::::::::::::::------==================--------------------------:----:----------=-::::
-----:---:::::::::------================--=-------------===-------:---------::-----===::::
-->
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Oxygen+Mono&family=Oxygen:wght@300;400;700&display=swap" rel="stylesheet">
<meta charset="utf-8" />
<title>Down for Maintenance - GitGud.io - Free Git Hosting</title>
<link href="https://gitgud.io/style.css" rel="stylesheet"/>
<link rel="shortcut icon" href="https://gitgud.io/gitgud-icon.png" />
</head>
<body>
<div class='console-container'>❯ ~ <span id='text'></span><div class='console-underscore' id='console'>&#95;</div></div>
<div class="wrapper">
<h1>BRB, We're doing upgrades</h1>
<p>
GitGud.io is down to for scheduled maintenance.<br>
We'll be back in a few minutes...<br>
<br>
<span style="color:gold">This page will automatically reload when GitGud.io is up</span><br>
<br>
Check out additional linked resources below
</p>
<div id="nav">
<ul>
<a href="https://sapphire.moe"><li>❯ ~ curl Sapphire.moe</li></a>
<a href="https://discord.gg/sduqrRT"><li>❯ ~ Sapphire_Discord --help</li></a>
<a href="http://status.sapphire.moe/"><li>❯ ~ cat /proc/sapphire_status</li></a>
</ul>
</div>
</div>
<script>
// function([string1, string2],target id,[color1,color2])
consoleText(['./upgrade-gitgud.sh', 'curl GitGud.io', 'cat expletives.txt | Sapphire_Discord'], 'text',['green','mediumslateblue','dodgerblue']);
function consoleText(words, id, colors) {
if (colors === undefined) colors = ['#fff'];
var visible = true;
var con = document.getElementById('console');
var letterCount = 1;
var x = 1;
var waiting = false;
var target = document.getElementById(id)
target.setAttribute('style', 'color:' + colors[0])
window.setInterval(function() {
if (letterCount === 0 && waiting === false) {
waiting = true;
target.innerHTML = words[0].substring(0, letterCount)
window.setTimeout(function() {
var usedColor = colors.shift();
colors.push(usedColor);
var usedWord = words.shift();
words.push(usedWord);
x = 1;
target.setAttribute('style', 'color:' + colors[0])
letterCount += x;
waiting = false;
}, 1000)
} else if (letterCount === words[0].length + 1 && waiting === false) {
waiting = true;
window.setTimeout(function() {
x = -1;
letterCount += x;
waiting = false;
}, 1000)
} else if (waiting === false) {
target.innerHTML = words[0].substring(0, letterCount)
letterCount += x;
}
}, 120)
window.setInterval(function() {
if (visible === true) {
con.className = 'console-underscore hidden'
visible = false;
} else {
con.className = 'console-underscore'
visible = true;
}
}, 400)
}
</script>
<script>
setInterval(function () {
var request = new XMLHttpRequest();
request.onreadystatechange = function() {
if (request.readyState === 2){
console.log(request.status);
location.reload();
}
};
request.open("GET", "https://gitgud.io", true);
request.send();
}, 300000);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment