Skip to content

Instantly share code, notes, and snippets.

View joeldevel's full-sized avatar
🦊

joeldevel

🦊
  • Argentina
View GitHub Profile
@joeldevel
joeldevel / .gitignore
Created August 19, 2022 06:07 — forked from Avinashachu007/.gitignore
Gitignore for Java,maven,Eclipse,Spring
/target/
!.mvn/wrapper/maven-wrapper.jar
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
@joeldevel
joeldevel / compiling_asm.md
Created October 12, 2021 12:37 — forked from yellowbyte/compiling_asm.md
how to assemble assembly with NASM assembler to 32-bit or 64-bit ELF binary with or without libc

32-bit ELF binary

how to assemble and link:

nasm -f elf32 -o <filename>.o <filename>.asm
ld -m elf_i386 -o <filename> <filename>.o

template code (hello world):

section .text
global _start
$ git remote rm origin
$ git remote add origin git@github.com:aplikacjainfo/proj1.git
$ git config master.remote origin
$ git config master.merge refs/heads/master