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-86jpcyifg-hack-club-bot.vercel.app/0screen_shot_2023-01-17_at_21.59.43.png
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-j8s8x49bs-hack-club-bot.vercel.app/0screen_shot_2023-01-17_at_21.59.43.png
wom emoji
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
wom emoji
vsc emoji
sinerider emoji
github emoji
ultrafastparrot emoji
pr 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
github emoji
wom 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