Giter Club home page Giter Club logo
                /####/  #################                                      
              /####/    #####/     ######                                      
            /####/      ###/       ######                                      
          /####/        #/         /####/                                      
        /####/          /        /####/                                        
      /####/                   /####/                                          
    /####/                   /####/                                            
  /####/                   /####/       /                                      
/####/                   /####/        /#                                      
#####################   ######       /###                                      
#####################   ######     /#####                                      
#####################   #################                                      
               ######                                                          
               ######                                                          
               ######   #                                                      
   _                    #  #  #  #==  #  #    #==\   #==,  *==*  #\\  #  #\\  #
  |c| mhahnFr           #  #==#  #=   #  #    #==<   #=*   #  #  # \\ #  # \\ #
  '-'                   #  #  #  #==  #  #==  #==/   # \\  *==*  #  \\#  #  \\#
                        #                                                      

👋 Hey there, I'm mhahnFr!

As of now, I speak these languages:

Java Programming Language logo C Programming language icon C++ Programming language icon Objective-C Programming language icon Swift Programming language logo Dart Programming language logo

Among others, I use these tools:

Vim logo Xcode logo SwiftUI logo Flutter logo CLion logo IntelliJ logo Eclipse logo Android Studio logo Linux Fedora logo Bash icon GCC logo LLVM logo JSON logo Markdown Docker logo Git logo GitHub Android icon Gradle OpenGL logo SSH logo Apple logo

Currently, I am studying at the 42 Heilbronn.

The 42 Heilbronn is a coding school with a completely new educational design: Everyone is learning from everyone - without teachers. This peer learning principle challenges the traditional education system very successfully.
More information can be found on their website: 42heilbronn.de. My 42 intra profile can be found here.

Short story

I started my journey in the world of coding back when I was 12 years old using the Java Programming language. Later on, I added another language to my portfolio, the Swift Programming language. At the 42 Heilbronn, I learned the C and the C++ Programming languages.

Read the full story here.

Fun facts

How to break Swifts type checker (Click to expand)
let data: [UInt8] = [ 128, 128, 128, 128 ]

let i: Int = data[0] & 0xff << 24
           | data[1] & 0xff << 16
           | data[2] & 0xff <<  8
           | data[3] & 0xff <<  0
Correct solution (Click to expand)
let i: Int = Int(data[0]) & 0xff << 24
           | Int(data[1]) & 0xff << 16
           | Int(data[2]) & 0xff <<  8
           | Int(data[3]) & 0xff <<  0
Discovered while writing this piece of code.
Crash the JVM (Click to expand)
import java.lang.reflect.Field;
import sun.misc.Unsafe;

class Breaker {
    private final Unsafe unsafe;
    
    public Breaker() throws Exception {
        final var field = Unsafe.class.getDeclaredField("theUnsafe");
        field.setAccessible(true);
        
        unsafe = (Unsafe) field.get(null);
        
        segfault();
        freeError();
    }
    
    private void freeError() { unsafe.freeMemory(Integer.MAX_VALUE); }
    
    private void segfault() { unsafe.putByte(Integer.MAX_VALUE, (byte) 0); }
    
    public static void main(String[] args) throws Exception { new Breaker(); }
}

mhahnfr's Projects

42cursus-fdf icon 42cursus-fdf

The FdF (File de Fer (french for wireframe)) is an exercise of the 42 school. The task is to create an application using MinilLibX displaying 3D wireframes.

42cursus-ft_printf icon 42cursus-ft_printf

The ft_printf is an exercise of the 42 school. The description is simple: one has to recode printf from the libc library.

42cursus-libft icon 42cursus-libft

The libft is an exercise where one recodes some libc functions and where you can add your own utility functions.

adb_connector_mac icon adb_connector_mac

A small app to connect to registered Android devices automatically using the Android Debug Bridge.

dc4c icon dc4c

Standard data containers for C.

gnlservertest icon gnlservertest

This is a test for the 42cursus-get_next_line. It can test wether the GNL can read over an internet connection.

isongs-radiotext icon isongs-radiotext

Short Java program that displays the currently on the radio broadcasted song. Idea from 2014, remade 2019 and 2023.

mhahnfr icon mhahnfr

Repository containing some information about me.

ndl icon ndl

Native Dark mode Listener.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.