null8626 / archive

Archive of the projects i no longer maintain.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

archive

Archive of the projects i no longer maintain.

A few things to note before exploring this repository is that the projects in this repo are:

  • only some that i think is okay to be shown to the public.
  • licensed under the WTFPL license.
  • not allowed to be modified through pull requests.
  • expect the links here leading to nowhere and images not loading.

Personal projects

List of projects i no longer maintain in chronological order. Small scripts i've made are not included here.

Project name Lifespan Language Type
games.bat* 21 August 2019 Batch Console application
BatchOS* 13 November 2019 – 2 February 2020 Batch Console application
school* 7 December 2019 Visual Basic .NET Graphical application
UninstallWindows v1.0* 7 December 2019 Visual Basic .NET Graphical application
Program Manager* 9 December 2019 Visual Basic .NET Graphical application
DownloadButton* 11–15 December 2019 Visual Basic .NET Graphical application
anything* 14–16 December 2019 Visual Basic .NET Graphical application
MemeMaker* 29–30 December 2019 Visual Basic .NET Graphical application
somebot56 14 March – 7 April 2020 JavaScript Discord bot
username601 7 April 2020 – 20 January 2022 Python Discord bot
slee.py* 24 May 2020 Python Console application
geomepydash 30 May – 3 July 2020 Python Library
Useless API 3 June 2020 – 1 April 2021 Python Web application
piegame* 6–9 June 2020 Python Graphical application
uselessapi.js 23 August 2020 – 1 April 2021 JavaScript Library
uselessapi 24 August 2020 – 1 April 2021 Python Library
TerminalPad* 22–23 September 2020 C# Console application
twemoji-parser 11 November 2020 – 10 June 2021 Python Library
news.js 23 January – 10 June 2021 JavaScript Library
bmkg 23 January 2021 – 16 June 2023 Python Library
discord-bot-lib 3 April 2021 – 12 July 2022 JavaScript Library
Anime Luca 22 April – 5 November 2021 JavaScript Discord bot
animality-py 14 May – 16 June 2021 Python Library
brainly 13–14 June 2021 Python Library
simple-windows-gui 13–24 July 2021 JavaScript, C++ Library
string_toolkit.h 22 July – 3 October 2021 C Library
string-toolkit 26 July – 3 August 2021 Python Library
animality.h 7–22 August 2021 C Library
topgg-cpp-sdk 15 September – 17 November 2021 C++ Library
jsfuck 9 October 2021 – 10 September 2022 C Library
cprintf 9 October 2021 – 13 March 2023 C Library
vython 24–28 November 2021 V, C Library
ansi-adventure 3–12 December 2021 C Console application(s)
js-macro 1 January 2022 – 7 April 2023 TypeScript, Rust Library
jsfuck 30 January – 30 May 2022 Rust Library
weather-cli* 8 March – 13 July 2022 Rust Console application
sus 28 April – 13 July 2022 C Console application
fast-fail 5 May – 13 July 2022 TypeScript Library
sensitive-test 5 May 2022 – 19 April 2024 Python Library
animality.rs 23–24 June 2022 Rust Library
topgg 2 April 2023 – 27 March 2024 Rust Library
npplug* 12–14 January 2024 Rust Library
bakatime* 6 July – 16 July 2024 Rust Graphical application
screen-jumpcutter* 20–24 July 2024 C++ Console application
screenlapse* 24 July – 14 August 2024 C++, Rust Graphical application
jumpcutter* 15–20 August 2024 C Console application
obs-jumpcutter* 31 August – 1 September 2024 C Plugin

* This project was never made public throughout its lifetime.

Gallery

MemeMaker (2019)

planned meme types to be supported:

somebot56 (2020)

profile picture


snippet of source code (15 March 2020)

LIST OF COMMANDS FROM THE s0mebot56 (ver 1.1)
Programmed by someguy56 in DiscordJS (JavaScript)
1. !cmd                      > LIST COMMANDS BY THIS BOT.
2. !say '[word]'             > SAYS WHAT THE USER WANTS TO SAY.
3. !randomWord               > GENERATE RANDOM WORDS FROM THE ENGLISH DICTIONARY.
4. !flipCoin                 > FLIPS A COIN FOR YOU.
6. !emojis                   > GENERATES A RANDOM EMOJI.
7. !mathquestion             > GENERATES A RANDOM MATH QUESTION.
8. !isprime [num]            > CHECKS IF [num] IS A PRIME NUMBER.
9. !math [num] [sym] [num]   > ANSWERS A BASIC MATH EQUATION. ACCEPTED SYMs: [+ – x /].
10. !factor [num]            > LISTS A FACTOR OF A NUMBER.
11. !multiplication [num]    > LISTS A MULTIPLICATION LIST OF A NUMBER.
12. !rps [rock/paper/scissors]  > PLAYS ROCK PAPER SCISSORS WITH ME.
13. !hbd [name]                   > SAYS HAPPY BIRTHDAY TO SOMEONE!
14. !prime                        > LISTS PRIME NUMBERS FOR YOU.
15. !fibonacci                    > LISTS FIBONACCI NUMBERS.
16. !pi                          > LISTS THE DIGITS/PLACES OF PI.
16. !sqrt [num]                  > RETURNS THE RESULT OF A SQUARE ROOT OF A NUMBER.

commands list (17 March 2020)

// https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=qrcode

const Discord = require('discord.js')
const {prefix, token} = require('../config.json')

module.exports.run = async (message, bot, args) => {
    let msg = message.content.toLowerCase();
    // command = !qr
    var msgarr = msg.split("");
    for (i = 0; i < 4; i++) {
        msgarr.pop();
    }
    var wordToConvert = msgarr.join("");
    var afterConvertArray = [];
    var wtcArr = wordToConvert.split("");
    var id = 0;
    var alphabet = "abcdefghijklmnopqrstuvwxyz";
    var alphabet = alphabet.split("");
    for (i = 0; i < wordToConvert.length; i++) {
        if (wtcArr[i]==" ") {
            afterConvertArray.push("%20");
        } else if (alphabet.includes(wtcArr[i])==true) {
            afterConvertArray.push(wtcArr[i]);
        } else {
            var id = 1;
        }
    }
    if (id!=1) {
        var imglink = afterConvertArray.join("");
        message.channel.send({files: [{ attachment: imglink}]});
    } else {
        message.channel.send("Error: Invalid symbols detected.");
    }
}

module.exports.config = {
    name: "qrcode"
}

source code of the qrcode command (4 April 2020)

username601 (2020–2022)

profile picture (until 22 May 2020)

profile picture (from 22 May 2020)


profile picture image reference


snippet of source code (8 April 2020)


snippet of source code (18 April 2020)


the infamous spinny top.gg page (30 December 2020)


the infamous spinny top.gg page (31 December 2020)


output of a geometry dash command that fetches the current weekly demon (1 December 2020)

Videos

601start2.mp4

bot creation (7 April 2020)

20200821-username601.mp4

frog command timelapse (21 August 2020)

20200913-username601.mp4

demonstration of the sub command (13 September 2020)

Website



27 May 2020


10 October 2020

Spotify card


26 August 2020


8 September 2020


30 December 2020

Balance card


6 August 2020


29 August 2020


20 December 2020

Server card


4 August 2020


28 August 2020


16 December 2020

User card


6 August 2020


27 August 2020


19 December 2020

news.js (2021)

day 2 (24 January 2021)

Anime Luca (2021)

discord profile (11 May 2021)

About

Archive of the projects i no longer maintain.

License:Do What The F*ck You Want To Public License


Languages

Language:Jupyter Notebook 59.9%Language:Python 18.1%Language:C 16.6%Language:JavaScript 3.7%Language:Visual Basic .NET 0.7%Language:C# 0.5%Language:Batchfile 0.3%Language:CMake 0.1%Language:TypeScript 0.0%Language:Makefile 0.0%Language:Shell 0.0%