This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; /usr/local/bin/nasm -f macho 32.asm && ld -macosx_version_min 10.7.0 -o 32 32.o && ./32 | |
global start | |
section .text | |
start: | |
push dword msg.len | |
push dword msg | |
push dword 1 | |
mov eax, 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GIT | |
# Download latest version of git (portable if not admin) | |
git.exe clone https://github.com/bertrandmartel/st7735-raspberry.git \ | |
-c "http.proxy=http://:@proxy_url:proxy_port" \ | |
-c "http.sslverify=false" \ | |
-c "credential.helper=" | |
#credential.helper prevents credentials dialog window | |
#sslverify=false for git host where ca is not recognized |