Skip to content

Instantly share code, notes, and snippets.

View aldoea's full-sized avatar
🎯
Focusing

Aldo Escobar aldoea

🎯
Focusing
View GitHub Profile
@aldoea
aldoea / cdfi_json.json
Created November 10, 2021 15:00
CFDI JSON layout example - Syncfy API
{
"id_transaction": "5e70739c2f877e5dd736e8fb",
"id_account": "5db073b1caaf236a6a4c2acc",
"id_account_type": "546d4904df527d1844a2e18d",
"id_credential": "5e73bfe6d036f64a591d8822",
"id_currency": "523a25953b8e77910e8b456c",
"id_disable_type": null,
"id_external": "",
"id_site": "5da784f1f9de2a06483abec1",
"id_site_organization": "56cf4ff5784806152c8b4567",
@aldoea
aldoea / automata8086.asm
Created July 17, 2019 22:03
Automata Practica 7 8086
name "Automata a^2nb^n"
org 100h
.data
input DB 31 DUP(?),"$"
inputSize dw ?
autCounter dw 0
numCondAut DB 3
msg db 13,10, "Please type it: $"
success db 13,10,"Valid input! $"
fail db 13,10,"Invalid input... $"
@aldoea
aldoea / bubblesort.asm
Created July 11, 2019 03:19
Bubble sort macro assembly
MPRINTARR MACRO
mov ecx, lengthArr
mov esi, OFFSET milista
PRINTLOOP:
mov eax, [esi]
call WriteDec
mWrite " "
add esi,4
LOOP PRINTLOOP
Call Crlf
@aldoea
aldoea / main.asm
Created July 8, 2019 20:32
Code of Parcial II Lenguajes de Interfaz exam
TITLE "EXAMEN 2"
INCLUDE Irvine32.inc
INCLUDE Macros.inc
.data
bienvenidamsj BYTE "Examen segundo parcial, bienvenido",0
input BYTE 31 DUP(?)
ACounter SDWORD 0
CCounter SDWORD 0