jzaleta

jzaleta

0-day streak
Here’s my 100 days shopping list! :saluting_face: I couldn’t find sticky notes 😭
https://scrapbook-into-the-redwoods.s3.amazonaws.com/d883e041-e914-40f5-9c0a-bfa7fcf64b80-file.jpg
Woohoo! After some long-time procrastination, the #ship time has finally arrived! 🚢 Back in 2021, when I joined Hack Club :hack-club:, I had an idea—to create a website featuring the contents of my old iPod. However, that initial attempt didn't quite work out because I lost access to the files. But, guess what? Years later, I successfully managed to recover those old files, safely stored on an ancient hard drive, and now I'm giving it another shot! But this time, instead of making a simple static site, I used Vite.js :vite: to build github.com/jzaleta/stuff-warehouse! Give it a ⭐ on :github: if you like it! :salute:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/f036e372-8ca7-4396-ac83-3bf21259eb5a-stuff-warehouse.png
Wahoo! Today I learned how to use :vite: and I moved my github.com/jzaleta/night-skies project to use it! It was very fun to implement ES modules and to find janky :jankman: ways to add P5.js to it. :peefest: You can check the result site at night-skies.vercel.app like last time and star it ⭐ on GitHub if you want :) I still need to find a way to properly add meta tags so my index.html isn't very big but anyways this was nice to hack on.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/3598f7df-58be-4521-a0fe-d2d1c6699a75-screenshot_2023-07-13_at_18.29.10.png
I’m finally on Bluesky, it’s been nice so far.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/89a5eb18-b0f2-494c-b459-e29dbefad166-img_0386.jpg
noscrappy emoji
summer-of-making emoji
https://scrapbook-into-the-redwoods.s3.amazonaws.com/a9fae087-0985-4c29-9009-0b95791a35b8-captura_de_pantalla_2023-06-15_a_la_s__16.03.53.png
Mini #movie-nights! 🪐
https://scrapbook-into-the-redwoods.s3.amazonaws.com/25da48e8-1ef2-4f4b-ae40-6b980fe5340a-captura_de_pantalla_2023-05-26_a_la_s__23.15.28.png
I finally finished my confetti thing for #angelhacks-site! :angelhacks: github.com/hackclub/angelhacks3/pull/8 :pr: This is my first time working with Next.js :nextjs: and I wanted to see if I could code something with it without reading any docs! *How?* • Well, first I had an error, I couldn't start the dev environment! :pensive-wobble: To fix this I (somehow) installed next globally and that allowed my package.json :npm: to run next build • After that, I wrote the confetti code and implement it on a React :react: component but I also don't know any react so it didn't work :eggsdee: • So I added the confetti code into the already existing PhotoGallery component! :yay: Everything looked good, but then I got this error: ReferenceError: document is not defined :errors: • To fix that, I run my code client side after watching a small tutorial and it ended up like this:
import Masonry from 'react-masonry-css'
import styles from './PhotoGallery.module.scss'
import { Nunito } from 'next/font/google'
import { useEffect } from 'react'

const nunito = Nunito({
  weight: ['400', '800'],
  subsets: ['latin']
})

export function Button({ children, fontSize = '7rem', ...props }) {
  const handleClick = () => {
    import('js-confetti').then(({ default: Confetti }) => {
      const confetti = new Confetti()
      confetti.addConfetti({
        emojis: ['🎮', '👾', '🕹️', '💻', '📸', '🎧', '🎨', '🪽']
      })
    })
  }

  return (
    <button className={styles.button} onClick={handleClick} {...props}>
      <span className={styles.shadow} />
      <span className={styles.edge} />
      <span
        style={{ fontSize }}
        className={`${styles.front} ${nunito.className}`}>
        {children}
      </span>
    </button>
  )
}

function Image({ src, text }) {
  return (
    <div className={styles.photo}>
      <img src={src} width="auto" />
      <p>{text}</p>
    </div>
  )
}

export default function PhotoGallery() {
  useEffect(() => {}, [])
  return (
    <div className={styles.photoGallery}>
      <div className={styles.photos}>
This was very fun to work with, and definitely I need to properly learn Next.js on the future. :salute:
Trying to work on Next.js without reading any docs before be like:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/9d407ebe-b4ac-4f66-8b2c-29f7ce9088fe-captura_de_pantalla_2023-05-20_a_la_s__21.32.14.png
Wahoo! During this days I made a new repo for my GitHub :github: readme and deployed a website with it using Jekyll! javier.is-a.dev You can find the repo at my main profile: github.com/jzaleta/jzaleta :ultrafastparrot:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/21b08397-6a42-4b7d-b5c2-813a2d0549ff-captura_de_pantalla_2023-05-20_a_la_s__16.01.21.png
https://scrapbook-into-the-redwoods.s3.amazonaws.com/330f36b3-a841-499d-8360-8f0adf82822a-img_9572.jpg
scrappy-retry emoji
https://scrapbook-into-the-redwoods.s3.amazonaws.com/14fa2ed2-5111-4a5f-b74e-baa973131c42-img_9692.jpg
I added new details to my README like an awesome banner :cooll-thumbs:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/59bc8d72-3b0e-4af2-8bd2-05d8844131ef-captura_de_pantalla_2023-05-15_a_la_s__22.04.59.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/1ea08a0d-4b2d-40c3-b4bf-b3cfdb81a503-captura_de_pantalla_2023-05-15_a_la_s__22.04.32.png
I added new details to my README like an awesome banner :cooll-thumbs:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/bd8cf2ef-e0fb-42e0-bd8a-8c0f614adbc5-captura_de_pantalla_2023-05-15_a_la_s__22.04.59.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/be56c17a-2e9c-4bd3-914e-d948820b5305-captura_de_pantalla_2023-05-15_a_la_s__22.04.32.png
scrappy-retry emoji
spring-of-making emoji
awesome emoji
cooll-thumbs emoji
Yesterday I turned 19-years-old. 🍰 *And I decided to reboot my coding journey and start all over again with a better, more organized design, focused in building in public.* The plan is to become a full stack web developer so I'll start first with Next.js/React! :nextjs: :react:. Also I made another profile repo for my GitHub, changed my username and deployed it at a Jekyll website with Ruby! :ruby: :github: github.com/jzaleta/jzaleta jzaleta.github.io/jzaleta
https://scrapbook-into-the-redwoods.s3.amazonaws.com/d767b56e-ca19-420e-ad60-8ec1d555bf0e-captura_de_pantalla_2023-05-15_a_la_s__11.32.32.png
nextjs emoji
github emoji
react emoji
js emoji
spring-of-making emoji
https://scrapbook-into-the-redwoods.s3.amazonaws.com/c68ea2b0-461b-4ac7-bf1d-5c601672298c-frog_at_the_fungi_maze.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/dd14fcc3-21ce-4441-ba7a-dde727a2ee39-captura_de_pantalla_2023-05-13_a_la_s__18.41.01.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/42aaa1d0-ef26-41b5-8cde-244d7aab9cd6-captura_de_pantalla_2023-05-13_a_la_s__18.38.10.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/6b356247-f475-4f1c-a18d-e29de79d2f67-captura_de_pantalla_2023-05-13_a_la_s__18.40.40.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/53babe52-5984-4fad-a158-b8465a1eff23-captura_de_pantalla_2023-05-13_a_la_s__18.39.17.png
yay emoji
sprig-dino emoji
wahoo-fish emoji
https://scrapbook-into-the-redwoods.s3.amazonaws.com/896ce1c0-d669-4c87-87b6-eed075811b40-dancin.png
I started to work on a website inspired by www.dinosaurbbq.org! :dino-dance: The only thing I'm missing is the dancin dino! I'm going to do the animation with Procreate! :procreate:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/bfc9cbc3-033e-4481-83d6-0d75c539a0a7-captura_de_pantalla_2023-05-05_a_la_s__22.36.10.png
spring-of-making emoji
dino-dance emoji
dino emoji
Today I implemented OG tags for the first time!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/b5f13919-6921-47c7-8d1b-3be4ad162843-captura_de_pantalla_2023-05-01_a_la_s__23.15.30.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/4f860884-ec2b-49a5-a4fb-d69c77bdd338-captura_de_pantalla_2023-05-01_a_la_s__23.14.37.png
spacex emoji
spring-of-making emoji
*It’s a quiet night... the weather forecast says:* 🌌 Starry-sprinkled night skies with a chance of shooting stars and Lo-fi beats. You say to yourself, wait, that can’t be possible, right? Definitely possible! I present y'all my new ship: night-skies.vercel.app 🚢 :quad_parrot: Night skies github.com/j-cordz/night-skies is a small p5.js :js: website that includes a starry night sky and random shooting stars and some lo-fi beats! 🎵 Please give it a ⭐ on :github: if you like it! This was very fun to work on, and helped me to learn more about p5js.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/1d7be104-7d40-41c7-9029-5110e6b3fcfd-captura_de_pantalla_2023-04-30_a_la_s__10.37.24.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/e8d39d58-f6d2-4051-8c71-81e76d4711ec-captura_de_pantalla_2023-04-30_a_la_s__10.37.09.png
https://scrapbook-into-the-redwoods.s3.amazonaws.com/250250c5-979c-4e4b-b479-b8465b94cfca-captura_de_pantalla_2023-04-28_a_la_s__21.57.35.png
https://scrapbook-into-the-redwoods.s3.amazonaws.com/f865e131-3ca1-4fcb-9f02-e47da7324ca5-img_9156.jpg
spring-of-making emoji
https://scrapbook-into-the-redwoods.s3.amazonaws.com/5ec43753-d37b-47f8-84a4-91e2d97e15d0-img_9166.jpg
spring-of-making emoji
:js:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/08d95bd9-f614-4fbf-996c-0489982944c0-captura_de_pantalla_2023-04-24_a_la_s__22.53.47.png
spring-of-making emoji
js emoji
Testing my WWDC Swift app on my iPad! :swiftui:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/b69e0e0c-07f1-4e09-94c6-df5e17ccb22e-7831c588-e3ec-4d2f-afde-66daa0766f24.jpeg
swift emoji
Second sprig game update! All the levels are completed! Now I need to make some tunes and music 🎼
https://scrapbook-into-the-redwoods.s3.amazonaws.com/54162657-a82f-463b-81df-8e103f02c1e0-captura_de_pantalla_2023-04-23_a_la_s__14.48.09.png
sprig-dino emoji
:vercel:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/165466ef-a614-4480-aa34-e8bce1481279-captura_de_pantalla_2023-04-22_a_la_s__23.52.28.png
It’s time to start my Sprig game! :sprig-dino: First game update: I read the workshop and the docs on how to get started, designed the gameplay ideas and started to worked on the code! I have ready the player's moment! 🐸 Next thing I'll do is work on the energy system.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/2c4647d7-fe6f-42ed-b45e-7e3c9f3b8430-captura_de_pantalla_2023-04-22_a_la_s__20.13.24.png
Another obligatory swift student developer challenge post!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/2288f4e9-eb2b-4b6c-b4c5-448c79496dd5-captura_de_pantalla_2023-04-19_a_la_s__20.08.05.png
swift emoji
spring-of-making emoji
https://scrapbook-into-the-redwoods.s3.amazonaws.com/4f3c5af5-4b33-4695-8c5f-1e5a87667ea5-img_9075.jpg
https://scrapbook-into-the-redwoods.s3.amazonaws.com/21c490e1-07c9-40f5-a339-693acbaf4aed-captura_de_pantalla_2023-04-15_a_la_s__23.56.57.png
Reading fish shell docs again!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/202c2e5c-ab51-4f4a-8345-87f246632edb-captura_de_pantalla_2023-04-14_a_la_s__23.13.08.png
👀
https://scrapbook-into-the-redwoods.s3.amazonaws.com/7b22272b-b0f5-4cc3-a6ab-41d1f5cca555-captura_de_pantalla_2023-04-13_a_la_s__23.12.07.png
🎨
https://scrapbook-into-the-redwoods.s3.amazonaws.com/b660d29b-4b56-49a7-85c8-56632899217e-captura_de_pantalla_2023-04-12_a_la_s__22.39.26.png
:swiftui:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/06ec40fb-7313-4ae7-a007-8e5f75fa235c-captura_de_pantalla_2023-04-11_a_la_s__22.51.25.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/2309843b-3220-43b7-a196-df0fbd2662d4-captura_de_pantalla_2023-04-11_a_la_s__22.51.06.png
swift emoji
spring-of-making emoji
#burrow! This is an awesome project! Maybe I'll learn Rust to help with it one day! :rust: I wasn't able to stay the full call but I'm definitely joining again next time. Also I read a bit on SineRider's code, I'll try to get back at working on the translations as soon as possible.
https://scrapbook-into-the-redwoods.s3.amazonaws.com/7314903d-6d77-4958-8c0f-cdb6d070e2a2-captura_de_pantalla_2023-04-10_a_la_s__19.33.53.pnghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/47654753-561a-4801-aeec-5d9649b41144-captura_de_pantalla_2023-04-10_a_la_s__19.12.57.png
rustlang emoji
awesome emoji
spring-of-making emoji
goose-honk-technologist emoji
:swift: :swiftui:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/26d0c39f-2dde-4636-adb7-0bdbefde97fd-captura_de_pantalla_2023-04-09_a_la_s__19.38.11.png
swift emoji
I took this picture last week on the airport! ✈️
https://scrapbook-into-the-redwoods.s3.amazonaws.com/61ba40a3-ba18-4d55-94b9-8c70935f6c8b-img_8893.jpg
doge emoji
spring-of-making emoji
https://scrapbook-into-the-redwoods.s3.amazonaws.com/55710346-24c1-468b-bdda-07e1ce2f612c-img_8891.jpg
spring-of-making emoji
Reading SwiftUI docs! :swiftui:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/3adffce3-1fa8-4726-8202-f6a77a873480-img_8971.jpghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/bea1208e-6bd7-4e97-acfb-258803e47f9b-img_8972.jpg
swift emoji
swiftui emoji
Today I created my bookshelf.website account to share my book recs with people! I’ll probably try to find a way to self host something like this. Also I learned a bit more about SwiftUI so probably tomorrow I’ll be able to start putting together my app for the student challenge! :swiftui:
https://scrapbook-into-the-redwoods.s3.amazonaws.com/c3c92800-7328-4757-9f4a-55430fed5d1e-img_8970.jpg
👀
https://scrapbook-into-the-redwoods.s3.amazonaws.com/c42e9f1e-7ac3-4548-a8e1-e13a2a9b7085-img_8957.jpg
Learning how a SwiftUI :swiftui: app works!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/f1bbeabf-a8b2-464f-ba08-5ca9d5650a1c-captura_de_pantalla_2023-04-03_a_la_s__19.21.15.png
swiftui emoji
📷
https://scrapbook-into-the-redwoods.s3.amazonaws.com/02818e35-0f8e-486f-8ba0-451afbb2df44-img_8939.jpghttps://scrapbook-into-the-redwoods.s3.amazonaws.com/eacd0c01-ac7b-4231-b3e3-138add0b25d0-img_8940.jpg
It’s finally spring break! Today I finished and #shipped my pfp app and also I’m going to be participating at the swift student challenge!
https://scrapbook-into-the-redwoods.s3.amazonaws.com/6e21177e-a7a5-4a51-8ccc-a06cb4cb4965-img_8931.jpg
swift emoji
My streak got reset yesterday! I’m going to take some time off Slack and stop posting things on here, been a bit busy with college so I haven’t been very active! I’ll be back on the future!
https://cloud-r6nhpnmul-hack-club-bot.vercel.app/0img_8709.jpg
wom emoji
Tomorrow I'll give a small talk at my anatomy class about the olfactory bulb! 🧠 I haven't shared a lot of updates recently but maybe I'll get some coding things done and my sprig game during the spring break in 2 weeks!
https://cloud-bwwi3txwv-hack-club-bot.vercel.app/0captura_de_pantalla_2023-03-16_a_la_s__22.47.44.png
wom emoji
https://cloud-q8l19hrnc-hack-club-bot.vercel.app/0img_8687.jpg
wom emoji
https://cloud-681w5pc65-hack-club-bot.vercel.app/0img_8686.jpg
wom emoji
woah-dino emoji
gn! :music:
https://cloud-bvnhzfmqa-hack-club-bot.vercel.app/0img_8691.jpg
wom emoji
music emoji
party-dinosaur emoji
https://cloud-7b2px79vw-hack-club-bot.vercel.app/0img_8655.jpg
wom emoji
Good night! :sleepy-dino:
https://cloud-8kk99h15e-hack-club-bot.vercel.app/0img_8665.jpg
I started to read the Sprig workshop to learn how to make games with it! :sprig-dino:
https://cloud-ny745yant-hack-club-bot.vercel.app/0captura_de_pantalla_2023-03-10_a_la_s__22.14.22.png
I should make a sprig game! Tomorrow I’ll start working on a game for sprig!
https://cloud-jva02wm5e-hack-club-bot.vercel.app/0img_8644.jpg
wom emoji
sprig-dino emoji
I’m going to be using Excalidraw for a small video I’ll make for a class. There’s not a lot of coding progress on anything today, but finished all of my exams!
https://cloud-hmpf0rusc-hack-club-bot.vercel.app/0img_8640.jpg
https://cloud-j42wg1m2g-hack-club-bot.vercel.app/0img_8615.jpghttps://cloud-nznlx8ta3-hack-club-bot.vercel.app/0img_8617.jpg
wom emoji
https://cloud-805rirmko-hack-club-bot.vercel.app/07919186c-feab-4313-be12-25a790d8c92e.jpg
wom emoji
Today I just did a lot of homework, so here's a picture of my scrapbook profile. :scrappy:
https://cloud-3wfz6o7ck-hack-club-bot.vercel.app/0captura_de_pantalla_2023-03-05_a_la_s__23.57.20.png
wom emoji
https://cloud-pn2g1gp9m-hack-club-bot.vercel.app/0img_8592.jpg
wom emoji
I finished Project Hail Mary a long time ago but I forgot to mention it in here! 🛸 It was an amazing book, and I'll make sure to write a review of it soon.
https://cloud-coh6ff0ih-hack-club-bot.vercel.app/0img_8585.png
wom emoji
It’s been a while since the last time I was able to write some text on a scrapbook post! I almost finish my midterm exams so I’m going to have a bit more time to code and do other things, meanwhile here’s another tissue image.
https://cloud-olexoqhki-hack-club-bot.vercel.app/03e4f63e2-f587-4f8f-b21b-93310a34de33.jpg
wom emoji
https://cloud-llct046nu-hack-club-bot.vercel.app/0img_9154.jpg
wom emoji
I almost finish my midterm exams! Today I also studied a bit of python. :python:
https://cloud-e01h4cfv2-hack-club-bot.vercel.app/0captura_de_pantalla_2023-02-28_a_la_s__23.27.03.png
wom emoji
https://cloud-jhoc1yk6j-hack-club-bot.vercel.app/0img_8523.jpghttps://cloud-hbmtie0iw-hack-club-bot.vercel.app/0img_8522.jpg
wom emoji
I'm going to start taking BWSI Python course! :python: But first I need to find a way to install it, there's a lot of different ways
https://cloud-bs4jd52ql-hack-club-bot.vercel.app/0python_environment.pnghttps://cloud-gkavgkwxa-hack-club-bot.vercel.app/0captura_de_pantalla_2023-02-26_a_la_s__23.22.00.png
wom emoji
https://cloud-khz0g7n0k-hack-club-bot.vercel.app/0img_8512.jpg
wom emoji
Here’s a small text description after not adding them for a while on my Scrapbook. Today I had my third exam of the semester, reason why I’ve been very busy! But still I managed to made some progress to my pfp app, I edited the JavaScript file to add local images although I have to fix a few details in there.
https://cloud-apledgtnr-hack-club-bot.vercel.app/0img_8451.jpg
wom emoji
https://cloud-pb1c38am2-hack-club-bot.vercel.app/0img_8487.jpg
wom emoji
https://cloud-4d81pnjqr-hack-club-bot.vercel.app/0captura_de_pantalla_2023-02-22_a_la_s__23.02.13.png
wom emoji
Yesterday I forgot to update my scrapbook post description, but my Homebrew :homebrew-mac: PR got merged and I've been trying to make a new function for my pfp app! Here's another tissue sample from the microscope. 🔬
https://cloud-fdapabcat-hack-club-bot.vercel.app/0img_8471.jpg
wom emoji
https://cloud-mjvb66nqe-hack-club-bot.vercel.app/0captura_de_pantalla_2023-02-20_a_la_s__22.40.13.pnghttps://cloud-8yoexs0ac-hack-club-bot.vercel.app/0captura_de_pantalla_2023-02-20_a_la_s__22.41.08.png
wom emoji
https://cloud-crnglzyc9-hack-club-bot.vercel.app/0captura_de_pantalla_2023-02-19_a_la_s__22.18.53.png
wom emoji
Today I made a PR :pr: to Homebrew :homebrew-mac: to update a few things in the Spanish version of the site! Let's see how it goes! :roo-yay:
https://cloud-i4gmo9sqg-hack-club-bot.vercel.app/0screen_shot_2023-02-18_at_22.14.49.png
wom emoji
yay emoji
pr emoji
homebrew-mac emoji
Today I started working on a PR for Homebrew! :homebrew-mac: It's going to take a while because GitHub is currently down and I can't open it, but probably tomorrow it will work. :roo-yay:
https://cloud-lf6avudg7-hack-club-bot.vercel.app/0screen_shot_2023-02-17_at_22.25.07.pnghttps://cloud-h16dz9om4-hack-club-bot.vercel.app/0screen_shot_2023-02-17_at_22.25.29.png
wom emoji
github emoji
Here's another microscopic image! This time is Kidney tissue. 🔬 :60fps-parrot:
https://cloud-g7w9nnp27-hack-club-bot.vercel.app/0705652d8-b33f-4de9-82ef-443f464632af.jpg
wom emoji
Here's an cerebellum histological cut! 🔬 I haven't code because of school but tomorrow I'll try to make something! :roo-yay:
https://cloud-ez7ollksr-hack-club-bot.vercel.app/0f1dd6c3d-fe73-429b-8c21-235abaf07572.jpg
wom emoji
https://cloud-it4rbmzon-hack-club-bot.vercel.app/0img_8343.jpg
https://cloud-r9szy9nko-hack-club-bot.vercel.app/0screen_shot_2023-02-13_at_22.56.27.png
wom emoji
Today I updated the image file in the hackclub/global repo to use the main Assemble picture! Also I did the last commit to my Splatter Paint project and published my first github release, with this finished, I definitely need to start something new. :roo-yay:
https://cloud-331bfaohn-hack-club-bot.vercel.app/0screen_shot_2023-02-12_at_21.46.59.pnghttps://cloud-2te01riu3-hack-club-bot.vercel.app/0screen_shot_2023-02-12_at_21.53.50.png
https://cloud-2oiejq374-hack-club-bot.vercel.app/0img_8101.jpg
wom emoji
THE AMA WAS AMAZING! I'm so glad to have joined it and been part of the moderation team, thanks a lot @maggie and @Lucas for hosting this! :david-malan-pog: :cs50-duck:
https://cloud-q97bgs3y7-hack-club-bot.vercel.app/0screen_shot_2023-02-10_at_19.25.45.png
https://cloud-57yoel88x-hack-club-bot.vercel.app/0img_8094.jpg
wom emoji
:sunset-vermont: 📷
https://cloud-988gk47s0-hack-club-bot.vercel.app/0img_20221124_175817.jpg
wom emoji
Here are more pictures of the trip I made several days ago! 🌴 📷
https://cloud-apafjmn6s-hack-club-bot.vercel.app/0img_8233.jpghttps://cloud-enpwzf2o6-hack-club-bot.vercel.app/0img_8226.jpghttps://cloud-gq3xrz65d-hack-club-bot.vercel.app/0img_8225.jpghttps://cloud-e695fyxc3-hack-club-bot.vercel.app/0img_8227.jpg
wom emoji
Today I did a lot of homework so there's nothing else to mention right now, tomorrow I''l try to have more things. Here's a picture I took a while ago. 📷
https://cloud-f2b389mbw-hack-club-bot.vercel.app/0cdb8d71d-8ef5-402c-b2d2-df712e2f6346_1_105_c.jpeg
wom emoji
Today I worked to improve scrapbook's streaks.js file! I added a new media query and update a few things. 💻 :javascript:
https://cloud-poa1psjp8-hack-club-bot.vercel.app/0screen_shot_2023-02-05_at_22.27.23.pnghttps://cloud-etwvz4jdd-hack-club-bot.vercel.app/0screen_shot_2023-02-05_at_21.34.45.pnghttps://cloud-byfh91ned-hack-club-bot.vercel.app/0screen_shot_2023-02-05_at_22.27.43.png
wom emoji
Today I went for a walk and took this pictures! 🌴 📷
https://cloud-jm2u7fla5-hack-club-bot.vercel.app/0img_8221.jpghttps://cloud-ondqwdl64-hack-club-bot.vercel.app/0img_8216.jpghttps://cloud-aifd8apcq-hack-club-bot.vercel.app/0img_8206.jpghttps://cloud-p8rzcax9v-hack-club-bot.vercel.app/0img_8211.jpghttps://cloud-owalcomhz-hack-club-bot.vercel.app/0img_8209.jpghttps://cloud-k2owbyqq8-hack-club-bot.vercel.app/0img_8204.jpghttps://cloud-b1n8vzwf2-hack-club-bot.vercel.app/0img_8210.jpg
wom emoji
I'm currently writing a small index page for my pfp rotator project! Also my GitHub issue of the other day got answered and now there’s an issue with my BWSI account I need to fix because I can’t login to work on the courses.:sadge:
https://cloud-l0wlpaov8-hack-club-bot.vercel.app/0screen_shot_2023-02-03_at_21.37.54.png
wom emoji
github emoji
My pfp app is finally working! I fixed the issues with axios and the serverless deployment now works! :vercel:
https://cloud-fx4z9n5ko-hack-club-bot.vercel.app/0screen_shot_2023-02-02_at_21.46.56.pnghttps://cloud-7ynl8kvnt-hack-club-bot.vercel.app/0screen_shot_2023-02-02_at_21.46.32.png
wom emoji
:mit: 🦫 Today I deployed the first version of my pfp app but it's not working because of an error with axios and my package.json file, I'm checking the logs and will try to fix it! Also I'm going to be taking BWSI!
https://cloud-l7rplmv92-hack-club-bot.vercel.app/0screen_shot_2023-02-01_at_22.31.25.pnghttps://cloud-qq4wcoc4i-hack-club-bot.vercel.app/0screen_shot_2023-02-01_at_22.32.15.png
beaver emoji
wom emoji
📖 Reading some things about microscopes! 🔬
https://cloud-l7vx0hgs1-hack-club-bot.vercel.app/0screen_shot_2023-01-31_at_22.24.26.png
wom emoji
Found a small error in iOS GitHub app! Currently trying to find a way to report it.
https://cloud-kvawme3u3-hack-club-bot.vercel.app/0img_8153.jpghttps://cloud-kybbaxn1g-hack-club-bot.vercel.app/0img_8152.jpg
wom emoji
Trying Sprig :sprig-dino: games on my smartphone! 📱
https://cloud-7f0vt3mqf-hack-club-bot.vercel.app/0img_8138.jpg
wom emoji
sprig-dino emoji
Today I did a small trip to Pátzcuaro lake and took some pictures!
https://cloud-g46c857eb-hack-club-bot.vercel.app/0img_8096.jpghttps://cloud-hbzctqrct-hack-club-bot.vercel.app/0img_8086.jpghttps://cloud-ccs3pjw6z-hack-club-bot.vercel.app/0img_8101.jpghttps://cloud-9teugmhot-hack-club-bot.vercel.app/0img_8085.jpg
wom emoji
Today I watched Avatar The Way of Water and read some things about Vite! Yesterday I learned about Babel.js compiler but forgot to update the text on my #scrapbook post. And speaking of Vite :vite: I'll make sure to use it on future projects.
https://cloud-oo1fjnt1e-hack-club-bot.vercel.app/0img_8073.jpghttps://cloud-77dhp9t9i-hack-club-bot.vercel.app/0screen_shot_2023-01-27_at_22.33.59.png
js emoji
wom emoji
vite emoji
:javascript:
https://cloud-2cns8l4ab-hack-club-bot.vercel.app/0screen_shot_2023-01-26_at_22.19.35.pnghttps://cloud-8c505wwh0-hack-club-bot.vercel.app/0grassland-robot.pnghttps://cloud-qc5dysa1w-hack-club-bot.vercel.app/0screen_shot_2023-01-26_at_22.23.32.png
js emoji
wom emoji
Reading some things for histology class!
https://cloud-6jv315cz3-hack-club-bot.vercel.app/0screen_shot_2023-01-25_at_22.49.38.png
wom emoji
I plan to start taking CS50 to learn programming! I going to start this next weekend and work a bit on those days to mix it with med school! I'm also going to be taking BWSI again to finish more courses than the last I did it in 2021. 🦫
https://cloud-h1x08sc7k-hack-club-bot.vercel.app/008e2c2b2-6cbc-45d4-858e-4d16b4762113.jpeg
wom emoji
cat_typing emoji
Today I started classes again. t's the start of my second semester in medical school, so let's see how things go! I also need to find a more organized way to learn programming and here's the local temperature at the moment.
https://cloud-oi1gy6fhp-hack-club-bot.vercel.app/0img_20221013_191227.jpghttps://cloud-ixdd5ne1l-hack-club-bot.vercel.app/0img_8035.png
wom emoji
https://cloud-26c4gv7lm-hack-club-bot.vercel.app/0img_7981.jpghttps://cloud-nmp8e4gdy-hack-club-bot.vercel.app/0img_7982.jpghttps://cloud-pswuycvf1-hack-club-bot.vercel.app/0img_7987.jpg
wom emoji
Today I'm traveling again! 🚗 🎫 I won't be able to work on projects, also here's a ticket @sahitid made! :burst:
https://cloud-8ftrpm7dx-hack-club-bot.vercel.app/0ticket.png
Today I selected the Dalle-2 images I'll use for the profile picture workshop! I generated them with the app some time ago. I also finished a V1 version of the code, but it stopped working because some errors on the package.json file :npm: . Also I made my own .gitignore file for this project!
https://cloud-l6y7d1002-hack-club-bot.vercel.app/0exploration-cabin.pnghttps://cloud-2y2fpa3kn-hack-club-bot.vercel.app/0forest-astronaut.pnghttps://cloud-ez9snnzl2-hack-club-bot.vercel.app/0grassland-robot.png
Almost finished! :roo-yay: I'm having some errors with axios and the /api endpoint, but I'll try to get everything fixed tomorrow.
https://cloud-78od968e0-hack-club-bot.vercel.app/0screen_shot_2023-01-19_at_23.26.43.png
wom emoji
yay emoji
Today I started playing The last of us! :playstation: And finished most of my dotfiles which I'll manage with YADM! I said I was going to do this a long time ago but I didn't knew git at that time. 💻
https://cloud-n0ves5mrd-hack-club-bot.vercel.app/0screen_shot_2023-01-18_at_22.07.51.pnghttps://cloud-ekla1dj3m-hack-club-bot.vercel.app/0screen_shot_2023-01-18_at_22.09.08.png
wom emoji
test
https://cloud-hre2conwj-hack-club-bot.vercel.app/0burst.png
https://cloud-j8s8x49bs-hack-club-bot.vercel.app/0screen_shot_2023-01-17_at_21.59.43.png
wom emoji
Today I finished the Git-it! workshop to learn how to use git on the command line!
https://cloud-duwsi6ud4-hack-club-bot.vercel.app/0screen_shot_2023-01-17_at_21.59.43.png
wom emoji
https://cloud-86jpcyifg-hack-club-bot.vercel.app/0screen_shot_2023-01-17_at_21.59.43.png
Today I started to read Project Hail Mary and it's awesome! I need some book recs to read after I finish this one, also I worked a bit on organizing my dotfiles and on the workshop to manage my slack pfp.
https://cloud-npefd49gj-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-16_a_la_s__22.30.08.png
I'm going to be putting my vscode :vsc: theme on a hiatus while I learn how to properly implement the syntax highlight system, tomorrow I plan to start working on a new workshop related to my slack pfp to automate the changes and installed Fig! :fig2: The autocomplete function is amazing! I think I'm going to stay with zsh + fig instead of trying fish again. 🐟
https://cloud-8ip3myhbr-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-15_a_la_s__22.16.15.pnghttps://cloud-hbdguo721-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-15_a_la_s__22.15.57.png
wom emoji
I finally add more colors to my vscode theme! Now I'm ready to work on the syntax highlighting! :vsc: :burst:
https://cloud-dq6hwmeer-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-14_a_la_s__22.42.22.pnghttps://cloud-kjpwwptem-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-14_a_la_s__22.42.46.png
vsc emoji
wom emoji
:burst: More research for my vscode theme! I need a good background color. :sadge: Now I'm looking at solarized and rosé-pine for ideas, most likely I'll go with a dark gruvbox like color.
https://cloud-nxmduxbm5-hack-club-bot.vercel.app/0image.pnghttps://cloud-psi9kzzyz-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-13_a_la_s__22.17.39.png
Doing more research for making my vscode theme! :burst: :vsc:
https://cloud-6yg3131ux-hack-club-bot.vercel.app/0image.pnghttps://cloud-bfx4unyuc-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-12_a_la_s__23.24.32.pnghttps://cloud-btr9hh25y-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-12_a_la_s__23.23.02.pnghttps://cloud-8xlj48o4a-hack-club-bot.vercel.app/0image.png
Today I started to remake a workshop repo I did and learned more on how to make a vscode theme! Also here's my macbook uptime.
https://cloud-ewofreu7e-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-11_a_la_s__22.14.30.pnghttps://cloud-dunhmtfaa-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-11_a_la_s__22.12.36.png
wom emoji
macbook-air-space-gray-screen emoji
vsc emoji
Learned about gitub.dev and made my first PR :pr: to Sinerider! :sinerider:
https://cloud-j36fbmv2i-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-10_a_la_s__12.26.00.png
pr emoji
wom emoji
vsc emoji
sinerider emoji
github emoji
ultrafastparrot emoji
I'm going to be making a Slack bot with Bolt! 🤖 Also I learned how to make a VScode theme :vscode: , I was planning to start this first, but I need to think on the colors I'll use so I'll work on the bot first. :salute:
https://cloud-cge62nqw7-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-09_a_la_s__20.52.09.pnghttps://cloud-in4b8zupt-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-09_a_la_s__20.53.30.png
Today I learned a bit more on how npm :npm: works, made a small test site with Astro :astro: to understand deployment and changed my VScode theme to Vitesse! :vsc:
https://cloud-dx4ws4x97-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-08_a_la_s__22.15.07.png
goose-honk-technologist emoji
npm emoji
wom emoji
vsc emoji
Today I worked on some things at home, and planned a few things for my website. :tw_spider_web: Now I'm going to start looking for a good color scheme to use and design a new scrapbook CSS theme! :scrappy: 🎨
https://cloud-jkgajcs23-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-07_a_la_s__23.43.49.png
wom emoji
Today I finished my CSS layout so I'll add to my Astro file! Also learned how Astro.props works.
https://cloud-i7ykqfdgo-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-06_a_la_s__22.02.44.png
wom emoji
astro emoji
Once again I'm designing my personal website, and I'm currently going to start the V3 (internal) that probably will become the open-source (and public) V1! I have new custom HTML and CSS files that I'll add into my Astro files :astro: and I'll also use a new font besides my usual Space Grotesk! So let's see how this works. :thinking:
https://cloud-nfzbw7ipc-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-05_a_la_s__22.09.04.pnghttps://cloud-42qnvm6uf-hack-club-bot.vercel.app/01280px-eb_garamond.png
Today I made my first PR :pr: of the year! And added some things to my Holopin board. Tomorrow I'll work on a new project! 💻
https://cloud-7e60bqmtm-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-04_a_la_s__23.59.25.pnghttps://cloud-cdnyr171m-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-04_a_la_s__23.59.04.png
wom emoji
github emoji
Setting up Astro :astro: again! Also I fixed a 404 error on my scrapbook page.
https://cloud-mfliw75ud-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-03_a_la_s__19.33.48.png
wom emoji
Day 2 of 2023-of-learning! Today I'm setting up my starship prompt! I learned more how to work with .toml files!
https://cloud-hbor95tgl-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-02_a_la_s__21.45.07.pnghttps://cloud-i8v62zy19-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-02_a_la_s__21.45.32.png
Today is finally 2023! :tw_tada: This year I plan to learn and make a lot of things, so I'm starting the year with learning CLI things! First I'll learn fish shell 🐟 and then move to FINALLY setting up my dotfiles. 🗃️
https://cloud-7rn73vw14-hack-club-bot.vercel.app/0captura_de_pantalla_2023-01-01_a_la_s__23.56.20.png
wom emoji
wahoo-fish emoji
Happy new year! It's almost 2023 in here, and I look forward for this next year that is starting soon. I plan to do a lot of different things and I'm happy to be here at Hack Club :hack-club: one more year. This year was very interesting, I finished high school, I started college and had a great time. Here's a picture of the current time. 🕐
https://cloud-djdzqjxk9-hack-club-bot.vercel.app/0screenshot_20221231_212240.jpg
wom emoji
Today is December 30th so the year is almost over! Here's my 2022 GitHub Unwrapped! There's a lot of missing commits and other weird things but still is very cool! On 2023 I plan to follow a better guide for learning web dev correctly! Maybe I'll try to keep my freecodecamp and hack club workshops path!
goose-honk-technologist emoji
hackclub emoji
cooll-dino emoji
github emoji
wom emoji
Today I made some gists on GitHub to save some code snippets and studied some school things. Tomorrow I plan to start drawing pixel art again! Here's a picture I took a while ago, and finally I got my 7 days streak again! :fireball: :scrappy:
https://cloud-j8v4xhh6o-hack-club-bot.vercel.app/0img_20221212_142508.jpg
wom emoji
Today I finally add the option to export the canvas as a svg file on my Splatter Paint project! I think it's almost finished after all this time, next thing I'm doing with it it's fixing the code formatting, add a Replit badge to the readme and the Spanish translation, I also learned today about Replit bounties and draw again!
https://cloud-1gkphwgu1-hack-club-bot.vercel.app/0screenshot_20221228_234646.jpghttps://cloud-iyep05rgf-hack-club-bot.vercel.app/0screenshot_20221228_234438.jpg
Today I continued drawing again in Procreate like yesterday, and I found this awesome drawing online while searching for some idea of things to make! I plan to write a guide on how to get better. :procreate: I also started playing Uncharted 4 :playstation: and read some things!
https://cloud-m5j3friah-hack-club-bot.vercel.app/0img_20221227_235713.jpg
wom emoji
🌳 I made this tree drawing with Procreate! :procreate:
https://cloud-olbaywrcr-hack-club-bot.vercel.app/0ilustracio__n_sin_ti__tulo.jpg
Merry Christmas! I've been playing Monument valley again and it's a very nice game.
https://cloud-4nkgufium-hack-club-bot.vercel.app/0monument.jpg
https://cloud-lp7fyb32a-hack-club-bot.vercel.app/0427bb36b-a01b-4f0f-89d7-080d5d1ddb36_1_105_c.jpeg
wom emoji
Finished my Github metrics setup, learned a bit about cron jobs and started to work on my guide of things to learn and do on 2023! :tw_tada: 💻
https://cloud-c9244spxc-hack-club-bot.vercel.app/0captura_de_pantalla_2022-12-23_a_la_s__19.41.21.png
wom emoji
github emoji
I'm back at #scrapbook! :hack-club: :fireball: I plan to (try at least) post daily on 2023 but I decided to start some days earlier! :scrappy: Today I setup a special repo for my GitHub metrics to avoid having all the action commits on my readme profile repository so I put the link of the generated svg file on my profile so this could work.
https://cloud-f0tt4zkmw-hack-club-bot.vercel.app/0captura_de_pantalla_2022-12-22_a_la_s__22.17.01.pnghttps://cloud-8j9x466js-hack-club-bot.vercel.app/0captura_de_pantalla_2022-12-22_a_la_s__13.31.38.png
wom emoji
github emoji
I said I was not going back at posting things on my scrapbook :hack-club: but I'm back with the #1 day of #10-days-in-public! :10daysinpublic: I'm going to be trying to get better at drawing on my iPad and finishing my last final exams for this first semester of Med School that is ending! 🧪 Here's an image of a frog I colored in Procreate! :procreate: 🐸 Hope to keep the streak again! :salute:
https://cloud-7pxmh3hb7-hack-club-bot.vercel.app/0ilustracio__n_sin_ti__tulo.png
Today my #scrapbook ended! :sadge: :fireball: After 418 days my streak has officially come to an end! This morning I got the painful message from @scrappy-U015D6A36AG that I forgot to post last night. I completely meant to but it slipped my mind for the first time since I joined Hack Club :hack-club:, I had a lot of homework and projects so I couldn't post anything on time. That being said, although it was cool to keep it until this day, this is the last post I will do to my scrapbook and thanks to everyone who followed along for 418 days! ⚡
https://cloud-c2uz1f1xb-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-17_a_la_s__11.19.55.png
https://cloud-97fx5k09n-hack-club-bot.vercel.app/0img_20221029_121123.jpg
Studying for an embryology presentation at school!
https://cloud-kxhuaekou-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-14_a_la_s__23.55.04.png
https://cloud-fk0vv9pkp-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-13_a_la_s__14.48.03.pnghttps://cloud-c8ert2t9o-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-13_a_la_s__14.47.35.pnghttps://cloud-4s4ox90d0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-13_a_la_s__14.48.14.png
Setup my #hkgi account! :hacksprit: :cyl_crystal: This is such a cool game! :hack-club:
https://cloud-4f33uatx3-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-12_a_la_s__21.36.41.pnghttps://cloud-dk0spwgj6-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-12_a_la_s__21.36.19.png
I went to the cinema with some friends to watch black panther! Here's a very blurry picture I took!
https://cloud-1k8xk2fx7-hack-club-bot.vercel.app/0img-20221111-wa0026.jpeg
https://cloud-f3liidit5-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-10_a_la_s__22.28.45.png
Doing some biochem homework!
https://cloud-evs852e2l-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-09_a_la_s__23.55.33.png
https://cloud-k7985ozs6-hack-club-bot.vercel.app/0img_20221029_125800.jpghttps://cloud-ed8uw7icu-hack-club-bot.vercel.app/0img_20221029_125813.jpg
https://cloud-ef379ke9t-hack-club-bot.vercel.app/0img-20221029-wa0011.jpg
this-tbh emoji
Learning how to use Halftone Shaders!
https://cloud-9yadoo2rq-hack-club-bot.vercel.app/0fish.png
I'm going to be replaying Abzu on my PS5! :playstation: 🐟 Also I'll try to get back at game dev with Js soon! :javascript:
https://cloud-b5h89t7ld-hack-club-bot.vercel.app/091xw-o3dhpl._ac_sl1500_.jpg
https://cloud-kwgmgkh6t-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-04_a_la_s__20.40.26.png
Simple suture practice tomorrow! 🥼
https://cloud-uerchrmii-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-03_a_la_s__22.16.59.png
https://cloud-639qqls22-hack-club-bot.vercel.app/0captura_de_pantalla_2022-11-02_a_la_s__23.47.17.png
Today is November 1! Besides school, I didn't made a lot of things, but I've been thinking on finishing my #scrapbook streak. :sadge: :hack-club: Here's some more Dalle Pictures I did with the AI! 🤖
https://cloud-ivj5oimr0-hack-club-bot.vercel.app/0dall__e_2022-11-01_20.48.56_-_oil_painting_of_a_cozy_wooden_house_in_the_suburbs_of_a_futuristic_city__on_their_backyard_there_are_a_lot_different_trees_like_palms_and_pines__rocks.pnghttps://cloud-1br2yqpm9-hack-club-bot.vercel.app/0dall__e_2022-11-01_20.48.59_-_oil_painting_of_a_cozy_wooden_house_in_the_suburbs_of_a_futuristic_mountain_city__on_their_backyard_there_are_a_lot_different_trees_like_palms_and_pin.pnghttps://cloud-q71ofpmm5-hack-club-bot.vercel.app/0dall__e_2022-11-01_20.49.01_-_oil_painting_of_a_cozy_wooden_house_in_the_suburbs_of_a_futuristic_mountain_city__on_their_backyard_there_are_a_lot_different_trees_like_palms_and_pin.pnghttps://cloud-eahlbko8b-hack-club-bot.vercel.app/0dall__e_2022-11-01_20.48.36_-_detailed_oil_painting_of_a_man_riding_his_bicycle_in_a_field_of_tall_grass_at_night__while_looking_through_a_telescope_at_the_starry_night_above_him__.png
Today besides a lot of school things I did some more Dalle Pictures! Promptober :bank-pumpkin: 🤖 has ended, so from now on I will only have the monthly credits plus the ones left over from the event.
https://cloud-14ovp8kri-hack-club-bot.vercel.app/0dall__e_2022-10-31_22.13.25_-_detailed_oil_painting_of_the_view_of_a_park_with_plants_and_trees_in_a_modern_city_at_night_with_a_telescopic_platform__you_can_see_the_lamps_that_ill.pnghttps://cloud-numpt2qww-hack-club-bot.vercel.app/0dall__e_2022-10-31_22.14.03.pnghttps://cloud-dzr2ja5pn-hack-club-bot.vercel.app/0dall__e_2022-10-31_22.13.32_-_detailed_oil_painting_of_the_view_of_a_park_with_plants_and_trees_in_a_modern_city_at_night__you_can_see_the_lamps_illuminating_the_street__the_tall_b.pnghttps://cloud-pjqbjsgys-hack-club-bot.vercel.app/0dall__e_2022-10-31_22.13.09_-_detailed_oil_painting_of_a_man_riding_his_bicycle_in_a_field_of_tall_grass_at_night__while_looking_through_a_telescope_at_the_starry_night_above_him__.png
Today I finished Hacktoberfest!:hacktoberfest: :tw_tada: :hacktoberfest-2022: I decided to go with the plant a tree 🌳 option instead of the t-shirt!
https://cloud-5f66vxum1-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-30_a_la_s__10.18.13.pnghttps://cloud-lqdb90f8y-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-30_a_la_s__10.07.09.png
Today I went to the zoo with some friends!
https://cloud-o8cu7vf4h-hack-club-bot.vercel.app/0f9c12946779d4283b8e5ff639c3e67fb.jpghttps://cloud-cnmk0p9co-hack-club-bot.vercel.app/0img-20221029-wa0021.jpghttps://cloud-igznqf5p7-hack-club-bot.vercel.app/0img_20221029_132205.jpghttps://cloud-m85gacxpm-hack-club-bot.vercel.app/0img_20221029_132319.jpghttps://cloud-j1z7gk239-hack-club-bot.vercel.app/0img-20221029-wa0011.jpg
After 399 days my streak has officially come to the first place with the 400th day today! :tw_tada: :fireball: :parrotdad: I started last year just as something to do when I joined Hack Club :hack-club: but it have become a great way to keep small updates of the things I've been working on and learning. So for today, besides celebrating this, I finished my code and add more documentation updates for github.com/javierzaleta/splatter-paint (please consider starring iton GitHub!) and made a piano website with another workshop 🎹 that I'll share soon besides a JavaScript :javascript: music visualizer. Also, I just need to wait one more day for my last Hacktoberfest PR :hacktoberfest-2022: to be accepted and sadly I missed Sal Khan's AMA. :sadge: :khan-academy:
https://cloud-mndsepvem-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-28_a_la_s__21.43.42.pnghttps://cloud-37440oezr-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-28_a_la_s__21.45.02.png
With this post, I have a 399 days streak! :fireball: Tomorrow I'll beat the number one record! Here's a picture of my streak before the post. :tw_tada: :parrotdad: Also, I need to make a GH issue about Scrappy's issues. :scrappy-retro:
https://cloud-8tk9db3ph-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-27_a_la_s__22.05.24.png
I finally finished all of my second midterm exams! Here's a screenshot of Harrison's Principles of Internal Medicine book! 📚
https://cloud-lhto0q9nc-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-26_a_la_s__23.32.54.png
https://cloud-g84a18ynq-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-25_a_la_s__22.05.21.pnghttps://cloud-i4a7x91fr-hack-club-bot.vercel.app/0dall__e_2022-10-25_22.06.13_-_detailed_oil_painting_portrait_of_a_person_reading_a_book_while_sitting_on_a_armchair_inside_of_a_cozy_wooden_space_cabin_moving_towards_an_unxeplored.pnghttps://cloud-kp9ykvrx7-hack-club-bot.vercel.app/0dall__e_2022-10-25_22.05.44_-_detailed_oil_painting_of_a_civilization_of_otters_living_inside_wooden_cabins_inside_subaquatic_tunnels_underground__around_them_there_are_a_lot_of_se.pnghttps://cloud-4tw5b0uy6-hack-club-bot.vercel.app/0dall__e_2022-10-25_22.06.23_-_detailed_oil_painting_portrait_of_a_person_reading_a_book_while_sitting_on_a_armchair_inside_of_a_cozy_wooden_space_cabin__there_a_lot_of_bookshelfs__.png
https://cloud-6a515pdmb-hack-club-bot.vercel.app/0dall__e_2022-10-24_20.20.21_-_detailed_oil_painting_art_of_a_shiba_inu_with_a_chef_hat_baking_a_cheesecake_inside_a_cozy_and_local_bakery__behind_him_there_is_a_table_with_lots_of_.png
Today I worked to add more things to Splatter Paint! I added a GitHub-corner :github:, updated a bit the script and redesign the README! You can check it out at: github.com/javierzaleta/splatter-paint. ⭐ Also my last PR for Hacktoberfest :hacktoberfest-2022: is in review so I will be able to finish the challenge! :tw_tada: :parrotdad:
https://cloud-2ma23oa0b-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-23_a_la_s__20.56.59.pnghttps://cloud-743uskb9w-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-23_a_la_s__20.58.08.pnghttps://cloud-a6krx6m07-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-23_a_la_s__20.57.49.png
:google: :hacktoberfest-2022:
https://cloud-k25zv5x4t-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-22_a_la_s__22.37.23.pnghttps://cloud-dgmfn7qzm-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-22_a_la_s__23.04.14.png
google emoji
hacktoberfest emoji
hacktoberfest-2022 emoji
🤖
https://cloud-kiztzicg6-hack-club-bot.vercel.app/0dall__e_2022-10-21_21.30.59_-_detailed_oil_painting_of_a_hobbit_hole_colony_among_the_roots_of_a_large_tree_on_a_tall_grass_hill__the_sky_is_blue_and_filled_with_clouds_and_the_sun.pnghttps://cloud-frv6prdtd-hack-club-bot.vercel.app/0dall__e_2022-10-21_21.31.21_-_detailed_oil_painting_portrait_of_a_man_and_a_robot_sitting_on_a_tall_grass_hill_next_to_his_bike_looking_with_his_telescope_at_the_starry_night_with_.pnghttps://cloud-cm9ljlsrh-hack-club-bot.vercel.app/0dall__e_2022-10-21_21.31.07_-_detailed_oil_painting_portrait_of_a_bear_making_a_latte_inside_a_redwood_forest_coffee_shop_and_bookstore_while_reading_an_instruction_manual__in_the_.pnghttps://cloud-m92h24kxm-hack-club-bot.vercel.app/0dall__e_2022-10-21_21.30.44_-_detailed_oil_painting_drawing_of_a_t-rex_holding_a_bowl_of_nachos_while_looking_at_a_giant_asteroid_impacting_on_a_mountain_behind_it_and_forms_a_bit_.pnghttps://cloud-h9lbncwy0-hack-club-bot.vercel.app/0dall__e_2022-10-20_10.28.19_-_detailed_oil_painting_made_by_van_gogh_of_an_extraterrestrial_space_station_floating_inside_a_nebula_on_the_universe..png
Added my Hacktoberfest :hacktoberfest: Holopin badges to my GitHub :github: profile! I have one merged PR :merge: and other two waiting for approval, they will get accepted in a few hours. :quad_parrot:
https://cloud-m41s4hmjr-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-21_a_la_s__21.27.49.pnghttps://cloud-jwnfcyr49-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-21_a_la_s__21.28.07.png
github emoji
pr emoji
hacktoberfest emoji
yay emoji
Biochem exam tomorrow! I'm going to be studying everything I've seen during this months! 🧪 :thumbs-up-head-empty:
https://cloud-7hojnqed8-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-19_a_la_s__22.22.08.png
https://cloud-66wrvrnn4-hack-club-bot.vercel.app/0dall__e_2022-10-18_23.27.59_-_detailed_oil_painting_of_a_red_fishing_boat_with_various_advanced_tools_and_a_large_lamp_on_which_a_sailor_in_a_diving_suit_with_a_backpack_and_binocu.pnghttps://cloud-p7h3gq2gt-hack-club-bot.vercel.app/0dall__e_2022-10-18_23.27.49_-_detailed_oil_painting_of_a_toad-like_vehicle_sailing_from_the_swampy_waters_of_the_mangrove_shoreline_into_the_luminous_depths_of_the_lamp-kelp_forest.pnghttps://cloud-61bz3czcr-hack-club-bot.vercel.app/0dall__e_2022-10-18_23.28.01_-_detailed_oil_painting_of_a_red_fishing_boat_with_various_advanced_tools_and_a_large_lamp_on_which_a_sailor_in_a_diving_suit_with_a_backpack_and_binocu.png
Today I had my first exam of my second block of midterm exams! :quad_parrot:
https://cloud-1maksh4aq-hack-club-bot.vercel.app/0dall__e_2022-10-17_22.25.01_-_oil_painting_portrait_of_a_man_with_an_umbrella_sitting_on_a_chair_looking_through_the_window_at_the_heavy_rain_of_octopi_and_fishes_instead_of_water_.pnghttps://cloud-ays9fk7du-hack-club-bot.vercel.app/0dall__e_2022-10-17_22.25.18_-_detailed_oil_painting_portrait_by_frederic_edwin_church_of_a_man_in_an_acient_diving_suit_sitting_on_a_bench_at_the_bottom_of_the_sea_next_to_luminesc.pnghttps://cloud-czonj0wqa-hack-club-bot.vercel.app/0dall__e_2022-10-17_22.25.14_-_detailed_oil_painting_portrait_by_frederic_edwin_church_of_a_man_in_an_acient_diving_suit_sitting_on_a_bench_at_the_bottom_of_the_sea_next_to_luminesc.pnghttps://cloud-3gff9thx8-hack-club-bot.vercel.app/0dall__e_2022-10-17_22.25.07_-_detailed_oil_portrait_of_a_man_in_a_diving_suit_sitting_on_a_bench_at_the_bottom_of_the_sea_next_to_luminescent_algae_while_reading_an_interesting_adv.png
Today I did a i18n translation to Spanish of Quartz! 🪴
https://cloud-lzo0pvhql-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-16_a_la_s__22.38.39.pnghttps://cloud-da1o17uoq-hack-club-bot.vercel.app/0dall__e_2022-10-16_12.23.05_-_detailed_oil_painting_of_a_person_wearing_a_knitted_sweater__a_backpack_and_a_hat_sitting_on_a_chair_drinking_chocolate_inside_a_library_with_book_she.pnghttps://cloud-o58zjpxrv-hack-club-bot.vercel.app/0dall__e_2022-10-16_12.22.59_-_detailed_oil_painting_of_a_person_wearing_a_knitted_sweater__a_backpack_and_a_hat_sitting_on_a_chair_drinking_chocolate_inside_a_library_with_book_she.pnghttps://cloud-ay8kcu2pd-hack-club-bot.vercel.app/0dall__e_2022-10-16_12.22.55_-_detailed_oil_painting_portrait_of_an_explorer_with_a_big_backpack__a_fire_sword__a_pointed_hat_with_a_feather_traveling_through_planets_and_universes_.pnghttps://cloud-hj0oxxiit-hack-club-bot.vercel.app/0dall__e_2022-10-16_12.22.24_-_detailed_oil_painting_portrait_of_an_explorer_with_a_big_backpack__a_fire_sword__a_pointed_hat_with_a_feather_traveling_through_planets_and_universes_.png
I did a new PR :pr: for #some-assembly-required! :someassemblyrequired: Also my stickers are on their way! 📦 Tomorrow I'll work on my PR to add Spanish to Quartz! 🪴 :obsidian-md:
https://cloud-n1nua55yc-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-15_a_la_s__22.41.37.pnghttps://cloud-pusndloqb-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-15_a_la_s__22.44.12.png
obsidian-md emoji
pr emoji
someassemblyrequired emoji
Day 10/10 of #10-days-in-public! :tw_tada: This was the last project day, and even when I didn't finished my Astro :astro: website, I learned and made a lot of new things and had a lot of fun. Next thing I will be working on is adding a Spanish i18n to Quartz! :obsidian-md: 🪴
https://cloud-gud86o7e4-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-14_a_la_s__23.27.25.pnghttps://cloud-qo0si9p4k-hack-club-bot.vercel.app/0dall__e_2022-10-14_18.27.47_-_oil_painting_of_an_alien_hand_holding_a_glass_sphere_in_which_the_universe_can_be_seen_reflected__in_the_style_of_hand_with_mirror_by_maurits_cornelis.pnghttps://cloud-5ngrnc3bo-hack-club-bot.vercel.app/0dall__e_2022-10-14_22.18.27_-_oil_painting_of_an_alien_hand_holding_a_glass_sphere_in_which_the_universe_can_be_seen_reflected__in_the_style_of_hand_with_mirror_by_maurits_cornelis.pnghttps://cloud-h5ub4wmqo-hack-club-bot.vercel.app/0dall__e_2022-10-14_14.05.25_-_a_large_tree_house_built_on_the_only_giant_tree_with_van_gogh_s_almond_blossoms_and_with_large_warm_hanging_lamps_with_vines_in_a_frozen_arctic_enviro.pnghttps://cloud-oydu5vwtc-hack-club-bot.vercel.app/0dall__e_2022-10-14_22.16.20_-_oil_painting_of_an_alien_hand_holding_a_glass_sphere_in_which_the_universe_can_be_seen_reflected__in_the_style_of_hand_with_mirror_by_maurits_cornelis.png
Day 9 out of 10 of #10-days-in-public! It's almost done! Today I'm working on an oxidative phosphorylation, talked about bio things with @Ishan and did more AI Dall-E 2 pictures!
https://cloud-bvt6abacu-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-13_a_la_s__23.42.48.pnghttps://cloud-e7hh3zsz1-hack-club-bot.vercel.app/0dall__e_2022-10-13_23.43.27_-_oil_painting_of_a_cube_jumping_through_obstacles_with_a_flying_spaceship_in_the_form_of_a_capybara..pnghttps://cloud-fejld5msx-hack-club-bot.vercel.app/0dall__e_2022-10-13_23.43.38_-_detailed_oil_painting_portrait_of_a_toad_with_a_fungus_hat_inside_a_vegetable_library_inside_an_underground_tree__making_important_decisions__around_h.pnghttps://cloud-991yk8r3x-hack-club-bot.vercel.app/0dall__e_2022-10-13_23.43.42_-_detailed_oil_painting_of_an_advanced_submarine_exploring_an_underwater_civilization_in_the_depths_of_the_ocean__its_lights_illuminate_the_seabed_and_a.png
Day 8?/10 of #10-days-in-public! Yesterday I could't edit my post with my Dalle picture to share what I did because I had a lot of homework, so I'l sharing it now: Yesterday I learned more about some custom CSS functions that use div's! And today my #some-assembly-required PR got merged and I did a new one for #scrapbook! :fireball: :scrappy-retro:
https://cloud-r52l9nk1d-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-12_a_la_s__23.05.43.pnghttps://cloud-qwdn2jvgj-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-12_a_la_s__22.35.43.png
scrappy emoji
https://cloud-akxi0b34c-hack-club-bot.vercel.app/0img-20221011.jpg
Day 6 of #10-days-in-public! I didn't code because I have a lot of homework and an anatomy test tomorrow, so here's an AI picture! :cooll-dino: 🪐
https://cloud-jiu366tyw-hack-club-bot.vercel.app/0dall__e_2022-10-10_20.14.16_-_detailed_oil_painting_of_a_futuristic_city_with_tall_buildings_built_on_top_of_a_giant_hollow_ancient_tree__in_the_roots_you_can_see_a_small_rural_tow.png
Day 5/10 of #10-days-in-public! Today I got a bit away from Astro. :astro: I can't get to solve the issue I'm having and I did a lot of homework so I made a small HTML :html: and CSS :css: galley with some local pictures I took! 📷
https://cloud-e30dxje7j-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-09_a_la_s__23.50.28.png
Day 4/10 of #10-days-in-public! I learned better how Astro :astro: and HTML self closing tags work, so I created my Header.astro and Footer.astro components! But there's a weird bug 🐛 :sadge: so I'll watch a tutorial to learn what's going on. Also I started #some-assembly-required Spanish translation! :github: :pullrequest: :mexicoparrot:
https://cloud-k53hhon3w-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-08_a_la_s__22.17.13.png
Day 3/10 of #10-days-in-public! Today I installed my local Astro files and started to edit my website! Also I did some debugging 🐛 to fix errors! Lastly, more AI pictures for my Sci-Fi book!
https://cloud-meaevnr2k-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-07_a_la_s__20.17.41.pnghttps://cloud-q0h6utpf2-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-07_a_la_s__20.20.12.pnghttps://cloud-6v1ldpc6f-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-07_a_la_s__22.49.24.pnghttps://cloud-fotszy41z-hack-club-bot.vercel.app/0dall__e_2022-10-07_13.42.27_-_oil_painting_of_a_detailed_personal_room_inside_a_spaceship__in_the_room_there_are_many_shelves__books_and_other_scientific_things__the_planets_and_th.pnghttps://cloud-o6axjgb7g-hack-club-bot.vercel.app/0dall__e_2022-10-07_15.59.49_-_a_detailed_oil_painting_of_a_wooden_exploration_cabin_over_a_mountain__where_a_modern_astronaut_is_watching_with_a_big_telescope_the_background_that_i.pnghttps://cloud-gws1caa4h-hack-club-bot.vercel.app/0dall__e_2022-10-07_15.59.43_-_a_detailed_oil_painting_of_a_wooden_exploration_cabin_over_a_mountain__where_a_modern_astronaut_is_watching_with_a_big_telescope_the_background_that_i.pnghttps://cloud-ex6e214jh-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-07_a_la_s__20.18.55.png
Day 2/10 of #10-days-in-public! Today I got to understand better the use of Astro layouts, components and Scoped Styles! :astro: (Also I learned how to implement a 404 :errors: page). Thanks to this I'm ready to make a local version of my website in vscode! :vsc: Also today I made new Dalle pictures that I shared on my previous post. :tw_tada:
https://cloud-lk3i4n58h-hack-club-bot.vercel.app/0screenshot_20221006_235556.jpg
https://cloud-1t22k12bg-hack-club-bot.vercel.app/0dall__e_2022-10-06_22.49.41_-_oil_painting_of_an_astronaut_sitting_in_a_bench_on_a_park_with_his_playful_fox__looking_at_the_sunset_view_of_a_lake_with_fishes_and_an_autumn_forest_.pnghttps://cloud-8ac0pir8h-hack-club-bot.vercel.app/0dall__e_2022-10-06_22.49.32_-_oil_painting_of_a_personal_room_inside_a_submarine__in_the_room_there_are_many_books_and_science_things__in_the_window_you_can_see_the_depths_of_the_o.pnghttps://cloud-5gfgu9wfr-hack-club-bot.vercel.app/0dall__e_2022-10-06_22.49.18_-_oil_painting_of_a_personal_room_inside_a_spaceship__in_the_room_there_are_many_books_and_science_things__planets_can_be_seen_in_the_window..pnghttps://cloud-gk7w2ak0i-hack-club-bot.vercel.app/0dall__e_2022-10-06_22.49.36_-_oil_painting_of_a_personal_room_inside_a_submarine__in_the_room_there_are_many_books_and_science_things__in_the_window_you_can_see_the_depths_of_the_o.pnghttps://cloud-cacx50d2p-hack-club-bot.vercel.app/0dall__e_2022-10-06_22.49.23_-_oil_painting_of_a_personal_room_inside_a_spaceship__in_the_room_there_are_many_books_and_science_things__planets_can_be_seen_in_the_window..pnghttps://cloud-kcbpsh704-hack-club-bot.vercel.app/0dall__e_2022-10-06_22.49.47_-_oil_painting_of_an_astronaut_sitting_in_a_bench_on_a_park_with_his_playful_fox__looking_at_the_sunset_view_of_a_lake_with_fishes_and_an_autumn_forest_.pnghttps://cloud-lds2d3dkk-hack-club-bot.vercel.app/0dall__e_2022-10-06_22.49.27_-_oil_painting_of_a_personal_room_inside_a_submarine__in_the_room_there_are_many_books_and_science_things__in_the_window_you_can_see_the_depths_of_the_o.png
First day of #10-days-in-public! For this event I'm going to finally learn how to use Astro :astro: and build my personal website. :tw_spider_web: So for this, first I decided what I wanted to have: I'm going to be using HTML, CSS and Markdown next to Astro files to make it! After that, I started to understand how does Astro routing works: Basically I have src/* for my code files and public/* for non code things, besides this I'll use a package.json manifest and an Astro config file astro.config.mjs. Here's a screenshot of my vscode with my Astro files learning the project structure and some cool Dalle pictures I made as well! :quad_parrot:
https://cloud-imyn0iud7-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-05_a_la_s__22.41.52.pnghttps://cloud-iyfklanx9-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-05_a_la_s__22.41.21.pnghttps://cloud-7o6qpyv4t-hack-club-bot.vercel.app/0dall__e_2022-10-05_22.07.14_-_oil_painting_of_an_exploration_and_research_cabin_on_the_surface_of_a_terraformed_moon_with_lots_of_vegetation_and_trees..pnghttps://cloud-5dcsrhpx5-hack-club-bot.vercel.app/0dall__e_2022-10-05_22.07.09_-_oil_painting_of_an_exploration_and_research_cabin_on_the_surface_of_a_terraformed_moon_with_lots_of_vegetation_and_trees..png
spacedino-orpheus emoji
https://cloud-rh1z3xy7g-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-04_a_la_s__23.15.40.png
I'm working with some cell 🦠 homework, so this post will work for both October 3 and 4! Today I also did some new Sci-Fi pictures with Dall-e! 🤖
https://cloud-kzcs7tvoc-hack-club-bot.vercel.app/0dall__e_2022-10-03_13.30.58_-_oil_painting_of_a_giant_spiny_lizard_with_claws_and_a_shell_on_top_of_a_rock_in_a_distant_desert..pnghttps://cloud-jgarcq0np-hack-club-bot.vercel.app/0dall__e_2022-10-03_13.30.47_-_oil_painting_of_a_green_alien_similar_to_a_lizard_with_mantis_claws_in_a_jungle_with_vegetation_never_seen_before..png
beachball emoji
Today I did an anatomy homework, also studied and did a new GtHub profile README! :github: Also here's a new dalle picture. 🕷️
https://cloud-cp18pg7tv-hack-club-bot.vercel.app/0dall__e_2022-10-02_14.43.35_-_oil_painting_of_a_giant_spider_with_many_eyes_inside_an_ice_cavern_in_the_arctic..png
https://cloud-ignit5sag-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-01_a_la_s__21.55.13.pnghttps://cloud-9s0rknzxa-hack-club-bot.vercel.app/0captura_de_pantalla_2022-10-01_a_la_s__21.55.35.pnghttps://cloud-hujumsf6i-hack-club-bot.vercel.app/0dall__e_2022-10-01_15.35.14_-_oil_painting_of_an_advanced_solar_system_far_away_from_the_galaxy__with_planets_similar_to_earth_and_powered_by_a_dyson_sphere..pnghttps://cloud-b9uqlzw5a-hack-club-bot.vercel.app/0dall__e_2022-10-01_15.50.58_-_oil_painting_showing_the_evolution_of_plants_and_fungi_into_rational_creatures..pnghttps://cloud-418f78sul-hack-club-bot.vercel.app/0dall__e_2022-10-01_15.50.52_-_oil_painting_showing_the_evolution_of_plants_and_fungi_into_rational_creatures..pnghttps://cloud-jfnzzyps7-hack-club-bot.vercel.app/0dall__e_2022-10-01_15.39.38_-_oil_painting_showing_a_civilization_of_plants_and_fungus_hybrids._.pnghttps://cloud-4fyli69zz-hack-club-bot.vercel.app/0dall__e_2022-10-01_15.35.09_-_oil_painting_of_an_advanced_solar_system_far_away_from_the_galaxy__with_planets_similar_to_earth_and_powered_by_a_dyson_sphere..pnghttps://cloud-2hyy17bv7-hack-club-bot.vercel.app/0dall__e_2022-10-01_15.42.37_-_an_oil_painting_of_a_spaceship_from_earth_crossing_the_known_borders_of_the_universe_into_the_unknown_worlds_beyond..pnghttps://cloud-a5g4qnywx-hack-club-bot.vercel.app/0dall__e_2022-10-01_10.59.11_-_oil_painting_showing_a_civilization_of_plants_and_fungus_hybrids_with_multiple_eyes_on_their_body..png
:eyeses:
https://cloud-e9swybapo-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-30_a_la_s__22.38.34.png
I'm going to be making a website with my Dall-e creations! It's going to be for a story. 👀 🤖
https://cloud-q72nbpybp-hack-club-bot.vercel.app/0dall__e_2022-09-29_17.21.22_-_an_oil_painting_of_a_spaceship_from_earth_crossing_the_known_borders_of_the_universe_into_the_unknown_worlds_beyond..pnghttps://cloud-60p45o7ei-hack-club-bot.vercel.app/0dall__e_2022-09-29_17.21.38_-_an_oil_painting_showing_the_multiverse_and_the_links_that_form_between_the_multiple_worlds..pnghttps://cloud-42szjxsyu-hack-club-bot.vercel.app/0dall__e_2022-09-29_17.21.32_-_an_oil_painting_showing_the_multiverse_and_the_links_that_form_between_the_multiple_worlds..pnghttps://cloud-ezp0ofdk9-hack-club-bot.vercel.app/0dall__e_2022-09-29_17.34.51_-_oil_painting_illustration_showing_an_alien_dinosaurs_colony_arriving_into_earth..pnghttps://cloud-eb8dq6jka-hack-club-bot.vercel.app/0dall__e_2022-09-29_17.21.00_-_an_illustration_of_a_robot__renaissance_style__digital_art..pnghttps://cloud-fwl59gq7q-hack-club-bot.vercel.app/0dall__e_2022-09-29_17.21.11_-_oil_painting_illustration_showing_a_humans_colony_arriving_into_an_alien_world_full_of_dinosaurs..pnghttps://cloud-kkiif4y53-hack-club-bot.vercel.app/0dall__e_2022-09-29_17.45.17_-_an_oil_painting_of_dinosaurs_freely_roaming_in_a_prehistoric_world__in_the_background_there_are_many_tropical_plants__trees_and_a_desert..pnghttps://cloud-p6lxh46lv-hack-club-bot.vercel.app/0dall__e_2022-09-29_17.34.26_-_an_oil_expressive_painting_of_an_alien_octopus_playing_with_marbles__inside_the_marbles_there_are_galaxies..png
https://cloud-229g91z86-hack-club-bot.vercel.app/0dall__e_2022-09-28_21.49.01_-_a_sci-fi_cybernetic_city_flying_over_a_forest_with_the_remains_of_an_ancient_robotic_civilization__digital_art..pnghttps://cloud-6li8uypkr-hack-club-bot.vercel.app/0dall__e_2022-09-28_22.03.43_-_painting_of_a_sunset_in_a_colonial_city_with_aqueducts_in_the_style_of_van_gogh__digital_art..pnghttps://cloud-1zmouezwk-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-28_a_la_s__18.03.02.pnghttps://cloud-jcs8sx772-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-28_a_la_s__18.03.17.png
:hacktoberfest:I registered to Hacktoberfest for the first time! It's going to be awesome! :cooll-thumbs:
https://cloud-l3w8q8zmg-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-27_a_la_s__19.44.29.png
hacktoberfest emoji
awesome emoji
I installed Astro :astro: using Node.js :nodejs: and npm! :npm: This is going to be so cool to use to make my personal website! 🚀
https://cloud-3j3hu63mx-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-27_a_la_s__16.22.40.png
:astro:
https://cloud-2s683jeya-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-26_a_la_s__22.04.53.png
Wahoo! Been doing more pull requests :pr: to Hack Club! And a lot of homework :sadge:
https://cloud-jwyibqmo5-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-25_a_la_s__23.50.16.png
https://cloud-8otr62fgy-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-24_a_la_s__19.50.19.png
:pr: :tw_tada: :github:
https://cloud-2cofhiaoc-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-24_a_la_s__19.29.12.pnghttps://cloud-n3h1oyvuv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-24_a_la_s__19.29.43.pnghttps://cloud-jfq3dyxyl-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-24_a_la_s__19.36.58.pnghttps://cloud-bdhp3k2rl-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-24_a_la_s__19.36.13.png
github emoji
pr emoji
:aom:
https://cloud-3ggf1sfxn-hack-club-bot.vercel.app/0img_20220922_191735.jpg
yay emoji
https://cloud-hvhko3e2a-hack-club-bot.vercel.app/0img_20220922_191422.jpghttps://cloud-oz1lx2hr6-hack-club-bot.vercel.app/0img_20220922_191447.jpg
blob_aww emoji
summer-of-making emoji
I started to move my e-books to apple books! 📚
https://cloud-kkdbvs2r9-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-21_a_la_s__23.06.22.png
This is how my desktop is looking, also Slack :slack: inside Arc! :arc: Today also I had a very cool biochemistry lab practice
https://cloud-bk4vgwbam-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-20_a_la_s__22.40.11.png
summer-of-making emoji
slack emoji
arc emoji
There's not a lot of updates today! I've been doing great on my exams and I keep exploring Arc! :arc: Yesterday as well I did another PR :pr: but it's still unreviewed. :github:
https://cloud-eia0439id-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-19_a_la_s__22.20.56.png
I setup Arc Browser! And downloaded some of their badges!
https://cloud-czchq7ai0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-18_a_la_s__21.54.52.pnghttps://cloud-9ym66b7cl-hack-club-bot.vercel.app/0javier_zaleta_arc7.pnghttps://cloud-bukd6mh6j-hack-club-bot.vercel.app/0javier_zaleta_arc4.pnghttps://cloud-cvu9ocg93-hack-club-bot.vercel.app/0javier_zaleta_arc5.png
arc emoji
summer-of-making emoji
Deployed :vercel: another Hack Club :hack-club: workshop! This was very interesting to work on.
https://cloud-he04kwp3k-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-17_a_la_s__20.08.36.png
goose-honk-technologist emoji
hackclub emoji
vercel emoji
https://cloud-r5iiavcds-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-16_a_la_s__22.30.29.png
summer-of-making emoji
Wahoo! I got access to the Arc Browser! 🌐 I’m looking forward to try it!
https://cloud-hsvfa4sc0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-15_a_la_s__22.44.33.png
https://cloud-ek45m60ve-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-14_a_la_s__22.06.34.png
https://cloud-182nqerlm-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-13_a_la_s__23.37.39.png
summer-of-making emoji
I had my exams today, and everything went great! I have another one tomorrow so here's some old cell pictures. Also I almost get my 365 days streak.
https://cloud-6n511s9x3-hack-club-bot.vercel.app/0img-20220831-wa0010.jpghttps://cloud-qy0mqp9c7-hack-club-bot.vercel.app/0img_20220906_210637.jpg
summer-of-making emoji
So… I already shared this image on a previous scrapbook post but I’m having a test tomorrow so I needed an image to post! 🦠 I’ll have more updates about Astro soon. :astro:
https://cloud-jpyt5njj6-hack-club-bot.vercel.app/0img-20220907-wa0013.jpg
summer-of-making emoji
:astro: I might learn Astro to build my website!
https://cloud-b23il42ty-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-10_a_la_s__21.54.58.pnghttps://cloud-9pxqqdtsa-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-10_a_la_s__21.54.46.png
astro emoji
summer-of-making emoji
https://cloud-nd6i4s4jr-hack-club-bot.vercel.app/0img-20220831-wa0010.jpg
beachball emoji
summer-of-making emoji
🚀
https://cloud-1a3edo6xl-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-08_a_la_s__22.41.36.png
summer-of-making emoji
🦠
https://cloud-dtgt1djd8-hack-club-bot.vercel.app/0img-20220907-wa0013.jpg
summer-of-making emoji
https://cloud-ht4hf82ls-hack-club-bot.vercel.app/0img_20220906_210639.jpg
https://cloud-1h6muhrdd-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-05_a_la_s__22.42.34.png
summer-of-making emoji
🤖
https://cloud-bor71xxwo-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-04_a_la_s__22.48.29.png
summer-of-making emoji
copilot-github emoji
Doing more anatomy homework, I’ll try to have a coding update after my exams finish this following weeks. :quad_parrot:
https://cloud-3ppwn84t2-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-03_a_la_s__23.21.00.png
summer-of-making emoji
Studying for my anatomy exam! 🦴 🥼
https://cloud-exkh4mmku-hack-club-bot.vercel.app/0captura_de_pantalla_2022-09-02_a_la_s__23.23.39.png
summer-of-making emoji
Stable Difussion!
https://cloud-7xu58wu01-hack-club-bot.vercel.app/0unknown-3.pnghttps://cloud-iuodkoaqu-hack-club-bot.vercel.app/0unknown-4.pnghttps://cloud-1ibr8i3kz-hack-club-bot.vercel.app/0unknown.pnghttps://cloud-ik4w7doal-hack-club-bot.vercel.app/0unknown-2.png
summer-of-making emoji
I still haven’t registered for Dall-E beta, but now there’s a new tool! What I have done is learning how to use Stable Difussion!
https://cloud-1qxcpu106-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-31_a_la_s__23.27.27.png
summer-of-making emoji
I took this pictures today, besides school things there’s anything additional for today post. 📸
https://cloud-hv1yqr33k-hack-club-bot.vercel.app/0img_20220830_202120.jpghttps://cloud-ivhygfyc1-hack-club-bot.vercel.app/0screenshot_20220830_232425.jpg
summer-of-making emoji
Doing Biochemistry homework! Here’s a book cover. 🧪
https://cloud-3fi7dkg23-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-29_a_la_s__21.52.51.png
summer-of-making emoji
Setting up a WebGL animation as my macbook background! It’s awesome! :macbook-air-space-gray-screen: :cooll-dino:
summer-of-making emoji
Currently finishing another surgery homework! I have to practice next Monday. 🥼 So here’s an image of the book I’m using:
https://cloud-fedgyg7oj-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-27_a_la_s__23.01.58.png
Reading the paper about how Dall-E works! 🤖
https://cloud-9xnbgu2iy-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-26_a_la_s__22.45.56.png
summer-of-making emoji
Experimenting with Dall-E 2! It’s so fast, I haven’t been accepted to the beta so this images were made by a friend. 🤖
https://cloud-lqcimek5j-hack-club-bot.vercel.app/02022-08-24_at_6.14.07_pm-2.jpeghttps://cloud-h1qzbbpmc-hack-club-bot.vercel.app/02022-08-24_at_6.14.07_pm.jpeg
summer-of-making emoji
Reading an article for school! 🧬
https://cloud-dhqgoenw0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-24_a_la_s__22.18.24.png
summer-of-making emoji
Here’s some pictures I took from the environment around the college and from a bone. ⛰️
https://cloud-3zbd66odw-hack-club-bot.vercel.app/0img_20220822_165817.jpghttps://cloud-6avsq795e-hack-club-bot.vercel.app/0img_20220822_170324.jpghttps://cloud-6kun6whyh-hack-club-bot.vercel.app/0img_20220822_165846.jpghttps://cloud-aozspyhle-hack-club-bot.vercel.app/0img_20220823_182855.jpghttps://cloud-od9ro8jdv-hack-club-bot.vercel.app/0img_20220822_165735.jpg
summer-of-making emoji
Making an updated version of my P5.js Music Visualizer! :js: 🎹
https://cloud-31myj4qak-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-22_a_la_s__22.39.48.png
I translated Sprig :sprig-dino: docs into Spanish! This helped me as well to understand better how the engine works. :pr: :gamelab:
https://cloud-cgy8jikdm-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-21_a_la_s__21.54.44.png
Wahoo! Here’s some images of my terminal because I did a lot of homework so there aren’t images of anything else. The theme is TokyoNight. :tw_tokyo_tower: 🌔
https://cloud-qyhf9lw68-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-20_a_la_s__21.25.38.pnghttps://cloud-gubt7dnrq-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-20_a_la_s__21.24.11.png
summer-of-making emoji
I’m going to be translating Sprig:sprig-dino: docs to Spanish! Also I did a PR to update the readme and add some cool things :D :pr: Also got a GitHub error. :errors: :github:
https://cloud-p32jecio9-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-19_a_la_s__22.13.07.pnghttps://cloud-2ieapd6nu-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-19_a_la_s__22.13.41.png
pr emoji
summer-of-making emoji
sprig-dino emoji
upvote emoji
I’m going to sign in for Dall-E beta! 🤖 Also here’s my desktop again: :macbook-air-space-gray-screen:
https://cloud-e4liwuxrh-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-18_a_la_s__23.30.24.pnghttps://cloud-fozpzpk7o-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-18_a_la_s__23.29.14.pnghttps://cloud-jb5sqt9rc-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-18_a_la_s__23.32.06.png
summer-of-making emoji
Today I did a lot of Medicine 🥼 homework in the afternoon, so there aren’t any photos to share today, instead here’s a macOS wallpaper! :macintosh-stcicker:
https://cloud-2i8fjni71-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-17_a_la_s__23.21.29.png
yay emoji
summer-of-making emoji
Today I’m reading about cell aging 🦠 for a Medicine project, and I’ll be using “Lifespan - Why we age and why we don’t have to” , thanks @clairebookworm for some help for other reccs! Also I’m building a Biology/Neuroscience/Medicine Wordle. :wordle: 🧪
https://cloud-imglcep6x-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-16_a_la_s__23.45.37.png
summer-of-making emoji
Wahoo! For more open-source code! :pr: :parrotdad:
https://cloud-pc9b2lo8l-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-15_a_la_s__22.12.17.png
summer-of-making emoji
pr emoji
wahoo-fish emoji
Today I had a bit of free time so I wrote some things for the web dev guide 🌐 and a translation guide for workshops! :merge: :quad_parrot:
https://cloud-b5l6scrvw-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-14_a_la_s__21.49.14.pnghttps://cloud-7osa40klu-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-14_a_la_s__21.48.20.png
summer-of-making emoji
pr emoji
I went to walk and took some pictures! 🌲 📷
https://cloud-qeos8gx8h-hack-club-bot.vercel.app/0img_20220813_180813.jpghttps://cloud-bjvt2rnq0-hack-club-bot.vercel.app/0img_20220813_181357.jpghttps://cloud-f7irloobq-hack-club-bot.vercel.app/0img_20220813_180740.jpghttps://cloud-ctbd8doub-hack-club-bot.vercel.app/0img_20220813_181407.jpghttps://cloud-pniwcxoic-hack-club-bot.vercel.app/0img_20220813_182242.jpghttps://cloud-f53zy422j-hack-club-bot.vercel.app/0img_20220813_180802.jpghttps://cloud-5kq1nx156-hack-club-bot.vercel.app/0img_20220813_180744.jpghttps://cloud-el16czfvq-hack-club-bot.vercel.app/0img_20220813_180736.jpghttps://cloud-5ngnr590y-hack-club-bot.vercel.app/0img_20220813_181231.jpghttps://cloud-rnkwrx7hq-hack-club-bot.vercel.app/0img_20220813_180729.jpg
summer-of-making emoji
I added more things to my macbook :macbook-air-space-gray-screen: setup, changed some icons and finished to setup brew and mas! :homebrew-mac: :ruby: Here’s a screenshot 📸 of how it’s looking right now.
https://cloud-jkmhosm0k-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-12_a_la_s__20.10.45.png
summer-of-making emoji
Coming back from school right now! 🥼 🧪 So here’s some pictures I took of the street. 📸 🌴
https://cloud-3lcbsn2bc-hack-club-bot.vercel.app/0img_20220811_190553.jpghttps://cloud-m6v7g84uv-hack-club-bot.vercel.app/0img_20220811_190524.jpg
summer-of-making emoji
Reading about surgery room areas for school! 🧪
https://cloud-9ij5vzwv1-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-10_a_la_s__22.24.51.png
summer-of-making emoji
Here’s some notes I took about Mitosis. 🦠
https://cloud-kzvpbjbqd-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-09_a_la_s__22.10.35.png
summer-of-making emoji
More school! 🥼 So here's an image of Obsidian:obsidian-md:docs and one of my medicine books 📚 and files. 🗃️
https://cloud-qb1rkt81j-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-08_a_la_s__21.43.31.pnghttps://cloud-8h79jpqx3-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-08_a_la_s__21.42.53.png
summer-of-making emoji
So I've been setting up more things for my dotfiles and it's going awesome! :cooll-dino: I know more things and .config files are easier to use. Also tomorrow I'm having Medicine classes again, so it's going to be week #2! :parrotdad:
https://cloud-iwd0xi0it-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-07_a_la_s__21.35.54.png
summer-of-making emoji
Learning how to properly use Git :github: at the terminal!
https://cloud-64kzwc4e7-hack-club-bot.vercel.app/0captura_de_pantalla_2022-08-06_a_la_s__20.34.51.png
summer-of-making emoji
github emoji
upvote emoji
It's raining! 🌧️ So I'm going to be setting up a website with my obsidian medicine notes! :obsidian-md:I think I'm going to be using a static website generator. Lastly I got rated limited by GitHub for a minute, no idea why that happened. :thinking:
https://cloud-llyef0uw3-hack-club-bot.vercel.app/0banner.pnghttps://cloud-3dipvz7a6-hack-club-bot.vercel.app/0img_20220803_131315_1.jpghttps://cloud-rc4bsf9cy-hack-club-bot.vercel.app/0screenshot_20220804_160008.jpghttps://cloud-qebvgmp0x-hack-club-bot.vercel.app/0img_20220805_183106.jpg
summer-of-making emoji
I took this picture while studying Biochemistry at college. The other one is a E.Coli 🦠 diagram! 🥼 :quad_parrot:
https://cloud-4jd3dnzzw-hack-club-bot.vercel.app/0e-coli.pnghttps://cloud-5lg07n47m-hack-club-bot.vercel.app/0img_20220803_111939.jpg
summer-of-making emoji
I took this images from the view I have at my college! 📷 I can see the entire city from here. :cooll-dino: ⛰️
https://cloud-hntasdgp0-hack-club-bot.vercel.app/0img_20220803_131832.jpghttps://cloud-lss7a0xs2-hack-club-bot.vercel.app/0img_20220803_131315.jpghttps://cloud-l86a7cu65-hack-club-bot.vercel.app/0img_20220803_131301.jpghttps://cloud-3in5ttte2-hack-club-bot.vercel.app/0img_20220803_131305.jpghttps://cloud-fb69nfq0z-hack-club-bot.vercel.app/0img_20220803_131819.jpghttps://cloud-2bsn7x6k8-hack-club-bot.vercel.app/0img_20220803_131315_1.jpg
summer-of-making emoji
Wahoo! 🦒 I took this pictures today, it was another good day! Today I learned as well new things in college, medical school 🏫 🥼 is awesome! It takes a lot of time, so there aren't many other updates today. 📚
https://cloud-aaikkegyh-hack-club-bot.vercel.app/0img_20220802_201923.jpghttps://cloud-fripawz0b-hack-club-bot.vercel.app/0img_20220802_145903.jpghttps://cloud-3ksr5juom-hack-club-bot.vercel.app/0img_20220802_150605.jpg
Today was my first medicine day! It went awesome, classes are a bit difficult but very cool! 🧪 Here's two pictures I took. 📷
https://cloud-n4usdzd7k-hack-club-bot.vercel.app/0img_20220801_065111.jpghttps://cloud-fjdv49ax7-hack-club-bot.vercel.app/0img_20220801_091834.jpg
summer-of-making emoji
figma-skeleton emoji
Today is the last day I'll have this view! ⛰️ I have everything ready to move now that I'll have medicine classes at my college starting tomorrow! 🏫 🧪 It's going to be a bit difficult to keep my streak but I'll make my best! :salute:
https://cloud-h9i5r4eyk-hack-club-bot.vercel.app/0img_20220730_202031.jpghttps://cloud-b04okjr7k-hack-club-bot.vercel.app/0img_20220731_180801.jpghttps://cloud-g7q81ko9b-hack-club-bot.vercel.app/0img_20220731_180751.jpghttps://cloud-b29tbdxuc-hack-club-bot.vercel.app/0img_20220731_180756.jpg
summer-of-making emoji
Today I wrote some new pages for a Sci-fi story 🛸, there aren't many updates today because I'm going to be moving the entire of my things to move to college! 🗃️ 🚗 Here's some pictures of the mountains on the road 🛣️, they're green now because it has rained 🌧️ a lot!
https://cloud-9ojumba26-hack-club-bot.vercel.app/0img_20220730_150253.jpghttps://cloud-ap3536fc1-hack-club-bot.vercel.app/0img_20220730_150248.jpghttps://cloud-85id56m0q-hack-club-bot.vercel.app/0img_20220730_150251.jpghttps://cloud-1om1z45xq-hack-club-bot.vercel.app/0img_20220730_150315.jpghttps://cloud-585u6uskp-hack-club-bot.vercel.app/0img_20220730_150320.jpg
summer-of-making emoji
Today was my last day of the college introduction course! 🏫 :tw_tada: This means I'm having classes next week! 🧪 Here's a picture of a tree I think I already shared, one of how the sky is looking like and a long exposure picture of the highway at night! 🌃 📷 Also I'm going to be using the iPad Books app to manage and sync my e-books and PDFs files! 📖 🔖
https://cloud-esx2yrlz7-hack-club-bot.vercel.app/0img_20220726_120919.jpghttps://cloud-kxd5uao00-hack-club-bot.vercel.app/0screenshot_20220729_222306.jpghttps://cloud-5a9wxffrb-hack-club-bot.vercel.app/0img_20220729_202748.jpghttps://cloud-k3bhaip0g-hack-club-bot.vercel.app/0img_20220728_211217.jpg
So today I had another good school day, and here's two pictures I took. 🪴 ☁️ I didn't coded 💻 today but I've been setting up my new iPad! (I talked more about it in #apple). :toitle-birb: 🍎 Lastly, tomorrow I'll try to have more technical updates now that is going to be Friday! :yay:
https://cloud-miwvogngo-hack-club-bot.vercel.app/0img_20220728_093034.jpghttps://cloud-5hckiddnf-hack-club-bot.vercel.app/0img_20220728_090700.jpg
Today I had my next introductory day to college! It was great as well. I'm ready to start classes next week! :yay: :backpack: So as I mentioned yesterday, here's the description for my new Hack Club's PR! :merge: There were some differences between Scrapbook's README file and the "About" section of the website, so I edited the .mdx file which I also learned how to work with to bring back that missing info! Today I also saw some new coding things that I could use and I took this photo because it's raining. 🌧️
https://cloud-emckke5ll-hack-club-bot.vercel.app/0screenshot_20220727_221959.jpghttps://cloud-j5oro74g8-hack-club-bot.vercel.app/0screenshot_20220727_221654.jpghttps://cloud-qgaiaeqa2-hack-club-bot.vercel.app/0img_20220727_192227.jpg
Today was my second 🥈 introductory day to college! It was great and I could met more of my classmates and professors! Also I had my first 🥇 Anatomy Class of the semester and it was great and very cool! 💪 🦴 Here's a picture of the bird that is living on the tree 🌳 I showed yesterday! Today I made as well another PR to Hack Club :hack-club: :merge: but I'll talk about it tomorrow.
https://cloud-fbdho5qzu-hack-club-bot.vercel.app/0img_20220726_120919.jpghttps://cloud-6quw8bty2-hack-club-bot.vercel.app/0img_20220726_100828.jpghttps://cloud-kx6i766c9-hack-club-bot.vercel.app/0img_20220726_120924.jpg
Today was my first day of my introductory course to college! 🏫 It was great! Everything is awesome :cooll-thumbs: so far and here's two pictures I also took today. 🌴 There's a bird nest on the tree. 📸 🐦
https://cloud-q3wnmhqzc-hack-club-bot.vercel.app/0img_20220725_124829.jpghttps://cloud-fodbo76pr-hack-club-bot.vercel.app/0img_20220725_122226.jpg
summer-of-making emoji
Here's an image of how my Scrapbook :hack-club: looks like with the posts without the images, Scrappy :scrappy: is currently down. :sadge: Also this is an image of a crocodile made with Dall-E! 🤖 🐊 It's going to be my pfp now on the slack! :slack: :yay:
https://cloud-mq9xhuhsx-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-24_a_la_s__23.16.40.pnghttps://cloud-2vsbgrn9q-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-24_a_la_s__23.23.20.pnghttps://cloud-7mhu66n5b-hack-club-bot.vercel.app/0image.png
Here's some pictures of the landscape and game screenshots from Star Wars Jedi: Fallen Order! :playstation: :jediparrot: Tomorrow I'll have more updates for coding and other things! Besides this, I'm ready to start college with an introductory course this next week! 🏫
https://cloud-kok4zxr01-hack-club-bot.vercel.app/01822e540c2357-screenshoturl.jpghttps://cloud-m4hxswlgb-hack-club-bot.vercel.app/0img_20220723_162644.jpghttps://cloud-6g6z85zzi-hack-club-bot.vercel.app/01822e56609076-screenshoturl.jpghttps://cloud-a8t14ygzo-hack-club-bot.vercel.app/0img_20220723_192407.jpg
summer-of-making emoji
playstation emoji
jediparrot emoji
Here's a picture I took recently and a screenshot of my Scrapbook Streak! :fireball: I recently passed 300 days! :tw_tada: :quad_parrot: Also there's more updates to my NixOS VM! :nix: I wrote a guide with the steps I'm going to take to make it so I think everyone will work out better that the other times! I'm using an ARM ISO this time so the compatibility should be better.
https://cloud-6ft1509kd-hack-club-bot.vercel.app/0yz6ggt7m18l41.pnghttps://cloud-ldfk8vruy-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-22_a_la_s__16.17.54.pnghttps://cloud-i3llmd90v-hack-club-bot.vercel.app/0img_20220721_103944.jpg
This is the last group of images of the journey! After arriving on the airplane, I continued the trip on the road 🚗 🛣️ to be back at the city 🏙️ because as many of y'all already know I'm starting college next Monday! 🧪 I'll have more updates on different things tomorrow!
https://cloud-qw3ty701o-hack-club-bot.vercel.app/0img-20220720-wa0024.jpghttps://cloud-12hsje0hu-hack-club-bot.vercel.app/0img_20220720_185244.jpghttps://cloud-2rl5kb3ny-hack-club-bot.vercel.app/0img_20220720_203324.jpghttps://cloud-mwgiyoobo-hack-club-bot.vercel.app/0img_20220720_185420.jpghttps://cloud-4k7p0gp1g-hack-club-bot.vercel.app/0img_20220720_191800.jpghttps://cloud-60p18te43-hack-club-bot.vercel.app/0img_20220720_191807.jpghttps://cloud-5a6zol8y3-hack-club-bot.vercel.app/0img_20220720_185417.jpghttps://cloud-h6kss5ds2-hack-club-bot.vercel.app/0img_20220720_191752.jpghttps://cloud-d47d0anfk-hack-club-bot.vercel.app/0img_20220720_191805.jpg
summer-of-making emoji
Second pictures group, taken almost when I was going to land. 🛬 🛣️
https://cloud-jcmk02j9g-hack-club-bot.vercel.app/0img_20220720_161334.jpghttps://cloud-gj7078itl-hack-club-bot.vercel.app/0img_20220720_161857.jpghttps://cloud-mnzy5516z-hack-club-bot.vercel.app/0img_20220720_153056.jpghttps://cloud-g658fia26-hack-club-bot.vercel.app/0img_20220720_153146.jpghttps://cloud-imllvjg15-hack-club-bot.vercel.app/0img_20220720_161547.jpghttps://cloud-q5wt3secg-hack-club-bot.vercel.app/0img_20220720_153229.jpghttps://cloud-13kpyefzv-hack-club-bot.vercel.app/0img_20220720_153152.jpghttps://cloud-ajgjyo9oj-hack-club-bot.vercel.app/0img_20220720_161143.jpghttps://cloud-3hpozec0w-hack-club-bot.vercel.app/0img_20220720_162101.jpghttps://cloud-jdgtdr0xa-hack-club-bot.vercel.app/0img_20220720_161330.jpg
Here's the first group of photos from yesterday's flight! ✈️ ⛰️ I'm going to be sending more of this on the next posts! 📸 This are from the beginning and some minutes after the flight started! 🌎
https://cloud-li8lx40s7-hack-club-bot.vercel.app/0img_20220720_152855.jpghttps://cloud-rmsztareu-hack-club-bot.vercel.app/0img_20220720_152853.jpghttps://cloud-fv0rqbgbw-hack-club-bot.vercel.app/0img_20220720_152900.jpghttps://cloud-rdawkmgmt-hack-club-bot.vercel.app/0img_20220720_152926.jpghttps://cloud-kd17g7ckw-hack-club-bot.vercel.app/0img_20220720_152900_1.jpghttps://cloud-h0teanfke-hack-club-bot.vercel.app/0img_20220720_152905.jpghttps://cloud-mv9l2l4xg-hack-club-bot.vercel.app/0img_20220720_152950.jpghttps://cloud-8oj3t2fti-hack-club-bot.vercel.app/0img_20220720_152850.jpghttps://cloud-hf2gotq5x-hack-club-bot.vercel.app/0img_20220720_150910.jpghttps://cloud-kdrenn65e-hack-club-bot.vercel.app/0img_20220720_150925.jpg
summer-of-making emoji
Today I'm going back to the city 🌆 because I'm starting college the next week! ✈️ So this means that summer vacations are almost over! ☀️ Here's some images of my plants that I took yesterday. 🌱 :flower-toitle:
https://cloud-a58heolqe-hack-club-bot.vercel.app/0img-20220719-wa0005.jpghttps://cloud-p13bcfon2-hack-club-bot.vercel.app/0img-20220719-wa0001.jpghttps://cloud-lctpwb79n-hack-club-bot.vercel.app/0img-20220719-wa0007.jpghttps://cloud-cft8epm2r-hack-club-bot.vercel.app/0img-20220719-wa0008.jpg
summer-of-making emoji
Today I worked on some PR :pr: on Sprig's Readme! :github: :gamelab: 🍃 I added more content, a link to the development #sprig channel, and information about the philosophy of the project. :thinking: Also I'm going to be making a new VM to try again NixOS :nix: but this time I'll use a ARM build and use Pop Shell with it! :pop-os:
https://cloud-e05yk60vy-hack-club-bot.vercel.app/0screenshot_20220719_234239.jpghttps://cloud-losrrk7zf-hack-club-bot.vercel.app/0screenshot_20220719_234219.jpg
summer-of-making emoji
Today my scrapbook streaks pr :pr: got merged! :merge: 🎉 Thanks @ella and @caleb for the help! Here's an image that shows how it looked like before without the style and how it looks now! :css: :react: It also show my streak. :cooll-dino: Lastly for this post, here's another screenshot that shows the previous step of my p5.js music visualizer. 🎵
https://cloud-3thtas4l8-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-11_a_la_s__18.21.35.pnghttps://cloud-arg9dfjro-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-18_a_la_s__21.29.10.pnghttps://cloud-dpqapt8hv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-18_a_la_s__21.29.40.pnghttps://cloud-aku8mg2sw-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-18_a_la_s__11.03.42.png
So today I did my pull request :pr: to add some style to the Scrapbook Streaks page! :hack-club: Also I'm going to be changing the theme for my computer setup again! :macbook-air-space-gray-screen: This time I'm moving from TokyoNight + Dracula to Rosé Pine! 🌹 It looks a bit similar to catppuccin that was recommend to me in here! So let's see how it look like. 🎨
https://cloud-5skuvucf8-hack-club-bot.vercel.app/0screenshot_20220717_232935.jpghttps://cloud-l4x243aem-hack-club-bot.vercel.app/0screenshot_20220717_231610.jpg
Today I had a good day! There's not much coding updates but I'm going back to the city 🏙️ next week. Here's another awesome space 🌌 image and a screenshot of my previous #scrapbook post because it didn't correctly load last time. For my future projects, I plan to work on my GitHub Readme again! :github: :quad_parrot:
https://cloud-fbje297vg-hack-club-bot.vercel.app/0main_image_star-forming_region_carina_nircam_final-1280.jpghttps://cloud-7mqt5fwo0-hack-club-bot.vercel.app/0screenshot_20220716_230158.jpg
Today I started working on a new feature for the streaks page of Scrapbook to add some customization to it! :hack-club: :css: Also I worked on an online course 🔬
https://cloud-oynenejay-hack-club-bot.vercel.app/0quinteto-de-stephan_e9060872_1200x1150.jpghttps://cloud-vapv6vpiq-hack-club-bot.vercel.app/0smacs-0723_63bad19e_1176x1200.jpg
summer-of-making emoji
Gamelab evolved and it's now Sprig! :tw_leaves: Now the game engine is tile-based, so it's time to make a new game for it! :quad_parrot: Tomorrow I'll try to get back at my open source workflow for Hack Club :hack-club: and help a bit again with some repos! :merge: :github: Also here's an update on my GitHub Graduation stickers: I think they won't arrive never. :sadge: Anyways, here's some screenshots for #sprig! :gamelab:
https://cloud-jqpbu0som-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-14_a_la_s__23.14.25.pnghttps://cloud-efgf7o37c-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-14_a_la_s__23.12.30.png
summer-of-making emoji
I've learned many new cool things with JavaScript :javascript: and P5.js! The music visualizer is a lot better than before. :yay: Also here's a local picture I took some time ago. 📸 ☁️
https://cloud-idp3umorz-hack-club-bot.vercel.app/0img-20220611-wa0002.jpghttps://cloud-7wbv861wv-hack-club-bot.vercel.app/092c3523de61d06eebdc515f2babb64b9_xl.jpg
summer-of-making emoji
js emoji
Tomorrow I'm getting my Medical School Admission results! 🧪 So while I'll wait, here's another BOTW screenshot! :triforce: 📸 I'm going to need to find a way to transfer my save file! :thinking: :tw_floppy_disk:
https://cloud-66ye0ibrj-hack-club-bot.vercel.app/0img_20220712_221905.jpg
summer-of-making emoji
:javascript: 🎼 I'm working on a music visualizer using P5.js and the Fast Fourier transform! :quad_parrot:
https://cloud-h1qtm7x9y-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-11_a_la_s__20.34.41.png
summer-of-making emoji
js emoji
Here's some local photos I took today! There used to be a beach 🏖️ here many years ago... 🌴 ☀️ Tomorrow I plan to get back at a new project and make a new P5.js :javascript: music visualizer! 🎼 🎹
https://cloud-ei83dluos-hack-club-bot.vercel.app/0img-20220710-wa0000.jpghttps://cloud-bihd4iyyu-hack-club-bot.vercel.app/0img-20220710-wa0003.jpghttps://cloud-go5tm1x54-hack-club-bot.vercel.app/0img-20220710-wa0004.jpghttps://cloud-3zxfnp95d-hack-club-bot.vercel.app/0img-20220710-wa0002.jpghttps://cloud-nhe56g2al-hack-club-bot.vercel.app/0img-20220710-wa0005.jpg
As mentioned yesterday, today I went to drive again! It was a nice experience and I'm getting better! 🚗 I plan to keep up with some of my projects this next week, and also I'm getting the results for my medical school admissions! 🥼 🔬 There's no new image for today's post 🖼️ so here's a previous image of my backyard.
https://cloud-2jz48v0zm-hack-club-bot.vercel.app/0img-20220705-wa0001.jpg
summer-of-making emoji
Today there aren't many updates! But tomorrow I'm going to practice how to drive again! 🚗 It's going to be great! And as a coding update, the next language that I'm going to learn after my web 🌐 development :javascript: :css: route is Go! :gopher:
https://cloud-7e1794e8l-hack-club-bot.vercel.app/0screenshot_20220708_235439.jpg
summer-of-making emoji
bongo emoji
Today I organized some of my files 🗃️ and there's not a lot of coding updates, although I'm updating some of my repos :github: and adding my replit files to them! :replit: There's no image for this so here's a green heron!
https://cloud-qxb8jty4a-hack-club-bot.vercel.app/0greenheron_gam.jpg
Today I learned a bit more about Nix! :nix: And how it's used on Replit. :replit: Also here's an screenshot of my previous post because it didn't load correctly last time. :thinking:
https://cloud-h1yud1rym-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-06_a_la_s__22.52.10.pnghttps://cloud-hy0r9kw62-hack-club-bot.vercel.app/0captura_de_pantalla_2022-07-06_a_la_s__22.51.06.png
summer-of-making emoji
nix emoji
replit emoji
triforce emoji
Here's a picture of my backyard after watering the plants! 🌊 🪴 it's a very nice view and the weather is good as well. Also here's an image of how my terminal setup is going! :macintosh-stcicker:
https://cloud-1f5bqxfxx-hack-club-bot.vercel.app/0img-20220705-wa0001.jpghttps://cloud-kxhwpfyxd-hack-club-bot.vercel.app/0tokyonight-neofetch.png
summer-of-making emoji
:triforce:
https://cloud-nkdrfhey6-hack-club-bot.vercel.app/0img_20220704_201508.jpghttps://cloud-nmc0pcuay-hack-club-bot.vercel.app/0botw-share_icon.jpg
Today I went to drive for the first time! 🛣️ 🚗 This is going to be a lot useful to go to many places! 🗺️ Also here's a Vermont :vermont: landscape picture! 🌆
https://cloud-my403109f-hack-club-bot.vercel.app/0image_from_ios.jpg
summer-of-making emoji
Today I started working on another workshop, this time the Wordle :wordle: ✍️ Clone by @heyrajan and learned more on config files, for example Replit files .replit :replit: and replit.nix! :nix: Also I added some things to my website and went to see a school as an option for college! 🏫 Also tomorrow I will start learning how to drive 🚗 and here’s an image I took today of the landscape! ⛰️ 🌴 ☀️
https://cloud-i65ce0dff-hack-club-bot.vercel.app/0img-20220702-wa0001.jpg
Here's a picture I took today! 📷 🌳 Today for coding I learned more about how dotfiles work, added a few things to my Replit :replit: and continued working on my BWSI course! :mit: 🦫
https://cloud-aa2sg4alf-hack-club-bot.vercel.app/0img-20220701-wa0001.jpg
periodt-light emoji
summer-of-making emoji
For today there isn’t any coding thing! I’m just on vacations! 🌴 So here’s a Parrot Fish! :parrotdad: 🐟 But there are some updates about my post of 2 days ago! :nix: I did some progress on the nixOS VM, but I can’t get pass the boot options to install the OS! :thinking: I think it’s probably because it’s using emulation instead of virtualization. 💻 I’m going to try an ARM build to solve this issue! :quad_parrot:
https://cloud-pwrk6rk1a-hack-club-bot.vercel.app/06uueccucfv851.jpg
wahoo-fish emoji
summer-of-making emoji
So today I’m finally setting up my ~/ dotfiles! 🗃️ 🌱 :nix:
https://cloud-k36afnzuq-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-29_a_la_s__20.16.56.png
summer-of-making emoji
nix emoji
:nix: 🗃️
https://cloud-r0safk1jm-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-28_a_la_s__19.09.27.pnghttps://cloud-6ndt0aena-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-28_a_la_s__17.05.37.png
ultrafastparrot emoji
summer-of-making emoji
nix emoji
Today I had my last college admission exam! So I'm finally free and the summer vacations have started! :tw_tada: Thanks to this I'll be able to work on my website 🌐 , on my nixOS :nix: VM and on other projects! Here's some pictures I just took right now from the landscape! 🌴
https://cloud-4eocv143g-hack-club-bot.vercel.app/0img_20220627_193905.jpghttps://cloud-cgwz67aop-hack-club-bot.vercel.app/0img_20220627_193623.jpghttps://cloud-g1nwpyz1l-hack-club-bot.vercel.app/0img_20220627_221905.jpg
summer-of-making emoji
It's very nice to be back home. 😌 🏡 Today I organized many things at my house and studied for another test! For coding, I plan to be designing some new things for my website in development! I'm going to be using a dino.icu 🌐 domain so I'll make a PR :pullrequest: to change my :hack-club: scrapbook domain to link 🔗 it to my website! Here's two of my previous images! :tw_camera:
https://cloud-gdxuadbbb-hack-club-bot.vercel.app/0img_20220602_181216.jpghttps://cloud-4v0ohxmqe-hack-club-bot.vercel.app/0img_20220527_140304.jpg
pr emoji
summer-of-making emoji
Assemble is finally here! :assemble: :parrotdad: Today I registered for Hack Club's 2022 Summer Event! It's going to be so awesome and I look forward to be there!
https://cloud-4oi6vd0pg-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-25_a_la_s__21.33.47.pnghttps://cloud-u385en643-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-25_a_la_s__21.34.10.pnghttps://cloud-gugzr3mtm-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-25_a_la_s__21.34.22.pnghttps://cloud-gpcdwvg8m-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-25_a_la_s__21.35.00.pnghttps://cloud-ciai82owb-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-25_a_la_s__21.34.41.png
assemble emoji
summer-of-making emoji
Second travel update! I'm about 1/3 of the total distance that I'll travel! :tw_world_map: 🧭 I'll make a final update about #assemble when I get back home! 🏡 :yay: 🎉 It's going to take a while because I still have about 8 hours of trip ahead! ⏲️
https://cloud-fjnwnxppt-hack-club-bot.vercel.app/0img_20220625_133952.jpghttps://cloud-7g3syeklv-hack-club-bot.vercel.app/0img_20220625_085144.jpghttps://cloud-o6uv1f005-hack-club-bot.vercel.app/0img_20220625_084912.jpghttps://cloud-m41ky8qp9-hack-club-bot.vercel.app/0img_20220625_123033.jpghttps://cloud-kw9wr67gf-hack-club-bot.vercel.app/0img_20220625_092545.jpghttps://cloud-kiv0tw12c-hack-club-bot.vercel.app/0img_20220625_133720.jpghttps://cloud-lqszwwdhs-hack-club-bot.vercel.app/0img_20220625_122457.jpg
summer-of-making emoji
First travel update! 🚗 It's been great so far! I've seen a lot of things so here's some pictures! 📸 ⛰️
https://cloud-aw44x76s2-hack-club-bot.vercel.app/0img_20220625_074601.jpghttps://cloud-pc0gmasey-hack-club-bot.vercel.app/0img_20220625_075141.jpghttps://cloud-en5o33mq2-hack-club-bot.vercel.app/0img_20220625_074126.jpghttps://cloud-efzih6s3k-hack-club-bot.vercel.app/0img_20220625_075032.jpghttps://cloud-qcwtnkhz5-hack-club-bot.vercel.app/0img_20220625_074231.jpghttps://cloud-2d4xokm0g-hack-club-bot.vercel.app/0img_20220625_074525.jpghttps://cloud-jhjli69w3-hack-club-bot.vercel.app/0img_20220625_074206.jpghttps://cloud-6ylrmqqs0-hack-club-bot.vercel.app/0img_20220625_074813.jpghttps://cloud-ojvjopz3e-hack-club-bot.vercel.app/0img_20220625_074205.jpg
First post of the day! :tw_tada: :parrotdad: As y'all know, I've just finished high school 🏫 two days ago, so it's time to travel back home again! 🧭 🗺️ I'm going to be sharing journey updates here! :D I'm going to be travelling very early in the morning so it's going to be a long trip! 🚗 🛣️ Here's an image of a Green Heron! 🐦
https://cloud-j7s9uwimt-hack-club-bot.vercel.app/0butorides_virescens2.jpeg
Today was a very good day! :yay: I went today to the cinema 🎥 🍿and ate pizza! 🍕 Also tomorrow there's going to be many scrapbook updates! :tw_eyes: So for now, here's a nice local picture! ⛰️ ☁️ 📷
https://cloud-qmfcpfbt2-hack-club-bot.vercel.app/0img_20220624_121930.jpg
summer-of-making emoji
Today was finally my last day as a high school 🏫 student, and that's because it was my graduation! 🎓 This were the best school years I've had and I look forward for the future and the things I will be learning! I'm glad for all of the cool 😎 moments at classes and with friends and I'll remember them always! Also here's some pictures 📸 of some flowers and from Gorki the Corgi! :mailcorgi:
https://cloud-b7vv8fh8d-hack-club-bot.vercel.app/0img_20220623_191911.jpghttps://cloud-jamgie2kh-hack-club-bot.vercel.app/0img_20220623_191851.jpg
graduate-parrot emoji
summer-of-making emoji
Today was a very good day, I studied for my final school exam 🎒 that I'll have tomorrow, and I'm finally going to be graduating as well! 🎉 🎓 Here's a picture of the landscape 🌆, it's raining again! 🌧️
https://cloud-n5i8115ta-hack-club-bot.vercel.app/0img_20220622_172314.jpg
summer-of-making emoji
Today was the start of summer! ☀️ Here's some pictures 📸 of the sky and from the sunset! 🌆 Today I also had another test and I'm going to be graduating this week! 🏫 :quad_parrot:
https://cloud-1a24r5tfe-hack-club-bot.vercel.app/0img-20220621-wa0001.jpghttps://cloud-d0jphcovf-hack-club-bot.vercel.app/0img_20220621_195018.jpghttps://cloud-q2a3ncddf-hack-club-bot.vercel.app/0img_20220621_203912.jpghttps://cloud-i4iha03u9-hack-club-bot.vercel.app/0img_20220621_203845.jpghttps://cloud-ajf09cw70-hack-club-bot.vercel.app/0img_20220621_195058.jpghttps://cloud-o3yx76j2h-hack-club-bot.vercel.app/0img_20220621_203852.jpghttps://cloud-dajr4ufgp-hack-club-bot.vercel.app/0img_20220621_144946.jpghttps://cloud-1jd2xmkgv-hack-club-bot.vercel.app/0img-20220621-wa0002.jpg
summer-of-making emoji
The storm is finally over! I'm going to be able to share more sunny photos tomorrow! ☀️ 📸 I continued as well my nix :nix: learning journey and I studied as well for my test! Also here's another screenshot of Jedi Fallen Order! :jediparrot: :playstation:
https://cloud-pju1x2y9w-hack-club-bot.vercel.app/0img-20220620-wa0006.jpghttps://cloud-4r3muk4ie-hack-club-bot.vercel.app/01818485236413-screenshoturl.jpg
jediparrot emoji
playstation emoji
spring-of-making emoji
Today I learned more things about Nix :nix: and continued studying like all of this days for my school test! :tw_closed_book: Also here's a nice landscape :tw_bridge_at_night: picture I took some days ago and that I shared in here as well! 📸 It's been cloudy ☁️ and very rainy 🌧️ for some days so I haven't taken any other good image!
https://cloud-qvsna3i33-hack-club-bot.vercel.app/0screenshot_20220619_235551.jpghttps://cloud-hnqzgsn3l-hack-club-bot.vercel.app/0img_20220613_204500.jpg
tw_bridge_at_night emoji
spring-of-making emoji
nix emoji
Today I continued to learn Nix! :nix: And I'm going to be installing it on a VM on my M1 Macbook Air! :macintosh-stcicker: :macbook-air-space-gray-screen: I've been learning the theoretical aspects pf it and it's awesome, I can't wait to start building this new setup! :cooll-dino: Also here's an image of my Scrapbook :hack-club: keeping the streak has been very fun! :tw_relieved: Again there's an error with Vercel :vercel: on my local Internet network! 🕸️ The good thing is that I can use @BenjaminSmith Outline server to solve this! 📤
https://cloud-j2kte0015-hack-club-bot.vercel.app/0nixos.pnghttps://cloud-gr65ieceb-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-18_a_la_s__23.58.41.png
Today I learned more about Nix :nix: thanks to @tejasag! I have a better understanding now about nixOS, nixpkgs 🗃️ home-manager 🏡 nix-darwin 🐠 and other things! I have a better idea too on how this kind of dotfiles works.:parrot-nix: As well I'm finally working on my website again! I never finished last design so this is going to count towards my first version! 🌐 Also yesterday I managed to de-cypher 🔓 and enter Hack Club :hack-club: 2022 summer event :tw_bridge_at_night: website! It was so much fun and a very interesting project! I learn a lot of things from this like OpenSSL! :cat-on-the-laptop: :tw_unlock:Lastly, somehow I saw Vercel's 404 :sadmac: page for the first time while checking my projects dashboard. :vercel: :sphere:
https://cloud-dymbgd9w3-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-17_a_la_s__23.58.25.pnghttps://cloud-7kanur96d-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-17_a_la_s__23.59.08.pnghttps://cloud-esvnj18bl-hack-club-bot.vercel.app/0nixos.png
A few months ago I said I was going to setup an Arch :arch: or NixOS :nix: VM! But I couldn't finish neither of those! :sphere: Right now I decided again to give it a try to Nix and finally I'm going to try it again!! :quad_parrot: This is going to be very cool and interesting! :cooll-dino: Now I just need to decide if making a VM like my previous plan or something else! Also finally we have the first official Summer Event clues! Some people already figured it out, and I'm going to learn what are JSON Web Tokens and how does they work! Here's an update: I managed to discover the event secret website! :parrotdad:
https://cloud-8k4xpxnrj-hack-club-bot.vercel.app/0nixos.pnghttps://cloud-j72tpn3un-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-16_a_la_s__23.14.47.pnghttps://cloud-lyif4lv5d-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-16_a_la_s__23.13.16.png
Today I decided to learn more about how the Browser Developer Tools 💻 work, so I started the Hacker Challenges by @jessicard! This project is amazing, all of the explanations are awesome and the challenges are very fun! :blobattention: Today I also did more school 🎒 stuff and took this picture! 📷
https://cloud-oo5ezfdf1-hack-club-bot.vercel.app/0img-20220615-wa0013.jpghttps://cloud-22rfc9yse-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-15_a_la_s__22.53.06.pnghttps://cloud-kzzytznqh-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-15_a_la_s__22.50.14.pnghttps://cloud-6be8gs42k-hack-club-bot.vercel.app/0hacker-challenge.png
Today I practiced how to align items with CSS Flexbox! :css: Also here's some pictures I took today, it's very cloudy and cold. :cloud-thoughts-head-full: Lastly, here's a Green Heron Bird! :tw_bird:
https://cloud-onakl3n3q-hack-club-bot.vercel.app/0img_20220614_170258.jpghttps://cloud-9xazf85rp-hack-club-bot.vercel.app/0greenheron_gam.jpeghttps://cloud-fatlv9awe-hack-club-bot.vercel.app/0img_20220614_090631.jpghttps://cloud-kp1fb8dm0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-14_a_la_s__23.28.08.png
Today I went back to school 🏫 to check some administration 🗃️ things and I took these photos! 📷
https://cloud-yoqbpsky3-hack-club-bot.vercel.app/0img_20220613_201252.jpghttps://cloud-5rmlerssk-hack-club-bot.vercel.app/0img_20220613_201404.jpghttps://cloud-p4us3coqp-hack-club-bot.vercel.app/0img_20220613_201346.jpghttps://cloud-ghhbrkzlm-hack-club-bot.vercel.app/0img_20220613_121356.jpg
Today I learned more on how some internet things work in depth like DNS, HTTP, TCP/IP Protocol and servers! 🌐 This is in order to have a better understanding of the web principles which I'll use for the Hack Club :hack-club: Wed Dev guide! :merge: Besides this, here's another awesome picture of the landscape, I will be making something cool and very soon with all of them. 📸 🌆
https://cloud-34basi8rl-hack-club-bot.vercel.app/0img-20220612-wa0000.jpeghttps://cloud-gj4mli5wv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-12_a_la_s__23.13.58.png
Today I had my first college admission exam! 🏫 🎉 It was at the University City of my city. 🏙️ And after that I had a lot of free time to study for another incoming test, continued playing Star Wars Jedi: Fallen Order :jediparrot: and learned more about Data Visualization and Force-Directed graphs, this is going to be very useful for a cool project I will try to make, and speaking of projects, I'm almost ready to reveal all of the details for my Open Source :merge: Hack Club :hack-club: project! Lastly, here's a very cool photo 📸 of the sunset and a game-screenshot of my lightsaber! 🤺
https://cloud-2x9geji68-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-11_a_la_s__23.02.31.pnghttps://cloud-9zj5gkow4-hack-club-bot.vercel.app/01815587789485-screenshoturl.jpghttps://cloud-qbsrkzuao-hack-club-bot.vercel.app/0img-20220611-wa0002.jpg
Today I had a very good day! Here's a picture of the sunset. 📸 🌆 Tomorrow I'll have more coding updates! :macbook-air-space-gray-screen: Also tomorrow I have a college admission exam. I hope everything goes awesome, :cooll-dino: because I've been studying for a lot of time, so I'll do my best! 🏫 📕
https://cloud-2695mc60e-hack-club-bot.vercel.app/0img_20220610_204637.jpg
Today I did my last high school 🏫 exam of the semester! 🎉 :parrotdad: Also like yesterday it rained a lot. 🌧️ :cloud-thoughts-head-full: Today as well I studied for some other exams, read a bit about the story of the internet and other useful related topics like DNS :tw_spider_web: 🌐 for my Hack Club project :hack-club: and wrote some notes about it in markdown using Atom :electron: and saw that there are new GitHub Achievements! :github: :pr: This a very nice feature! Currently I have two of them. :pull-request-shark: Lastly for today, I designed new features for my acoustic galaxy :tw_milky_way: creative coding project that I'll try to add soon! 🎨
https://cloud-aat0hpog0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-09_a_la_s__23.29.10.pnghttps://cloud-1ich8ncy1-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-09_a_la_s__23.28.14.pnghttps://cloud-jznp86ddr-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-09_a_la_s__23.35.47.png
spring-of-making emoji
tw_milky_way emoji
pull-request-shark emoji
tw_goat emoji
Today I studied again for my exam of tomorrow! Also it's raining very hard right now. Today as well I read that GitHub is going to archive Atom! It was the first code editor I used and it's always going to be special for me even when I've been using vs code a lot lately! Because of this, I saw as well other benefits of forks and some things about Electron framework for desktop apps! Also I'm going to be reading the hobbit again!
https://cloud-5dduxvw0y-hack-club-bot.vercel.app/0hobbit.jpghttps://cloud-hk8x40gpe-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-08_a_la_s__22.35.52.pnghttps://cloud-duugzgjdw-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-08_a_la_s__22.38.48.pnghttps://cloud-k0qs0462c-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-08_a_la_s__22.36.27.png
So my coding journey about shaders :macintosh-stcicker: helped me to learn more about how 3D Pixel Art 🎨 works! Here's an example of a 3D Render scene with a shader effect that I saw on tutorial, which can be made with Blender :blender: , Unity 3D Game Engine :unity: or with code using Three.js! :javascript: Here's also an image of "A Short Hike" a very cool :cooll-dino: indie game that uses this same effect that I will be playing soon! And speaking about games, today I did another basic design while using Gamelab! :gamelab: I think I'm understanding it better! :quad_parrot: Lastly for today, I had my Biology 🦠 exam today and I'm going to be working on Hack Club's :hack-club: guide-to-web-dev repository :merge: I plan to make more commits soon and explain everyone here what is it for! 👀
https://cloud-24rl19wdz-hack-club-bot.vercel.app/0screen3.pnghttps://cloud-5toetdnk4-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-07_a_la_s__22.55.59.png
First post of the day! :tw_tada: Here's some pictures 📸 I took recently and that I didn't have had time before to share in here! Two of them are from a local bakery 🥐 🥖 near my house, the other is a statue 🗿 that I have shown in here before, and the other is from my school! 🏫
https://cloud-rj3lk461e-hack-club-bot.vercel.app/0img_20220607_190256.jpghttps://cloud-8vtao5mjp-hack-club-bot.vercel.app/0img_20220602_181216.jpghttps://cloud-20d40n49c-hack-club-bot.vercel.app/0img_20220602_181552.jpghttps://cloud-74zks3gvw-hack-club-bot.vercel.app/0img_20220602_084551.jpg
Today I learned about a very cool Blender :blender: Halftone Shader :macintosh-stcicker: thanks to @msw! This is going to be useful for my 3D model experiments and for 2D as well! :quad_parrot: Today I also studied for my Biology 🦠 🔬 test that I'll have tomorrow and finished yesterday's PR :pr: that got merged! :merge: Also I'm working with @jessicard on a new project for Hack Club :hack-club: that I'll give more details soon! 👀
https://cloud-mi0n65eiy-hack-club-bot.vercel.app/01mwet4.jpeghttps://cloud-2tqxdgikl-hack-club-bot.vercel.app/0nogvdc.jpeghttps://cloud-q22xehtra-hack-club-bot.vercel.app/0j36oma.jpeghttps://cloud-iec4y2aiy-hack-club-bot.vercel.app/0o1ywhv.jpeg
Today I learned more on how to work with VScode! :vsc: I didn't knew :thinking: it was possible to open a terminal :macintosh-stcicker: on it! I tried as well to open the neofetch command and Vim :vim: on it and my Splatter Paint 🎨 project files! Today I also worked again on details for two new Hack Club :hack-club: PR! :pr: The first one is to add Scrapbook to the GitHub :github: README and the second is my Workshop translation guide! :mexicoparrot: All of this are from ideas talked with @jessicard yesterday, thanks a lot for guiding me and reviewing my work! :yay: Lastly for today, I kept studying for my Biology Exam! 🦠 🔬
https://cloud-82syjxkzn-hack-club-bot.vercel.app/0vscode.png
Today I started to work on my Visual Studio Code setup! :vsc: I installed Atom's :atom: One Dark theme which is awesome, and Prettier code formatter :macbook-air-space-gray-screen: that was a recommendation from @caleb! I also studied for my exams 🦠 , and worked on a new PR :pr: for Hack Club! :hack-club: Also here's macOS penguin default wallpaper. 📸
https://cloud-nft908oea-hack-club-bot.vercel.app/0macos-penguin.pnghttps://cloud-pstrpe5nq-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-04_a_la_s__23.24.34.pnghttps://cloud-jntso4r13-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-04_a_la_s__23.22.36.png
Today I did another Hack Club :hack-club: Pull Request! :pr: :merge: It improves the README by adding more info on how to contribute! Tomorrow I'll try to make the other one I've been working on about a guide for Workshops! Also today I learned more about YADM, because I'm going to finally make my Dotfiles! 🌱 As well I saw things about Cron's Calendar app :cron: and I setup a VPN 🌐 with the help of @BenjaminSmith and his Outline Server! :quad_parrot:
https://cloud-pijrruc1c-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-03_a_la_s__23.18.07.pnghttps://cloud-gpi44gkxw-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-03_a_la_s__23.14.54.pnghttps://cloud-2lwlihiz5-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-03_a_la_s__23.13.42.pnghttps://cloud-g8elw54jj-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-03_a_la_s__23.15.40.png
goose-honk-technologist emoji
spring-of-making emoji
pr emoji
merge emoji
cron emoji
Today I started learning about what are GLSL Shaders thanks to a very cool art 🎨 project made with them that uses awesome :cooll-dino: math things like polar coordinates and Voronoi shapes, which I used previously with Paper.js! :javascript: All of this was thanks to @ced that mentioned this to me, besides his Shaders book recommendation: thebookofshaders.com 📕 Here's some screenshots of it! 📸 It's difficult but very interesting! I also I started to look for more themes to customize my coding setup and to change how internet websites look on my browser! 🌐 🕸️ Here's how my repositories look with a custom theme! 🎨 Although I still need to see more options and choose the best one for me. And finally, I read again a bit more of GitHub :github: CodeSpaces, and my following final exam that I'll have this next Tuesday will be Biology again! 🌱 🦠 :quad_parrot:
https://cloud-ccodaw18b-hack-club-bot.vercel.app/0ss_tokyo_night.pnghttps://cloud-fbv6c4h1m-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-02_a_la_s__23.06.09.pnghttps://cloud-y0td18f0y-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-02_a_la_s__22.53.49.pnghttps://cloud-l48xb6hy2-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-02_a_la_s__23.04.21.pnghttps://cloud-693qywsc6-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-02_a_la_s__22.54.13.pnghttps://cloud-f1ahnseul-hack-club-bot.vercel.app/0descarga__1_.pnghttps://cloud-6prekubjj-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-02_a_la_s__23.05.03.png
Today I had my Computer Science 💻 Final Exam! :quad_parrot: :tw_tada: And I think it went great! Also today I practiced a bit more of CSS Flexbox :harder-flex: :css: with a few tutorials and examples! Also did a Hack Club's :hack-club: Summer 2022 sketch based on the theories 🏕️ 🧭 🎈 we have made here on the Slack :slack: about the event and with a small description with the help of some cool additional details! :cooll-dino:
https://cloud-9cgu34i5i-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-01_a_la_s__23.16.00.pnghttps://cloud-gjdsy6io2-hack-club-bot.vercel.app/0captura_de_pantalla_2022-06-01_a_la_s__23.15.27.pnghttps://cloud-fm8gohbqa-hack-club-bot.vercel.app/0summer.png
Today was a very normal and good day! :parrotdad: I rest a bit and practiced for my Computer Science 💻 :cat_typing: exam that I'll have tomorrow! Also I went for some ice cream 🍦 and here's some pictures of the sunset! 🌆 📸
https://cloud-cs1wwlgmg-hack-club-bot.vercel.app/0img_20220531_204405.jpghttps://cloud-38ngjt9qx-hack-club-bot.vercel.app/0img_20220531_204306.jpghttps://cloud-3qvgkbg7c-hack-club-bot.vercel.app/0img_20220531_181735.jpghttps://cloud-dsipxsr24-hack-club-bot.vercel.app/0img_20220531_204653.jpghttps://cloud-2nc8hw204-hack-club-bot.vercel.app/0img_20220531_181739.jpg
Today I had my final Calculus Exam and I got highest score possible! :tw_tada: :quad_parrot: Also I've read a few things about Node.js :javascript: :nodejs: and package managers like Yarn 🧶 and npm :npm: ! So I'm adding this to the list of things to learn! Also, looks like there's more clues about Hack Club's Summer 2022 event, but it's still a mistery. :thinking: :blobninja: And speaking of decoding, I've gotten better at using CyberChef and decoding coding things like Hex! :parrotdad: 💻
https://cloud-r5vt137j2-hack-club-bot.vercel.app/01200px-node.js_logo.svg.pnghttps://cloud-ctf5p4igz-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-30_a_la_s__23.36.09.pnghttps://cloud-7493xpnxp-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-30_a_la_s__23.37.24.pnghttps://cloud-i546b9v1e-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-30_a_la_s__23.37.54.pnghttps://cloud-q7jjoe0pk-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-30_a_la_s__23.36.38.png
My previous Pull Request got merged! :merge: 🎉 Here's an image showing how the link update looks like and my streak after the position changes! :fireball: Also recently I participated at #mission-control escape-room and it was so cool :cooll-dino: , although I didn't had time to talk about it in here! It was very useful to me because it helped me to get better at flexbox :harder-flex: :css: , and I learned many different tools and how to use them like CyberChef 💻 🤌 that I've been using recently, it's a really useful tool for any sort of data format conversion! Also I learned about curl curl.se and I've been trying to figure out with @maggie, @mutammim and @fayd what is Hack Club :hack-club: planning to do this summer! We have a few theories :blobninja: , and the most likely is that the event is going to be at SF! :tw_bridge_at_night: We also have other theories that include animals 🦦 , a blimp or some kind of hackathon! :quad_parrot:
https://cloud-klglmzkm5-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-29_a_la_s__18.32.06.pnghttps://cloud-czwgkqc08-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-29_a_la_s__22.22.40.pnghttps://cloud-71893208o-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-29_a_la_s__22.26.14.png
I finally finished studying for tomorrow's Calculus Exam, so it's time to start coding again! :cat_typing: So for this first 1️⃣ post of the day, I'm sharing that I did a new Pull Request :pr: for Hack Club! :hack-club: It's an update on the index.js :javascript: file that adds a link to the streaks page at the main Scrapbook page. :scrappy: And speaking of streaks, with this post I take @sampoder second 🥈 streak place at scrapbook post with 243 consecutive days!!! 🔥 :parrotdad:
https://cloud-n5npk77bz-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-29_a_la_s__18.29.18.pnghttps://cloud-fzkkwd9km-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-29_a_la_s__18.28.18.pnghttps://cloud-lkhm26eol-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-29_a_la_s__18.28.44.png
Today I continued studying for my next exam, 🎒 added a few things to my new translation :pr: :mexicoparrot: , fixed a Pop_OS! :pop-os: KDE DE problem and started playing again Star Wars Jedi: Fallen Order now on 4K on my PS5 :playstation: after seeing the announcement for the sequel Star Wars Jedi: Survivor! :jediparrot: Here's a screenshot of the game, a picture of a plant I recently took 🪴 and some sunset 🌆 images as well! 📸
https://cloud-pbotdwzdq-hack-club-bot.vercel.app/01810d6c3be137-screenshoturl.jpghttps://cloud-l14d8b79w-hack-club-bot.vercel.app/0img_20220528_204911.jpghttps://cloud-n6o045rf7-hack-club-bot.vercel.app/0img_20220527_140304.jpghttps://cloud-7mvfap2b9-hack-club-bot.vercel.app/0img_20220528_205003.jpghttps://cloud-1z0zhiawx-hack-club-bot.vercel.app/0img_20220528_204748.jpg
Today I had my physics final exam! I hope I'm going to get a good grade on it. 🚀 :quad_parrot: And besides studying for my calculus exam that I'll have next Monday, today I worked again on another Workshop Translation! :yay: I've been very busy with school things but I hope to finish it soon! :hack-club: :pr:
https://cloud-96hop97wa-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-27_a_la_s__22.42.50.pnghttps://cloud-d7ywigpeq-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-27_a_la_s__22.44.03.png
Recently I made a post about writing a Sci-Fi 🛸 story on the terminal, and here's how it can be done! This applies as well to this awesome :cooll-dino: ASCII Art of a computer :macintosh-stcicker: and Hack Club! :hack-club: This are the steps: 1. 🥇 First of all, open a terminal emulator, this one is cool-retro-term because it has some awesome retro effects! :awesome: 2. 🥈 Second, open Vim :vim: on it! 3. 🥉 Third, start tying the info you want to be display! 💻 That's all, it's very simple and the results are great :D :parrotdad:
https://cloud-4fmvzzu70-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-26_a_la_s__21.16.59.png
My GitHub :github: Graduation 🎓 PR :pr: got merged!!! :merge: :quad_parrot: This means I'm going to get my custom trading card! 🎟️
https://cloud-d7n225wmz-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-26_a_la_s__21.30.32.pnghttps://cloud-6w9icokn1-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-26_a_la_s__21.31.05.pnghttps://cloud-6nvbigtag-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-26_a_la_s__21.33.23.png
Today I continued studying for my exam, helped to review a Hack Club :hack-club: Workshop PR :pr: and started working on another workshop translation! :mexicoparrot: Also I'm going to be setting up a VM Server using Oracle and CloudFlare :cloudflare: and try to install PopOS! on it! As well I hope my GitHub :github: Graduation 🎓 PR will get merged on time :merge: because the time it's almost over! ⏲️ And lastly, here's a retro styled terminal on my Macbook, which I used to had on my PopOS! :pop-os: Linux :linux: setup and that I will use to write a Science Fiction story! 🛸
https://cloud-kh64a2rai-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-25_a_la_s__22.57.10.png
Here's a picture of my macbook :macbook-air-space-gray-screen: terminal using Raycast :raycast: Confetti! 🎉 So the point of this extra post was to mention that I learned as well a few more things on how does the app works, which will be useful when I start getting into building extensions.
https://cloud-9f7rjn1xv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-24_a_la_s__23.17.49.png
Today I studied for my final physics exam that I'll have this next Friday! And yesterday I had my Chemistry test! 🧪 Also I helped a friend to fix Windows :windows-xp: and then helped him to move and install Linux :linux: with PopOS! :pop-os: :quadparrot:
https://cloud-nr503n0tq-hack-club-bot.vercel.app/0pop_os.pnghttps://cloud-i6akeoafa-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-24_a_la_s__22.17.07.png
Here's a collection of some local valley ⛰️ pictures I've taken recently! The reflection of the sun on the clouds ☁️ :cloud-thoughts-head-full: between the mountains peaks makes it look like a volcano! 🌋 A very cool moment I'm happy to have taken as a photograph! 📸
https://cloud-ckvi343fh-hack-club-bot.vercel.app/0img_20220522_195124.jpghttps://cloud-1a1yln1wp-hack-club-bot.vercel.app/0img_20220522_194929.jpghttps://cloud-5beb8fcs3-hack-club-bot.vercel.app/0img_20220522_195017.jpg