Skip to content

Instantly share code, notes, and snippets.

View jluisflo's full-sized avatar
🚀
Learning every day

Luis Flores jluisflo

🚀
Learning every day
View GitHub Profile
@jluisflo
jluisflo / aliens.cs
Created March 13, 2025 02:07
Esta es una solución al problema de calculo de población de aliens planteado por https://gist.github.com/cococov/a868d8255d99a657a51494ffc5866de6
class Aliens
{
private static void Main()
{
int[] aliens = [3, 4, 3, 1, 2];
const int maxDays = 80;
for (var day = 0; day <= maxDays; day++)
{
Console.WriteLine($"Dia: {day}: {string.Join(",", aliens)}");

Cursor's Memory Bank

I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.

Memory Bank Structure

The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:

flowchart TD