Skip to content
View voltageeee's full-sized avatar
:shipit:
huh
:shipit:
huh

Block or report voltageeee

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
voltageeee/README.md

Hi, I'm Ilya

A self-taught pseudodev from Germany

#include <iostream>
#include <ctime>

struct me {
    const char* name = "ilya";
    int age = 15;
    double daystillbday;
};

int main() {
    time_t now;
    time_t birthday;
    struct tm birthday_date;
    me ilya;

    time(&now);

    birthday_date.tm_year = 2025 - 1900;
    birthday_date.tm_mon = 0;
    birthday_date.tm_mday = 31;
    birthday_date.tm_hour = 12;
    birthday_date.tm_min = 30;
    birthday_date.tm_sec = 1;
    birthday_date.tm_isdst = -1;

    birthday = mktime(&birthday_date);

    ilya.daystillbday = difftime(birthday, now)  / (60 * 60 * 24);

    std::cout << "Days left till my birthday: " << ilya.daystillbday << std::endl;

    return 0;
}

Pinned Loading

  1. anilibria-go anilibria-go Public

    A tiny go wrapper for anilibria API

    Go

  2. voltbomb voltbomb Public

    A pretty simple and a pretty poor SMS-Bomber in Go. I was too lazy to add more services, so make it on your own.

    Go

  3. go-smtp-client go-smtp-client Public

    SMTP Client written in Go

    Go