Skip to content
View FelixBrgm's full-sized avatar
🇦🇹
🇦🇹

Highlights

  • Pro

Organizations

@goos-solutions @42Dash @42core-team
Block or Report

Block or report FelixBrgm

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

Hey!

I'm Felix, 21 from Austria 🇦🇹 and I build things and communities at 42 Vienna as Pedagogy Co-Lead

  • 🔭 I’m currently working on 42 projects 🐳
  • ⌨️ I’m currently working on building the best possible layout for my custom keyboard
  • 🌱 I’m currently learning Rust ⚙️
  • 🎛 This is my .bashrc:
// .bashrc from FelixBrgm
export PS1="\W> "
alias ll="ls -la"

# To kill a process that uses a port
kp(){ 
kill $(lsof -ti tcp:$1);
}
  • ⚡ Favorite bit of code:
// It's a super short version of get_next_line in C.
char *get_next_line(int fd)
{
  char *s = malloc(10000), *c = s;
  while (read(fd, c, 1) > 0 && *c++ != '\n');
  return c > s ? (*c = '\0', s) : (free(s), NULL);
}

Pinned

  1. 42-minishell 42-minishell Public

    This is my minishell project at 42

    C

  2. 42-miniRT 42-miniRT Public

    C

  3. cine_term cine_term Public

    Rust