Skip to content

Instantly share code, notes, and snippets.

View nyabla's full-sized avatar
🌿

nela nyabla

🌿
View GitHub Profile
@nyabla
nyabla / vercel.json
Created February 3, 2023 00:30
x-clacks-overhead for vercel
{
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Clacks-Overhead",
"value": "GNU Terry Pratchett"
}
]
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@nyabla
nyabla / Hello World.bf
Created November 10, 2016 13:34
Hello World created by charyszard - https://repl.it/EUQ4/0
++++++++[>+++++++++<-]>.<++++[>+++++++<-]>+.<++[>++++<-]>-..+++.<++++[>>++++++++<<-]>>.<<++[>++++<-]++++[>--------<-]>.<++++[>++++++<-]>.+++.------.--------.
@nyabla
nyabla / Input.bat
Created March 20, 2016 20:40
If an input = something then do something else.
set /p input=Hello
if %input%==Hello goto :yay
:yay
echo yay
timeout -1
@nyabla
nyabla / IE_WindowOpen.bat
Last active March 25, 2016 09:53
Open an IE window with a specific website.
start http://siralpaca.github.io
@nyabla
nyabla / InvisibleMusic.bat
Created March 19, 2016 16:33
Play a music file without a window popping up.
set "example.mp3"
( echo Set Sound = CreateObject("WMPlayer.OCX.7"^)
echo Sound.URL = "%file%"
echo Sound.Controls.play
echo do while Sound.currentmedia.duration = 0
echo wscript.sleep 100
echo loop
echo wscript.sleep (int(Sound.currentmedia.duration^)+1^)*1000) >sound.vbs
start /min sound.vbs
@nyabla
nyabla / InfiniteLoop.bat
Created March 19, 2016 15:55
How to make an Infinite Loop in Batch
:A
::Enter Code here
echo potato ::<-- Example
goto :A