Skip to content
View maronto's full-sized avatar

Block or report maronto

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse
maronto/readme.md

Note

To learn a little more about me, visit my website.

About me

Enthusiastic developer focused on building stable, aesthetic, and simple products.
My goal is to ensure security, stability, and transparency.

#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 = "“Simplicity is the soul of efficiency.”";
    string author = "- Austin Freeman";
    typewriter(quote, 35);
    sleep_ms(500);
    typewriter(author, 40);
    cout << "\033[0m";
    return 0;
}

Pinned Loading

  1. RoundAway RoundAway Public

    Portable cryptographic tool designed for secure and private communication. Built with Electron and Node.js, it provides encrypted messaging and file exchange capabilities in a lightweight desktop a…

    HTML

  2. truekit truekit Public

    TrueKit - Simple audio tag editor

    C# 1

  3. PCC PCC Public

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

    Go 1

  4. maronto.github.io maronto.github.io Public

    Pages :: maronto.github.io

    CSS