Add 'homepage/' from commit 'a07048bb01'

git-subtree-dir: homepage
git-subtree-mainline: 557d85391c
git-subtree-split: a07048bb01
This commit is contained in:
Fabian Montero 2025-08-25 23:07:52 -06:00
commit 3abff4437a
82 changed files with 2643 additions and 0 deletions

View file

@ -0,0 +1,25 @@
+++
title = "art collection"
+++
I own a very small art collection. Here are some photos of the pieces in it and
some info about them.
# La tertulia
Screen Printing
35x45cm
2021
La Tertulia is a screen printing ("serigrafía", in spanish) by Costa Rican
artist Rafa Gutierrez.
![La Tertulia](../../art_collection/la_tertulia1.jpg)
![La Tertulia](../../art_collection/la_tertulia2.jpg)
This is how I framed it:
![La Tertulia](../../art_collection/la_tertulia3.jpg)
This piece has a "sister" which I gifted to my father. It's called "Caribe":
![Caribe](../../art_collection/caribe.jpg)

View file

@ -0,0 +1,17 @@
+++
title = "be methodical"
+++
```txt
Lets be honest with ourselves. They beat the game. Most music duos or groups
don't get a happy closing of the books. They go out in a rage of hellfire & fast
lifestyles or end up splitting over varying differences or record companies
simply taking advantage. Daft Punk? They made all the greatest tunes they could,
and now its their time to enjoy the fruits of life & hard work without worrying
about tours, content ect. They won. Whatever you're doing out there today,
remember your passions, your hobbies. Go after them, be methodical & you too can
come out the other side clean. It seems futile sometimes, but life is a chance
not worth disregarding. Win that game.
-- YouTube comment by AgentZ7 on Daft Punk's Epilogue video
```

View file

@ -0,0 +1,76 @@
+++
title = "places to eat out"
+++
<ul id="randomize-list">
<li>Olive Garden</li>
<li>La Hacienda Mexicana</li>
<li>Wings on Fire</li>
<li>La 45</li>
<li>El Higuerón</li>
<li>La Casona de Laly</li>
<li>Pizza Hut</li>
<li>Spoon</li>
<li>Casa Rojas</li>
<li>Neko Sushi</li>
<li>Fitos</li>
<li>Cosí</li>
<li>La Caverna de Monto</li>
<li>Cantón</li>
<li>Ichiraku Sushi</li>
<li>Taquería Taquitos</li>
<li>95 Grados</li>
<li>Ciros</li>
<li>Family Pizza</li>
</ul>
<script>
// Function to randomize an array using the Fisher-Yates algorithm
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
}
// Get the list element by its ID
const listElement = document.getElementById('randomize-list');
// Function to randomize the list
function randomizeList() {
// Get the list items from the list element
const listItems = Array.from(listElement.getElementsByTagName('li'));
// Randomize the order of list items
const randomizedList = shuffleArray(listItems);
// Clear the existing list
listElement.innerHTML = '';
// Append the randomized list items back to the list element
randomizedList.forEach((item) => {
listElement.appendChild(item);
});
}
// Create a button element
const button = document.createElement('button');
button.textContent = 'Randomize!';
button.style.background = 'none';
button.style.border = 'none';
button.style.color = 'rgb(252, 147, 0)';
button.style.textDecoration = 'bold';
button.style.cursor = 'pointer';
button.style.padding = '5';
button.style.fontSize = '18px';
button.style.border = '1px solid rgb(252, 147, 0)';
button.style.borderRadius = '0';
button.style.fontFamily = 'Liberation Mono';
button.addEventListener('click', randomizeList);
// Insert the button before the list element
listElement.parentNode.insertBefore(button, listElement);
// Randomize the list initially
randomizeList();
</script>

View file

@ -0,0 +1,54 @@
+++
title = "safire memo"
+++
```txt
To : H. R. Haldeman
From: Bill Safire July 18, 1969.
-----------------------------------------------------------------------
IN EVENT OF MOON DISASTER:
Fate has ordained that the men who went to the moon to
explore in peace will stay on the moon to rest in peace.
These brave men, Neil Armstrong and Edwin Aldrin, know
that there is no hope for their recovery. But they also know that there
is hope for mankind in their sacrifice.
These two men are laying down their lives in mankind's
most noble goal: the search for truth and understanding.
They will be mourned by their families and friends; they
will be mourned by their nation; they will be mourned by the people of
the world; they will be mourned by a Mother Earth that dared send two
of her sons into the unknown.
In their exploration, they stirred the people of the world to
feel as one; in their sacrifice, they bind more tightly the brotherhood
of man.
In ancient days, men looked at stars and saw their heroes in
the constellations. In modern times, we do much the same, but our heroes
are epic men of flesh and blood.
Others will follow, and surely find their way home. Man's
search will not be denied. But these men were the first, and they
will remain the foremost in our hearts.
For every human being who looks up at the moon in the
nights to come will know that there is some corner of another world
that is forever mankind.
PRIOR TO THE PRESIDENT'S STATEMENT:
The President should telephone each of the widows -to-be.
AFTER THE PRESIDENT'S STATEMENT, AT THE POINT WHEN NASA
ENDS COMMUNICATIONS WITH THE MEN:
A clergyman should adopt the same procedure as a burial at
sea, commending their souls to "the deepest of the deep," concluding
with the Lord's Prayer.
```

View file

@ -0,0 +1,10 @@
+++
title = "two hard things in Computer Science"
+++
```txt
There are only two hard things in Computer Science: cache invalidation and
naming things.
-- Phil Karlton
```

View file

@ -0,0 +1,21 @@
+++
title = "visual thinking"
+++
```txt
When I was a kid growing up in Far Rockaway, I had a friend named Bernie Walker.
We both had "labs" at home, and we would do various "experiments".
One time, we were discussing something - we must have been 11 or 12 at the time -
and I said, "But thinking is nothing but talking to yourself inside."
"Oh yeah?" Bernie said. "Do you know the crazy shape of the crankshaft in a car?”
"Yeah, what of it?"
"Good. Now tell me: how did you describe it when you were talking to yourself?"
So I learned from Bernie that thoughts can be visual as well as verbal.
-- Richard Feynman
```