Skip to content
View nonergon's full-sized avatar
🎯
Beyond reality
🎯
Beyond reality

Block or report nonergon

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
nonergon/README.md

Important

All projects here are for educational and research purposes only. Use at your own risk.

About Me

I’m a programmer and systems enthusiast documenting public solutions and experiments.
Here I share code, explore system behavior, and experiment with problem-solving approaches.

#include <iostream>
#include <thread>
#include <chrono>
#include <string>

using namespace std;
using namespace std::chrono;

void sleep_ms(int ms) {
    this_thread::sleep_for(milliseconds(ms));
}

void typewriter(const string& text, int delay = 25) {
    for (char c : text) {
        cout << c << flush;
        sleep_ms(delay);
    }
    cout << '\n';
}

int main() {
    cout << "\033[1;33m"; 
    typewriter("Philosophy", 30);
    cout << "\n";
    string quote = "“He who has a why to live can bear almost any how.”";
    string author = "- Friedrich Nietzsche";
    typewriter(quote, 35);
    sleep_ms(500);
    typewriter(author, 40);
    cout << "\033[0m";
    return 0;
}

Pinned Loading

  1. PCP PCP Public

    Parse, check, and collect — a simple proxy checker and parser written in Go.

    Go

  2. ConnectionViewer ConnectionViewer Public

    Utility for viewing traffic.

    C#

  3. audio-tag-editor audio-tag-editor Public

    ATE - Audio Tag Editor

    C#

  4. UsernameChecker UsernameChecker Public

    A universal checker for your usernames across various social networks.

    Python

  5. www www Public

    source of trivona.xyz

    CSS

  6. ArmorCore ArmorCore Public

    Basic Critography Tool

    JavaScript