Skip to content

Instantly share code, notes, and snippets.

View GabriOliv's full-sized avatar
📖
Always Learning...

Gabriel O. Laureano GabriOliv

📖
Always Learning...
View GitHub Profile
@DevCheckOG
DevCheckOG / syscall_table_x86.md
Created August 29, 2025 15:24 — forked from GabriOliv/syscall_table_x86.md
Syscall Table x86 Linux for Assembly Programming

Syscall x86 Linux ASM

Extracted from W3Challs Syscalls

# Name eax ebx ecx edx esi edi ebp Definition
0 restart_syscall 0x00 - - - - - - kernel/signal.c:2501
1 exit 0x01 int error_code - - - - - kernel/exit.c:1095
2 fork 0x02 - - - - - - arch/x86/kernel/process.c:271
3 read 0x03 unsigned int fd char *buf size_t count - - - fs/read_write.c:460
@Dpbm
Dpbm / syscall_table_x86.md
Created July 2, 2025 20:55 — forked from GabriOliv/syscall_table_x86.md
Syscall Table x86 Linux for Assembly Programming

Syscall x86 Linux ASM

Extracted from W3Challs Syscalls

# Name eax ebx ecx edx esi edi ebp Definition
0 restart_syscall 0x00 - - - - - - kernel/signal.c:2501
1 exit 0x01 int error_code - - - - - kernel/exit.c:1095
2 fork 0x02 - - - - - - arch/x86/kernel/process.c:271
3 read 0x03 unsigned int fd char *buf size_t count - - - fs/read_write.c:460
@fursiol0800
fursiol0800 / syscall_table_x86.md
Created January 26, 2025 12:13 — forked from GabriOliv/syscall_table_x86.md
Syscall Table x86 Linux for Assembly Programming

Syscall x86 Linux ASM

Extracted from W3Challs Syscalls

# Name eax ebx ecx edx esi edi ebp Definition
0 restart_syscall 0x00 - - - - - - kernel/signal.c:2501
1 exit 0x01 int error_code - - - - - kernel/exit.c:1095
2 fork 0x02 - - - - - - arch/x86/kernel/process.c:271
3 read 0x03 unsigned int fd char *buf size_t count - - - fs/read_write.c:460
@GabriOliv
GabriOliv / general_dynamic_status.md
Last active September 15, 2024 22:28
general dynamic status

General Dynamic Status

GitHub projects that generate dynamic status for profile README.


📊 Charts

Projects that generate charts from GitHub data.

@GabriOliv
GabriOliv / syscall_table_x86.md
Created February 28, 2021 21:16
Syscall Table x86 Linux for Assembly Programming

Syscall x86 Linux ASM

Extracted from W3Challs Syscalls

# Name eax ebx ecx edx esi edi ebp Definition
0 restart_syscall 0x00 - - - - - - kernel/signal.c:2501
1 exit 0x01 int error_code - - - - - kernel/exit.c:1095
2 fork 0x02 - - - - - - arch/x86/kernel/process.c:271
3 read 0x03 unsigned int fd char *buf size_t count - - - fs/read_write.c:460
@GabriOliv
GabriOliv / custom_logo_shields.md
Last active February 5, 2025 01:43
Tips and Links of Web-apps to Transform a .SVG to Shield for README.md; Some Examples of Shield with custom Icons

Shields with Custom Icons

Web-apps and Tips to Transform a .SVG to Shields; and some Examples of Shields with Custom Icons


Steps:

  1. Download the SVG image logo
#!/bin/bash
bold=$(tput bold)
normal=$(tput sgr0)
set -e
echo "-----------------------------------------------"
echo " 🚀 Creating a new release 🚀"
echo "-----------------------------------------------"