Skip to content
View rghouzra's full-sized avatar
🕵️‍♀️
🕵️‍♀️

Highlights

  • Pro

Organizations

@BlaanTeam @Barameej-Al-Qawaqea

Block or report rghouzra

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
rghouzra/readme.md
section .data
    profile_info db "Hi, I'm Reda Ghouzraf", 10
    level_info db "A passionate low level developer", 10
    languages db "Languages and Tools:", 10
    languages_list db "C/C++, Assembly, Bash", 10

section .text
    global _start

_start:
    mov eax, 4
    mov ebx, 1
    mov ecx, profile_info
    mov edx, 22
    int 0x80
    mov eax, 4
    mov ebx, 1
    mov ecx, level_info
    mov edx, 33
    int 0x80

    
    mov eax, 4
    mov ebx, 1
    mov ecx, languages
    mov edx, 21
    int 0x80

    mov eax, 4
    mov ebx, 1
    mov ecx, languages_list
    mov edx, 21
    int 0x80

    mov eax, 1          ; Syscall sys_exit --
    xor ebx, ebx        ; for 0 return
    int 0x80

; you can see the output of this code in https://godbolt.org/z/Yh89E6M1Y

rghouzra's 42 stats

Pinned Loading

  1. mnsh mnsh Public

    MiniShell, it's like bash simple executor and reader.

    C 2

  2. raycaster-game-vec2-trigonemtry raycaster-game-vec2-trigonemtry Public

    game implemented using raycasting

    C 3

  3. Barameej-Al-Qawaqea/irc-server Barameej-Al-Qawaqea/irc-server Public

    C++ 2 1

  4. BinaryTreeVisualizer BinaryTreeVisualizer Public

    print a binary tree in dot/json format

    C 6

  5. auto-differentiation/xad auto-differentiation/xad Public

    Powerful automatic differentiation in C++ and Python

    C++ 373 44

  6. fluent/fluent-bit fluent/fluent-bit Public

    Fast and Lightweight Logs, Metrics and Traces processor for Linux, BSD, OSX and Windows

    C 6.9k 1.7k