Skip to content
View maronto's full-sized avatar
  • localhost
  • 13:55 (UTC +02:00)
  • Instagram exreaf

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

I write code with love, grow through practice, and turn ideas into working solutions.

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. truekit truekit Public

    TrueKit - Simple audio tag editor

    C# 1

  2. PCC PCC Public

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

    Go 1