Skip to content
View saccles's full-sized avatar
  • United States of America
  • 13:56 (UTC -05:00)

Block or report saccles

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
saccles/README.md

About Me

silas@hobbit:/tmp/tmp.sMMKH3yomH$ cat github_profile.s
.intel_syntax noprefix

.section .text
    .global _start

_start:
    call greet_visitor
    
    mov rdi, 0 
    mov rax, 60 
    syscall

greet_visitor:
    mov rdi, 1 
    lea rsi, MESSAGE 
    mov rdx, MESSAGE_LENGTH
    
    mov rax, 1 
    syscall
    
    mov rax, 0
    ret

.section .data
    MESSAGE:
        .string "Hey ๐Ÿ‘‹, I'm Silas! \n\nA Computer Science student from the United States of America with a passion for technology and problem solving.\n"
    MESSAGE_LENGTH:
        .int 135
silas@hobbit:/tmp/tmp.sMMKH3yomH$ as -o github_profile.o github_profile.s; ld -o github_profile github_profile.o
silas@hobbit:/tmp/tmp.sMMKH3yomH$ ./github_profile
Hey ๐Ÿ‘‹, I'm Silas! 

A Computer Science student from the United States of America with a passion for technology and problem solving.

Languages and Development Tools

  • Python
  • Java
  • x86-64 Assembly
  • PHP
  • HTML
  • Bash
  • PowerShell
  • Git
  • Visual Studio Code
  • NetBeans
  • Vim

Operating Systems

  • Linux
  • Windows

Interests

  • Information Security
  • Artificial Intelligence
  • Computer Engineering
  • Open-Source Software
  • Fantasy Books
  • Environmental Protection and Sustainability

Get In Touch

Popular repositories Loading

  1. CaesarCipherTool CaesarCipherTool Public

    A tool for encrypting and decrypting messages using the Caesar cipher. Written in Python 3.

    Python

  2. CVE_2018_16763_Proof_of_Concept CVE_2018_16763_Proof_of_Concept Public

    A Proof-of-Concept (PoC) exploit for CVE-2018-16763 (Fuel CMS - Preauthenticated Remote Code Execution).

    Python

  3. TicTacToe TicTacToe Public

    A single-player tic tac toe game written in Python 3.

    Python

  4. CSC_151 CSC_151 Public

    Programming assignments from my CSC-151 - Java Programming class (Fall 2024).

    Java

  5. learning_python3 learning_python3 Public

    Programs and scripts I wrote while learning Python3 (for more information, see Python Crash Course, 2nd edition, by Eric Matthes).

    Python

  6. computing_101 computing_101 Public

    A repository for storing Cybersecurity capture the flag (CTF) challenges from pwn.college's Computing 101 dojo. For more information, visit https://pwn.college/computing-101/. The programs below arโ€ฆ

    Assembly