Skip to content
View TheMutta's full-sized avatar
  • Somewhere in Italy
  • 17:36 (UTC +01:00)

Block or report TheMutta

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

Hello, world!

Introductions

Hi, I'm Jess!

I'm a professional Rust/C/C++ developer, working both in the operating system and embedded spaces, with some game dev by the side.

I'm 19 and I come from Venice, Italy.

Projects

I am currently doing a big refactor of this account, so not all the projects are currently available. However, expect to find:

  • Kernels
  • Data structures
  • Parsers
  • Libraries
  • And so much more

If specifically you want access to some source code while the refactor is going on, please ask away! I am always available.

Source code down here

struct programmer_t {
  const char *introduction;
  char *profession;
  unsigned int age;
  char *location;
};

int main() {
  printf("Hello, world!");

  struct programmer_t jessica = {
    .introduction = "Hi, I'm Jess!",
    .profession = "I'm a professional Rust/C/C++ developer, \
                   working both in the operating system and embedded spaces, \
                   with some game dev by the side.",
    .age = 19,
    .location = "Venice, Italy",
  };

  enter_my_lab(&jessica);
  return 0;
}

void enter_my_lab(programmer_t *programmer) {
  // TODO(TheMutta): Refactor ;)
}

Popular repositories Loading

  1. TheMutta TheMutta Public

  2. ring-buffer-impls ring-buffer-impls Public

    Ring buffer implementations for different languages

  3. flexible-database-impls flexible-database-impls Public

  4. endless-allocator-impls endless-allocator-impls Public