Skip to content
View 42-student's full-sized avatar

Highlights

  • Pro

Block or report 42-student

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
42-student/README.md

Faces GIF

Hello, World!

nobody@void:~$ whoami

#include <stdio.h>
#include <stdlib.h>
#include <passion.h>
#include <growth.h>

struct Coder {
    char *location = "42 Berlin";
    char *major = "Software Engineering";
    bool debug_mode = true;
    float bug_tolerance = 0.99;
};

void main() {
    struct Coder me = initialize_coder();
    
    // core loop: build, break, optimize, repeat
    while (me.debug_mode) {
        if (passion_for_building()) {
            code_low_level(&me);
            design_systems(&me);
            optimize_algorithms(&me);
            
            // occasionally switch to high-level for sanity
            if (rand() % 100 < 20) {
                code_high_level(&me);
            }
        }
        
        // embrace the bugs, learn from the crashes
        if (detect_bug()) {
            debug_with_gusto();
            learn_from_stack_trace();
        }
    }
    
    // AI curiosity module
    if (hype_level("AI") > THRESHOLD) {
        dive_into_AI();
        printf("Learning AI to decode the hype...\n");
    }
    
    // Crypto gamble protocol
    if (market_status("Crypto") == BOOM) {
        invest_in_blockchain();
        printf("Chasing crypto riches before *Segmentation Fault: Market Crash*\n");
    }

    // new chapter: Codam Amsterdam
    enroll("Codam", "Advanced Curriculum");
    specialize_in("Cybersecurity");
    specialize_in("Artificial Intelligence");
    printf("Currently pursuing advanced studies at Codam Amsterdam, focusing on Cybersecurity and AI.\n");
}

📚 Always learning and exploring new things in the world of computer science.


🛠️ Languages & Tools:

Here’s my tech toolbox:


🌌 More Stuff...

  • Longest Quest: Mastering the art of pointers in C without summoning a segmentation fault demon.
  • Favorite Algorithm: Bubble Sort, because sometimes you just need to watch the world sort slowly.
  • Dream Project: A self-healing Docker container that fixes its own bugs (a guy can dream, right?).

🔗 Connect with Me:

🌐 LinkedIn: Sebastian
💬 Let's talk about memory leaks, segmentation faults and why Vim is better than Emacs! 😆

Pinned Loading

  1. libasm libasm Public

    become familiar with Assembly language

    C

  2. libunit libunit Public

    micro framework for unit tests

    C 1 1

  3. minishell minishell Public

    the objective of this project is to create a simple shell. yes, your own little bash.

    C

  4. webserv webserv Public

    a HTTP server written in C++98

    C++ 2