Skip to content

Instantly share code, notes, and snippets.

View corlaez's full-sized avatar
🏠
WFH since January 2020

Armando Cordova corlaez

🏠
WFH since January 2020
View GitHub Profile
@corlaez
corlaez / README.md
Created March 3, 2026 22:18
base64 encoded m4a in email pdf, reconstruction attempt

The txt above was produced with:

  1. marker-pdf (python)
  2. Removing linebreaks that were added
  3. Fixing or adding characters with visual inspection

The result is far from perfect, the resulting audio is corrupted. In general the m4a audio has:

.\AtomicParsley.exe .\alignedaudio2.m4a -T
Atom ftyp @ 0 of size: 28, ends @ 28
@corlaez
corlaez / Context.kt
Created January 31, 2026 23:54
Snapshot of generated Context.kt
/*
* Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
// Auto-generated file. DO NOT EDIT!
// Generated by: org.jetbrains.kotlin.generators.builtins.contextParameters.GenerateContextFunctions
@file:kotlin.jvm.JvmName("ContextParametersKt")
@file:kotlin.jvm.JvmMultifileClass
@corlaez
corlaez / Juego.cpp
Created October 5, 2025 15:30
Juego 1 nivel. Disparos y game over.
#include <iostream>
#include <vector>
#include <string>
#include <map>
#include <cstdlib> // For system() (e.g., cls or clear)
#include <ctime> // Explicitly include for time(0)
#include <chrono> // For timing/sleep (optional)
#include <thread> // For timing/sleep (optional)
#include <algorithm> // For std::find_if, std::min
#include <cmath> // For std::abs
@corlaez
corlaez / ZCORLAEZ_PLAYGROUND
Created July 12, 2025 23:27
First abap code :D
*&---------------------------------------------------------------------*
*& Report ZCORLAEZ_PLAYGROUND
*&---------------------------------------------------------------------*
*&
*&---------------------------------------------------------------------*
REPORT zcorlaez_playground.
TYPE-POOLS: abap.
CLASS zu DEFINITION.
@corlaez
corlaez / Project1.cpp
Created June 16, 2025 20:14
comentado carrera c++
#include "pch.h"
#include <iostream>
#include <conio.h>
#include <Windows.h>
#include <ctime>
#include <vector>
using namespace System;
using namespace std;
@corlaez
corlaez / Project1.cpp
Created June 16, 2025 04:04
Carrera C++ con conteo de ganadas
#include "pch.h"
#include <iostream>
#include <conio.h>
#include <Windows.h>
#include <ctime>
#include <thread>
#include <vector>
#include <string>
using namespace System;
@corlaez
corlaez / Project1.cpp
Created June 15, 2025 23:22
Carrera C++ con musica
#include "pch.h"
#include <iostream>
#include <conio.h>
#include <Windows.h>
#include <ctime>
#include <thread>
#include <vector>
using namespace System;
using namespace std;
@corlaez
corlaez / Project1.cpp
Created June 15, 2025 23:02
Carrera C++ Single File
#include "pch.h"
#include <iostream>
#include <conio.h>
#include <Windows.h>
#include <ctime>
#include <thread>
#include <vector>
using namespace System;
using namespace std;
@corlaez
corlaez / Project1.cpp
Created June 15, 2025 22:48
Carrera C++
#include "pch.h"
#include <iostream>
#include <conio.h>
#include <Windows.h>
#include <ctime>
#include "myutils.h"
#include <thread>
using namespace System;
using namespace std;
@corlaez
corlaez / Cliente.java
Last active September 27, 2024 06:40
Codigo para persistir objetos en Java
package clases;
import java.io.Serializable;
public class Cliente implements Serializable {
private static final long serialVersionUID = 1_000_000_000_000_001L;
private Integer codigo;
private String nombre;
private String apellido;