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 / 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;
@corlaez
corlaez / LICENSE
Last active February 20, 2024 18:04
html dsl htmx extensions
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all