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.jpghttps://cloud-27ysvbyvw-hack-club-bot.vercel.app/0img_20220522_195500.jpghttps://cloud-dkcafn9l6-hack-club-bot.vercel.app/0img_20220522_195222.jpghttps://cloud-ce2wnfcyj-hack-club-bot.vercel.app/0img_20220522_195116.jpg
Thanks a lot for the stickers :stickers: @hugo.y.hu935! After their journey on Switzerland ✈️ they're finally here! :tw_tada: :quad_parrot:
https://cloud-iz935xq0e-hack-club-bot.vercel.app/0img_20220522_194327.jpghttps://cloud-6lj9m9lic-hack-club-bot.vercel.app/0img_20220522_193356.jpghttps://cloud-7nf31v81h-hack-club-bot.vercel.app/0img_20220522_193326.jpg
ultrafastparrot emoji
stickers emoji
spring-of-making emoji
It started to rain! 🌧️ :cloud-thoughts-head-full: It's been a while since last time! :ultrafastparrot: So here's some pictures from my window. 📸 🖼️
https://cloud-cek9h7v91-hack-club-bot.vercel.app/0img_20220522_184038.jpghttps://cloud-c2iv2ccnu-hack-club-bot.vercel.app/0img_20220522_182931.jpghttps://cloud-6ymehmlm4-hack-club-bot.vercel.app/0img_20220522_182819.jpghttps://cloud-8y94eom1k-hack-club-bot.vercel.app/0img_20220522_182802.jpg
First post of the day! 🎉 🥇 I'm currently making a Hack Club PR :pr: thanks to @jessicard! 👀 And as well I've been trying to get better at editing code directly from the in-browser Web Development Tools! Here's a Hack Club :hack-club: website design I did in Spanish! :mexicoparrot:
https://cloud-b4jvilugv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-22_a_la_s__16.28.17.png
goose-honk-technologist emoji
pr emoji
spring-of-making emoji
upvote emoji
I’m going to be working on a Raycast :raycast: extension! This is going to be very useful to learn React :react: and TypeScript :typescript: ! Also here’s a cool :cooll-dino: landscape 🌆 picture of the day! 📸
https://cloud-ie4ej1qcc-hack-club-bot.vercel.app/0img_20220521_204224.jpghttps://cloud-51x8jf79e-hack-club-bot.vercel.app/0screenshot_20220521_201957.jpghttps://cloud-qrvs0ahe4-hack-club-bot.vercel.app/0header.png
Today was my final high school day!!! :parrotdad: 🏫 This have been such an amazing :cooll-dino: adventure and the best of journeys, after 3 years, I finish this stage of my life, full with many moments and experiences, with new friends and a lot of things that I learned. I say goodbye happily, knowing that I'll keep with me forever all of the moments and people that made this the BEST years ever that changed me and helped me to improve in many ways. I'm glad to say that I'll be able to see my best friends during this next years and I look forward for the future, and everything that will come next during this month, on which I have my final exams and lastly my graduation. 🎓 post, I'm sharing a picture of the evening and one of the front door of my high school!
https://cloud-4mt5g56z6-hack-club-bot.vercel.app/0img_20220520_204010.jpghttps://cloud-76pkgwo50-hack-club-bot.vercel.app/0img_20220520_150815.jpg
Today I help to review a Hack Club :hack-club: Pull Request :pr: regarding some help at a workshop translation! Here's also some pictures that I have taken throughout the day. 📸
https://cloud-r121uttzc-hack-club-bot.vercel.app/0img_20220519_170522.jpghttps://cloud-69v8arbmi-hack-club-bot.vercel.app/0img_20220519_195126.jpghttps://cloud-oe5scxry5-hack-club-bot.vercel.app/0img_20220519_194857.jpghttps://cloud-da97hx929-hack-club-bot.vercel.app/0img_20220519_194858.jpghttps://cloud-40f9o0oxw-hack-club-bot.vercel.app/0img_20220518_134304.jpg
I'm currently working on a Nucleic Acids 🧬 presentation for my Chemistry IV Class! :yay: 🧪 I was listening to some cool :cooll-dino: music playlists as well! 🎵 Here's two of the project slides! 📚
https://cloud-echdtq3u0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-18_a_la_s__22.54.24.pnghttps://cloud-dsufea0uh-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-18_a_la_s__22.57.17.png
My Hack Club Pull Request got merged! :merge: 🎉 Besides having a very good school day and organized an event with my classmates for our last school 🏫 day that is going to be this next Friday :tw_spiral_calendar_pad: I took some pictures of a few birds :tw_bird: on a tree 🌴 near my school and another sunset 🌆 photo! 📸
https://cloud-2ergn5pqx-hack-club-bot.vercel.app/0img_20220516_132301.jpghttps://cloud-akjj47hbz-hack-club-bot.vercel.app/0img_20220516_132521.jpghttps://cloud-rgpw1q8q1-hack-club-bot.vercel.app/0img_20220516_134540.jpghttps://cloud-eoawr0tt7-hack-club-bot.vercel.app/0img_20220516_132313.jpghttps://cloud-qvm6g4t17-hack-club-bot.vercel.app/0img_20220517_203912.jpg
Today I did another Hack Club :hack-club: Pull Request! :pullrequest: This time on the Scrappy :scrappy: Repository! :quad_parrot: :github: It's an update to the emojiKeyword.js file, I added more emoji keywords, useful to make new automatic posts reactions on Scrapbook! :parrotdad: I'll try to add more on this next days, beside working on other projects! 🌩️ Also today was the start of my last week :tw_spiral_calendar_pad: at High School! :backpack: After this, I will only have my final exams and classes will be over, this is a bit sad :sadge: but thanks to all of the amazing :cooll-dino: memories I have at my school, I look forward for the future, and I know I made good friends, had great teachers and had a great time. :yay:
https://cloud-o4lpx7hx7-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-16_a_la_s__22.22.28.pnghttps://cloud-dzu43yvme-hack-club-bot.vercel.app/0scrappy-fork.png
Today I made a repository :merge: at Hack as a Service! :haas: It's the #10 repo 🎉 and a .github readme for the Org! You can check it at: github.com/hack-as-a-service :github: This are a special kind of README.md files that appears at the main page of the organization, and it can be customized to have as well a different version for the org members, similar to the one available at Hack Club's GitHub. :quad_parrot: It has a general description about what is HaaS, different links 🔗 for other of the project repos, a License 🍱 Section, a How-to-Contribute 🔧 guide in progress and a part about what's Hack Club! :hack-club: Also here's a yesterday's screenshot 📸 on the exact time the hour changed to be May 14 and my birthday! 🍰 :parrotdad:
https://cloud-aaawfm7sm-hack-club-bot.vercel.app/0screenshot_20220514_000747.jpghttps://cloud-3pfbv4rna-hack-club-bot.vercel.app/0haas.github.pnghttps://cloud-q3e4xdlpo-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-15_a_la_s__22.25.00.png
Today is my 18 Birthday!!! :parrotdad: 🍰 🎉 Thank you all so very much for the birthday wishes, both on the Slack :slack: and on the Figma :figma: card, it meant a lot to me! 🍰 This makes me very happy and I'm soo glad that I can be here part of the best community ever :hack-club: and have y'all as friends! You are the best!!! I look forward for more amazing moments with everyone :D :quad_parrot: Here's also a very cool picture of my smartphone wallpaper! 🚀
https://cloud-hqs4dz9fb-hack-club-bot.vercel.app/0img_20220514_182805.jpghttps://cloud-59noay97g-hack-club-bot.vercel.app/0mars01.jpghttps://cloud-aw0lgm226-hack-club-bot.vercel.app/0img_20220514_182845.jpghttps://cloud-awljh7qmo-hack-club-bot.vercel.app/0javi-cakeday.png
spring-of-making emoji
tw_tada emoji
cow-pun emoji
Today I sketch a new design for my Science Fiction 🛸 comic at school! :backpack: I think it looks so cool :cooll-dino: with this black and white color scheme! :black_square: :white_square: Also I started working and learning a new JavaScript :javascript: Library 📚 after getting more use to P5.js with yesterday's project! This time is Tone.js! 🔉 :speaker-down-right: This will be super useful for implementing sound into my things in development! :parrotdad: Lastly for today, tomorrow I'm going to be 18! 🍰 🎉
https://cloud-o63gzth24-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-13_a_la_s__20.44.59.pnghttps://cloud-4szlj4x9u-hack-club-bot.vercel.app/0img_20220513_203746.jpeg
Today I worked on my next workshop: Acoustic Galaxy! 🌌 🌆 This is a project that comes from Hack Club's :hack-club: P5.js :javascript: Sound 🔉 Visualizer by @matthew! Thanks for all the help! :quad_parrot: It's very cool, I learned many awesome coding things and I debugged too 🐛 :dino-debugging: , as well I deployed the project to Vercel! :vercel: acousticgalaxy.vercel.app. And here's the repo! :github: :pullrequest: github.com/J-cordz/Acoustic-Galaxy :parrotdad:
https://cloud-1kepcculp-hack-club-bot.vercel.app/0acoustic-galaxy.pnghttps://cloud-vga4s3v4b-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-12_a_la_s__22.40.11.pnghttps://cloud-8cckrxovo-hack-club-bot.vercel.app/0acoustic-galaxy-deploy.png
Today I had my last day of Biology 🦠 Lab 🔬of all of my semester and high school!!! :backpack: This is both something sad :sadge: and good at the same time :yay: because even when I finished it, I know I got to learn a lot of amazing :quad_parrot: and cool :cooll-dino: things that will be useful for my future and I leave it with a lot of good memories. So here's my last group of cell pictures 📸 I took today, this are Fungi and Protist ,also I might make a small website to host all of them! :quad_parrot: Also here's some other city 🌆 pictures because after lab 🧪 this afternoon I went home walking. 🏠
https://cloud-19pmsoej8-hack-club-bot.vercel.app/0img_20220511_165649.jpghttps://cloud-9gggvu56k-hack-club-bot.vercel.app/0img_20220511_165620.jpghttps://cloud-3ouegqnha-hack-club-bot.vercel.app/0img_20220511_184533.jpghttps://cloud-6uurjdie9-hack-club-bot.vercel.app/0img_20220511_183919.jpghttps://cloud-7nqy6neo1-hack-club-bot.vercel.app/0img_20220511_183931.jpghttps://cloud-cdn574bep-hack-club-bot.vercel.app/0img_20220511_171331.jpghttps://cloud-d5j4vtjpi-hack-club-bot.vercel.app/0img_20220511_182535.jpg
Today I managed to complete my new 🥮 feature of Splatter Paint 🎨! Now the second type of path looks more like a brush !🖌️ To do this I worked with mouse vectors :cursor-pointer: :this-toitle: Also here's a picture of a cat I saw earlier today. :thinking: :cat_typing: :cat-on-the-laptop:
https://cloud-nq2ysvn8c-hack-club-bot.vercel.app/0img_20220510_215944.jpghttps://cloud-dsz0dr4k0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-10_a_la_s__20.17.49.png
Today at school I finished my Science Fiction 🛸 comic! :quad_parrot: I really like how the grid with the images looks! 🖼️ Also on this days I've been working on my next Hack Club workshop since I have a few things finished and I'll get back at translating soon! :hack-club: As well I've been studying for my Biology exams 🔬 🦠 that I'll have soon because I almost finish my final semester at high school! 🏫 :parrotdad:
https://cloud-zhz9en4u0-hack-club-bot.vercel.app/0img_20220509_195209.jpghttps://cloud-4cq6i69ko-hack-club-bot.vercel.app/0img_20220509_194707.jpg
FIRST SHIP EVER!!! 🚢 :quad_parrot: 🎉 Hello everyone, today I can finally and very happily say that I have made my first ship! And not just one, but 2 in 1! 🥇 So let's get started! :parrotdad: The first thing I'm shipping right now is my Splatter Paint 🎨 project made with Paper.js :javascript: This is a HTML Canvas which lets the user draw circles with different sizes and colors and a linear path 🖊️ as well. My code is hosted on my GitHub Account :github: and it's deployed using Vercel! :vercel: This is as well the first project on which I use it, and I must say it's very cool to use! Thanks to all of this, I can say that this project helped me to understand better how JavaScript works, how to write awesome :cooll-dino: READMEs and how to deploy with Vercel. 🗃️ So the second thing I did is a great CSS :css: Customization to my #scrapbook :hack-club: profile! (This is also the first time I'm posting to it outside of the channel itself). I did it a few days ago as you can see it on my Scrapbook posts, but I was told to ship this as well! This features a custom background with a texture, gradients, the application of elements like :before and :after , some cool borders and a great animation! From this I learned how to get better at design and with CSS. To all of this I'm attaching some pictures 📸 of the projects and the links! 🔗 🌐 github.com/J-cordz/Splatter-Paint :github: splatterpaint.vercel.app 🔗 gist.github.com/J-cordz/e9d92b3b5cba0e35ed6ec830d1a2b0b2 :github: That's all for today, feel free to ⭐ any of the projects or follow me if you like and see y'all later with the next Ship!! Wahoo!
https://cloud-f5hk0hox0-hack-club-bot.vercel.app/0vercel-deploy.pnghttps://cloud-i3iajvxkk-hack-club-bot.vercel.app/0splatter-paint-readme.pnghttps://cloud-ai2m0ds91-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-08_a_la_s__16.39.21.pnghttps://cloud-krww35t2z-hack-club-bot.vercel.app/0final-canvas.png
Today I added a small new thing to Splatter Paint! 🎨 As well I had some cool :cooll-dino: :blob-cool: conversations on the slack :slack: like every day :D this time about plants with @ced and others! Here's some pictures of the evening 🌆. Also I downloaded LDtk, which is a 2D Level Design Toolkit! 🎮 I'm also working on a ASCII project about frogs/amphibians. 🐸 Sadly :sadge: I still couldn't went to the movies 🍿 to watch Dr. Strange :drstrange: so I'll have to wait more and my ISP is now blocking Vercel :vercel: even with 1.1.1.1 and others DNS Providers I tried, so I will be setting up a project of my own to try to solve this and as well use @BenjaminSmith server with Outline VPN! 🌐 :wireguard:
https://cloud-8hv3mpt7g-hack-club-bot.vercel.app/0sansevieria-plant.jpghttps://cloud-nj5ls8gst-hack-club-bot.vercel.app/0outline.pnghttps://cloud-755pbuv5t-hack-club-bot.vercel.app/0img_20220507_195804.jpghttps://cloud-qixtv885i-hack-club-bot.vercel.app/0img_20220507_195607.jpghttps://cloud-j3ze5rm5x-hack-club-bot.vercel.app/0screenshot_20220507_225337.jpghttps://cloud-dp7x5vs6v-hack-club-bot.vercel.app/0img_20220507_195529.jpghttps://cloud-doudn6d2j-hack-club-bot.vercel.app/0img_20220507_203433.jpghttps://cloud-gpnz9b51k-hack-club-bot.vercel.app/0img_20220507_195507.jpg
Today I added more scenes to my Sci-Fi 🛸 👽 comic at school! I also worked on features for some coding projects! 💻 :quad_parrot: Sadly :sadge: today I couldn't went to the cinema 🍿 to watch Dr. Strange :drstrange: , so I'll have to make my best to finish early all the work 📜 🖊️ 📖 I have to do tomorrow so I can have time to watch the movie! Also I'm almost ready to make my first ship ever!!! 🚢 :parrotdad:
https://cloud-3pidh1nul-hack-club-bot.vercel.app/0comic.jpg
Today I started working on a Sci-Fi 🛸 comic at school! Here's an image in progress of how it's looking so far! :parrotdad: Also tomorrow I'm going to the cinema 🍿 to watch Dr Strange :drstrange: 🎉 , it's already the third 3️⃣ day that the movie 📽️ is out on México :mexicoparrot: , but because tomorrow is finally Friday :tw_spiral_calendar_pad: I will have time to go after school! 🎒 I will probably eat 🥘 🍕 something while in there, and I'll make sure to share too about it!!!
https://cloud-kw1ffez26-hack-club-bot.vercel.app/0img_20220505_120400.jpeg
Today I contributed to the GitHub :github: 2022 Graduation 🎓 repo! :quad_parrot: I helped to translate content to Spanish! :mexicoparrot: :merge: This was very cool :cooll-dino: and I'm glad I was able to help! Now I just need to work on my PR to get submitted as a graduating student! :pullrequest: The holographic collection card 👀 they're giving as a gift 🎁 looks awesome! And while I finish the documentation 📜 💻 for my Splatter Paint 🎨 project, I'll start working with the Sound🎵 Galaxy 🌌 workshop! :hack-club: Here's as well a picture 📸 of the sunset. 🌆
https://cloud-lfz34q0o6-hack-club-bot.vercel.app/0screenshot_20220504_230227.jpghttps://cloud-b6vbfcagf-hack-club-bot.vercel.app/0img_20220504_203628.jpghttps://cloud-bg1fwdgeg-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-04_a_la_s__22.50.31.png
Today I contributed for the first time to the #scrapbook repo with the help of @jessicard! :github: :pullrequest: I made a PR that adds a description and a link to the CSS Customization workshop. :css: This will be very useful for beginners that wants to setup their Scrapbook! :hack-club: It was very cool :cooll-dino: and I look forward for helping more with other things! :parrotdad: Also I'm trying the new Firefox :firefoxlogo: update!
https://cloud-tmdju49go-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-03_a_la_s__22.46.36.pnghttps://cloud-ofanjwmna-hack-club-bot.vercel.app/0firefox_blog_ffx100_orange-2048x1075.pnghttps://cloud-4tco8cam6-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-03_a_la_s__22.45.19.pnghttps://cloud-raz4t5e9w-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-03_a_la_s__22.46.05.png
My ISP 🌐 is still blocking Vercel :vercel: hosted websites, which means I can't access my Dashboard 💻 or anything else, so to solve this I learned more about DNS and did a setup with 1.1.1.1 ! It worked amazing. :quad_parrot: This is a DNS Service by Cloudflare :cloudflare: that helps to avoid this kind of issues. As well I learned more about VPN protocols, cloud ☁️ :cloud-thoughts-head-full: based VM's and web sockets! 🕸️ Lastly, here's a picture of how my Scrapbook :hack-club: with the new CSS :css: looks now on a computer! :macbook-air-space-gray-screen:
https://cloud-j1904gq2z-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-02_a_la_s__22.09.44.pnghttps://cloud-bnpf67m3w-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-02_a_la_s__22.07.54.pnghttps://cloud-h28lhzr18-hack-club-bot.vercel.app/0captura_de_pantalla_2022-05-02_a_la_s__22.08.38.png
Today starts May! And that means my birthday 🍰 🎂 is in two weeks! :parrotdad: :tw_spiral_calendar_pad: Here's as well a picture of a plant 🌱 I took today and a very awesome picture of my new Scrapbook CSS Stylesheet! :css: This is the most complex design I've done for it: It includes a custom background with a texture, gradients, special sized borders with a cool :cooll-dino: red color #EC2F3A I did with the hexadecimal value, and great Pseudo-elements like :before and :after! Also thanks to the #scrapbook Prisma/Postgres:prisma: :postgres: database I learned that I have a 210 days streak! And speaking again on this, here's my Scrapbook website and the GitHub :github: Gist! Feel free to star ⭐ it if you like it!
https://cloud-mmkefkbpz-hack-club-bot.vercel.app/0screenshot_20220501_221430.jpghttps://cloud-dpie0dquw-hack-club-bot.vercel.app/0img_20220501_164543.jpg
I'm also making CSS Gradients as well! :css: Here's a code block with a custom gradient I did today! :yay: I mixed colors using Photoshop :photoshop: at school to get this: background: linear-gradient(0.25turn, #ec2f3a, #6126c7); 💻
https://cloud-ofspokeza-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-30_a_la_s__23.07.25.png
Today I went for a walk around the city 🏙️ and took a few pictures! 📸 One is from a recent 🌆 sunset and the others are from places around the city center!
https://cloud-d9e6vuetc-hack-club-bot.vercel.app/0img_20220429_203118.jpghttps://cloud-a1fob2iks-hack-club-bot.vercel.app/0img_20220430_201614.jpghttps://cloud-1b4bedl84-hack-club-bot.vercel.app/0img_20220430_195204.jpghttps://cloud-c5dbxrhil-hack-club-bot.vercel.app/0img_20220430_194203.jpghttps://cloud-bjmj39b8h-hack-club-bot.vercel.app/0img_20220430_193433.jpghttps://cloud-159jh8603-hack-club-bot.vercel.app/0img_20220430_200706.jpghttps://cloud-kerr3udkm-hack-club-bot.vercel.app/0img_20220430_204303.jpg
Today I had a normal but very good school day! It was also the last day of my Chemistry Lab classes 🧪 🔬 , and for coding today I'm learning how to setup my Spotify :new_spotify: using Spicetify! I'll make sure to share my playlists soon! 🎼 🎵 🎧
https://cloud-ewujv6ycq-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-29_a_la_s__22.44.12.png
spring-of-making emoji
Today I had my Biology exam 🧬 🔬 🦠 and tomorrow is finally Friday! :tw_spiral_calendar_pad: Today as well I learned how website 🕸️ webrings works and how to make a basic one with HTML/CSS, also I worked on new features for Splatter Paint! This involves the use of z-index to add new interesting things, I also added some turtle :toitle: :toitle-in-a-tent: :toitle-as-a-hack-clubber: emojis to the Club's :hack-club: slack as well! :slack:
https://cloud-nzw0prljq-hack-club-bot.vercel.app/0z-index.png
Tomorrow I have another big Biology test! 🦠 🔬 🧬 Here's some pictures of my school notes 📝 ! :mexicoparrot: Here's also a picture of a cube :rubik-cube: I've been working on in a class using Photoshop! :photoshop:
https://cloud-jwnc71o35-hack-club-bot.vercel.app/0img_20220427_221214.jpghttps://cloud-prdv92ro9-hack-club-bot.vercel.app/0img_20220427_220358.jpghttps://cloud-m9bxvharn-hack-club-bot.vercel.app/0img_20220427_221032.jpghttps://cloud-cevr1jkbk-hack-club-bot.vercel.app/0img_20220427_221304.jpg
After a lot of time, I finally got to draw my Hack Club :hack-club: Dino :cooll-dino: and add it to the repo! :github: It was the #500th Pull Request! :merge: It was a cool small project and I'm glad it's finished, now I'll try to accomplish my other things in development! 💻 Also here's a Manatee image as well! :manatee:
https://cloud-ognm3ki8x-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-26_a_la_s__13.39.54.pnghttps://cloud-1glft0de0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-26_a_la_s__20.55.28.pnghttps://cloud-oyio8its8-hack-club-bot.vercel.app/0manatee.jpeghttps://cloud-ody5vwsbp-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-26_a_la_s__13.10.42.pnghttps://cloud-24xwhhw0r-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-26_a_la_s__13.11.04.pnghttps://cloud-r9eznhw81-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-26_a_la_s__13.42.48.png
cooll-dino emoji
github emoji
manatee emoji
pullrequest emoji
merge emoji
spring-of-making emoji
dinoisseur-badge emoji
Today I'm starting school again! 🏫 So this means that my spring break :spring-of-making: is over and I'll go back to normal activities, today for coding 💻 I researched some ways to add comments to my website in dev! 🕸️ Also tomorrow I'll have a big Biology 🧬 🦠 exam again so I'm focusing on studying, and here's a night 🌃 photo 📸 of my city! :quad_parrot:
https://cloud-7fcvzl0ii-hack-club-bot.vercel.app/0img_20220425_225512.jpghttps://cloud-9jnd1lh5d-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-25_a_la_s__22.26.42.png
Today I added a small description to my Splatter Paint repo :github: README! Now under a new :vercel: vercel domain: splatterpaint.vercel.app :quad_parrot: I also did some configuration to my terminal like changing the font again and learned more about Paper.js :javascript: functions and paths to add more things to my project! Lastly, today is my last day of school break and I go back to school tomorrow! :spring-of-making: 🏫
https://cloud-h93qorl10-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-24_a_la_s__22.03.52.pnghttps://cloud-gky23r94c-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-24_a_la_s__23.02.24.pnghttps://cloud-ligfjsfyp-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-24_a_la_s__22.04.41.png
spring-of-making emoji
I finally arrived back! 🛬 The trip was a bit long and this time I didn't had time ⏲️ to make mid-day updates but everything went great! As planned, I waked up early 🌄 and then went to the airport, ✈️ and after arriving into the Capital I took a bus back into the state! 🚌 🗻 The route was different and I took a lot of different pictures on many places 📸 , as you can see here, like the Lake of Cuitzeo!
https://cloud-knnqi55w3-hack-club-bot.vercel.app/0screenshot_20220423_203731.jpghttps://cloud-w7chyimxg-hack-club-bot.vercel.app/0screenshot_20220423_203750.jpghttps://cloud-6tbvtmdcw-hack-club-bot.vercel.app/0screenshot_20220423_203807.jpghttps://cloud-q9yuqs0hb-hack-club-bot.vercel.app/0img_6893.jpghttps://cloud-1bugaew79-hack-club-bot.vercel.app/0img_20220423_174903.jpghttps://cloud-k0kcte0o8-hack-club-bot.vercel.app/0img_20220423_183104.jpghttps://cloud-mb7zhl5t4-hack-club-bot.vercel.app/0img_20220423_151630.jpghttps://cloud-bli3iq9n2-hack-club-bot.vercel.app/0img_20220423_181551.jpghttps://cloud-j406hs0ze-hack-club-bot.vercel.app/0img_20220423_181536.jpghttps://cloud-pcc31ear2-hack-club-bot.vercel.app/0img_20220423_201842.jpg
Today I continued customizing my coding setup, learned about font ligatures on CS and started using Victor Mono font! Looks very cool and it has nice features! 💻 ✍️ Also tomorrow is my trip back home, so I'll have to travel by plane again! ✈️ I'll keep y'all updated! :quad_parrot: So for this I will need to wake up very early 🌅 to have time to eat breakfast 🍳 Like previous time, I'll make multiple posts about how it's going!
https://cloud-jj6n3hf0s-hack-club-bot.vercel.app/0screenshot_20220422_231541.jpg
Today I studied and work a bit on school things and projects! 🏫 🎒 I'll try to be able to make some coding progress :hack-club: and build some projects during this next days 💻 , besides this, theres an announcement :sadge: : My Spring Break :spring-of-making: is almost over, so that means I'm going back to school this next Monday :tw_spiral_calendar_pad: and that I will have to travel again to be back! 🌴 🛫 🌄 🛬 Here's an image 📸 I took some time ago on a place I went to travel! 🗺️
https://cloud-djmzrxfd8-hack-club-bot.vercel.app/0img_20220202_143303.jpg
spring-of-making emoji
Here's what I was talking about on my previous time! And it's that I deployed a project for the first time, and I decided to do it with Vercel! :vercel: It's so fast and easy to setup, this is my Paper.js :javascript: canvas, now available both on my GitHub :github: github.com/J-cordz/Splatter-Paint and on it's own website! 🕸️ splatter-paint.vercel.app, next step with this is to add more information to the README and then move to the next :hack-club: workshop! This was useful to understand better how to properly setup a project and have a fun time with code! 💻
https://cloud-8k5ptmffz-hack-club-bot.vercel.app/0vercel-logo.pnghttps://cloud-bds9spcwn-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-20_a_la_s__22.23.21.pnghttps://cloud-7iit9vsb2-hack-club-bot.vercel.app/0vercel-deploy.png
Today there's both artistic 🎨 and coding 💻 things! First, I've been saying many times that I'll share my pantings in here, so as a first post about that, I'll share some old artworks I did many years ago, starting with a boat painting with watercolors. 🖼️ 🖌️ ! I'll share the rest when I find them :) Also I'm working on a small pixel tree 🌴 and there's going to be a full post for the biggest thing of the day 👀 . And about coding, today I help :quad_parrot: fixing a typo :merge: on a repo! :github: It was pull request #1 🥇 :blobattention: on Gamelab's console project! :gamelab: 🕹️ . Lastly for now, I am changing the song of my Scrapbook to another of Imagine Dragons as well. 🎵 🎧
https://cloud-iicfbcmgr-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-20_a_la_s__19.05.01.pnghttps://cloud-hpi4rnbcj-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-20_a_la_s__19.05.32.pnghttps://cloud-b05z78txk-hack-club-bot.vercel.app/0img_6887.jpg
spring-of-making emoji
github emoji
gamelab emoji
pr emoji
This is probably going to be my last post about the Splatter Paint Canvas before shipping it at #ship! 🚢 🎨 Today I implemented to it some changes and decided to leave it as a standard canvas without other things like a Navbar :css: . This will also apply to other workshops :hack-club: where there's not a lot of room for extra things, but on the fully customizable ones I'll add a lot of awesome :cooll-dino: things! 💻 Today as well I learned more about Zotero, an app for managing bibliography on researching! This will be so useful for my Biology projects and research at school! 🦠 🔬 , so this will be on my app list as well. :quad_parrot:
https://cloud-avvckx7ab-hack-club-bot.vercel.app/0canvas.jpeghttps://cloud-3na2d75w3-hack-club-bot.vercel.app/0screenshot-1.4_2x.png
Here's a quick photo 📸 I took a while ago to avoid loosing my #scrapbook streak! :hack-club: My internet is not working properly :sadge: 🕸️ . Besides this and my previous attempt to add new things to the other posts which didn't worked 🕹️ , today I worked again on my workshop! I added new things to the website like a navbar with a lot better design using flexbox :css: and a small description! 💻
https://cloud-jqwk0ew3r-hack-club-bot.vercel.app/0screenshot_20220418_210017.jpg
spring-of-making emoji
I finished the HTML Canvas! I still don't upload my files to GitHub because I don't know how to name the repo :peefest: but I'll think on something soon! And regarding what I said previously that I'll make pixel art, well I find out about Textmode Art! Textmode is a broad term for art made with a monospaced font on a uniform grid, like what ASCII is!
https://cloud-7mxotqeyy-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-17_a_la_s__18.14.48.pnghttps://cloud-7726ez96w-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-17_a_la_s__18.12.18.png
Today besides studying, I managed to have some time ⏲️ to work again on the Splatter Paint Workshop 🎨 💻 using Paper.js :javascript: ! I've been working on this for a few times to get better on JavaScript and some of it's libraries! And lastly for today, I will be trying to learn how to solve a Rubik's Cube! :rubik-cube: :quad_parrot:
https://cloud-nf0zy083m-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-16_a_la_s__19.46.04.png
During this next days, I will be working on a course 📕 for preparing myself for the college exams! I might not have time to code/research this next days, also I still don't have electricity 🔌 ⚡ at my house! :sadge: Here's an image I somehow took of my iPod 🍎 starting up a few years ago! I still don't know how that happened :thinking: .
https://cloud-4q3pp24si-hack-club-bot.vercel.app/0img_1103.png
So today is my second day without electricity 🔌 💡 on my house :sadge: . Besides this, I worked on school things and other stuff on my house and for coding 💻 , today I read a bit about some differences between :javascript: P5.js and three.js for making art with code! The first one is more oriented for 2D and the second for 3D so I'll have to choose what to learn first! :quad_parrot:
https://cloud-peaugwc6u-hack-club-bot.vercel.app/0screenshot_20220414_223829.jpg
So today I continued working normally on my school homework, finished the game Abzu :playstation: 🎮 and did a draft for a coding project! I also lost my GitHub :github: streak because I wasn't able to make a commit :pullrequest: 🟩 and the power 🔌 is gone at my house, so here's a picture of my MacBook wallpaper.
https://cloud-klvk46rkr-hack-club-bot.vercel.app/0gruvbox_not.png
spring-of-making emoji
Today I contributed on GitHub :github: to Hack as a Service! :haas: I helped to add a few things to the front-end repo :pullrequest: :merge: like a small description from the docs about HaaS , I also added a badge that links to the project License :blobninja: and fixed a broken link! 🔗 Tomorrow I'll try to help with the docs repo, add some new files to a personal project and continue working on my Biology Lab homework like I also did today!!! 🦠 🔬 :quad_parrot:
https://cloud-d3z1z91cs-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-12_a_la_s__23.31.57.pnghttps://cloud-7gm2v1pfz-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-12_a_la_s__23.31.09.png
Today was the start of my Spring Break! I worked on questionnaires about all the Biology lab 🧪 experiments and topics I've seen on school! 🦠 🔬 🌱 Also today I got an answer about my first GitHub Issue, :merge: but it was that GitHub don't accept pull requests for translated repos on their docs so looks like they won't solve the typo I found! ¯\(ツ)/¯ Today I also finished a lot better design of my GitHub Readme, I know I get to work on that a lot but it looks way better now, and it got a MIT License :mit: so people can use the design too! It uses many cool open source tools! :quad_parrot: I also gave stars ⭐ to cool repos and added them to the new lists on beta, it's an awesome feature! Today I also worked again on the Splatter Paint workshop, and understood a lot more JavaScipt functions :javascript: :blobninja: ! Lastly I started reading the John Green book I mentioned yesterday! It's a fun read so far! 📕
https://cloud-ift2nabcm-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-11_a_la_s__22.43.32.pnghttps://cloud-76j61e3fi-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-11_a_la_s__22.43.10.pnghttps://cloud-8zvf5ep8b-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-11_a_la_s__22.44.44.png
Today I worked on few projects, started reading some books 📚 and enjoyed my last weekend before the start of my Spring Break :spring-of-making: tomorrow which I'll enjoy more because of all the free time and opportunities I'll have! Also thanks a lot to my new GitHub :github: followers! Now there are 27 and going up, which I thanks a lot even when my work is getting done slowly 🦥 ! Anyways, my Docs Issue stil hasn't been checked so I will continue waiting for that :merge: and today I also started putting in practice some Markdown things I know like collapsed sections!
https://cloud-3x9pg1t1y-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-09_a_la_s__22.49.41.pnghttps://cloud-kc7mo5os8-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-10_a_la_s__23.56.38.png
github emoji
spring-of-making emoji
Besides my journey of today 🚌 🛬 🌴 I also opened my first ever GitHub :github: Issue on the GitHub Docs Repo! :quad_parrot: There's a typo on the Spanish Translation of a docs page, and because they don't allow yet pull requests :pullrequest: for translations I opened an issue so it can get check and fix! I hope everything goes alright and it gets corrected, which would be awesome because that would be too my first successful code contribution outside of Hack Club, on which I look forward as well to keep helping more on the future! :hack-club: :merge:
https://cloud-mnrjsf29f-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-09_a_la_s__22.48.54.pnghttps://cloud-n1q8g0fp8-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-09_a_la_s__22.49.41.png
spring-of-making emoji
github emoji
goose-honk-technologist emoji
awesome emoji
I finally arrived! 🛬 🌴 🗺️ Thanks everyone who stayed on my previous posts! :yay: I'll share more updates on everything and answer comments soon! :quad_parrot:
https://cloud-i6ne49ums-hack-club-bot.vercel.app/0img_20220409_165706.jpg
Second journey update! So I continued travelling and got out of the state! I continued listening to great music and fell asleep 🛌 for a while, and after waking up again, the environment ⛰️ nature 🌵 and weather started changing because I was on a different region, so it got fog 🌫️ and a lot lot more colder! ❄️ After another hours I arrived to the country's capital where I went from the bus station 🚉 where that first part of the journey ended 🚋 and went to the airport where I ate a soup :soup-with-herb: and a hamburger 🍔 and then went to my plane after another few hours. ✈️ Here's some images of the landscape 🌆 there aren't images on the plane right now because there's no internet there, so wait for my last update!
https://cloud-igjtg5t93-hack-club-bot.vercel.app/0img_20220409_081337.jpghttps://cloud-dvyd1z3rf-hack-club-bot.vercel.app/0img_20220409_080519.jpghttps://cloud-5wqk3iu4n-hack-club-bot.vercel.app/0img_20220409_080940.jpghttps://cloud-8t7ix78uh-hack-club-bot.vercel.app/0img_20220409_081336.jpg
scrappy emoji
spring-of-making emoji
First trip update! As you already know due to the first update of today, I waked up at 4:00 AM 🕐 and arrived to the bus station 🚉 after having an early breakfast 🍳 at 6:00 AM! Then I aboard the bus as you can see on the first image which is on the dark! Then I continue travelling through the state looking at the mountains and the sunrise while listening to some cool music 🎵 🎧 like Imagine Dragons! It was a very cold 🧊 and cloudy ☁️ morning!
https://cloud-1cr6g8um2-hack-club-bot.vercel.app/0img_20220409_074844.jpghttps://cloud-641zjizrn-hack-club-bot.vercel.app/0img_20220409_074546.jpghttps://cloud-otvj4wl0k-hack-club-bot.vercel.app/0img_20220409_061320.jpghttps://cloud-eu8y05nu1-hack-club-bot.vercel.app/0img_20220409_074043.jpghttps://cloud-p185hepvs-hack-club-bot.vercel.app/0img_20220409_073124.jpghttps://cloud-693uo9kwt-hack-club-bot.vercel.app/0img_20220409_074942.jpghttps://cloud-kuboule3c-hack-club-bot.vercel.app/0img_20220409_074854.jpg
Today I'll go to a small trip 🗺️ so I won't have time to work on projects! Instead I'll be on the road 🚗 and then on an airplane ✈️ to go back to my first home! I will be reading some interesting books, listening to some cool music 🎧 and maybe I will draw 🖊️ a bit, play some games 🎮 or code 💻 locally depending on my devices batteries! 🔋 I'll try as well to share images, so meanwhile here's two very cool :blob-cool: landscape images 🌆 part of my first Scrapbook post of the day! :tw_tada:
https://cloud-okfb7ywvl-hack-club-bot.vercel.app/0img_20220407_195307.jpeghttps://cloud-d5lg2jndn-hack-club-bot.vercel.app/0img_20220408_142959.jpeg
Today I added new HTML and CSS files to my personal website Repo on GitHub! :github: I also made a few changes to my README Profile, because I wrote new text that I'll add soon and moved my trophies ⭐ theme from Monokai to Gruvbox. Also I learned about what Prettier indentation is thanks to @caleb! Next, today was my last school day before my break so this next two weeks are free and I'll have time to relax, study more, code and make new things! I will also try to work with my workshops and I'll make a pull request to GitHub Docs because I found a typo on their page! 👀 :pullrequest:
https://cloud-miyso23xi-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-08_a_la_s__23.42.12.pnghttps://cloud-lbfjgl3wv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-08_a_la_s__23.43.02.pnghttps://cloud-ke4ymqtnv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-08_a_la_s__23.48.12.png
Tomorrow I will have my last midterm exam 📝 before the start of my High School spring break :spring-of-making: next week! :quad_parrot: In addition to this, today I worked a bit with Blender :blender: on 3D models like this Icosahedron :icosahedron: and tried using Krita :krita: again for Digital Art!
https://cloud-lizh3lwgd-hack-club-bot.vercel.app/0calligrakrita-base.svg.pnghttps://cloud-cmp5ucphr-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-07_a_la_s__23.23.46.png
So today I had Biology 🦠 Lab 🔬 again and did a lot of experiments! I also learned about Gitmoji 🚀 an emoji guide for commit :pullrequest: messages, and tomorrow I have an English Exam on Biological 🌱 /Medical 🥼 terms, as well and I'll try to digital draw my Bio diagrams that I have on my notebook! Also I will be adding new things on my Itch.io profile and write new content for my CodeJelly :jelly-grape: Sic-fi 🛸 story submission, which started working as a small game in dev after the event! :itch-io: And finally, although I coded a bit today, keeping a Github :github: streak 🟩 is hard, which is something I'm probably not going to be able to keep going, besides all of this, my day also went very well! :quad_parrot:
https://cloud-1ykotmr7q-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-06_a_la_s__22.08.46.pnghttps://cloud-1d6q2x19w-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-06_a_la_s__21.55.58.png
Wahoo! Today I created the repo for my website in progress! :github: github.com/J-cordz 🚧 :tw_building_construction: Also I deleted a few forked repos I never used and lost some (many) commits 🟩 which isn't very important, because I want to start fresh with code of my own, documenting my full coding journey, including errors and mistakes! Also I researched about Conventional Commits, a way to write them and I'm going to be using the Fish Shell 🐟 as a recommendation from @Arash and as an alternative shell 🐚 to Bash and Zsh !!! :quad_parrot:
https://cloud-j1z3hiua3-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-05_a_la_s__22.51.11.pnghttps://cloud-qmn9xtzxs-hack-club-bot.vercel.app/0website.pnghttps://cloud-hc8w8xj18-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-05_a_la_s__22.58.28.pnghttps://cloud-4g32122n3-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-05_a_la_s__23.05.20.png
wahoo-fish emoji
wom emoji
goose-honk-technologist emoji
github emoji
Today I had my Calculus Exam and it went great! All the study hours were worth it! :quad_parrot: Also today r/place ended, and although we couldn't keep the Hack Club logo :hack-club: on the canvas it as a nice and fun experience! And that's a very cool memory to keep :D 🗃️ 🚗 Also I finished the main part of my website content, so coding is a priority for it again! And started customizing the Stats Bar for my Macbook Air :macbook-air-space-gray-screen: as part of my rice in progress! 🌾
https://cloud-lom07xxug-hack-club-bot.vercel.app/0gruvbox.png
Today I continued studying for my Calculus Exam 📝 📖 that I'll have tomorrow, and helped on making Pixel Art at r/place on Reddit with a Hack Club logo :hack-club: , a few México Flags :mexicoparrot: 🇲🇽 , Linux Tux :linux: and Distros:8bit-tux: and a few very cool gaming themed drawings/art🎮! Also I will be trying to keep making more pixel art and upload it in here! 🎨
https://cloud-8sxol9zdz-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-03_a_la_s__23.22.14.pnghttps://cloud-o79vtpjy3-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-03_a_la_s__23.19.57.pnghttps://cloud-nh9081l67-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-03_a_la_s__23.27.17.pnghttps://cloud-g92dm9uvv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-03_a_la_s__23.35.23.pnghttps://cloud-cf09unr5n-hack-club-bot.vercel.app/0captura_de_pantalla_2022-04-03_a_la_s__23.21.18.png
Listening to Imagine Dragons while studying for Calculus!!! :quad_parrot: 🎼 :new_spotify:
https://cloud-mkk0duw0z-hack-club-bot.vercel.app/0evolve-imagine-dragons-cover-e1498227121117.jpeghttps://cloud-g080ig7vl-hack-club-bot.vercel.app/0folder_920_201707260845-1.pnghttps://cloud-lq6e5mvgh-hack-club-bot.vercel.app/071ssq3hsgel._sl1024_.jpghttps://cloud-7ztdsxme8-hack-club-bot.vercel.app/0imaginedragons-mercury-act1-web-1-1024x1024.jpeg
Second 🥈 Update of the day! 🍨 I got some Speculoos Ice Cream, and also I have Calculus exam next Monday so I will be studying for it! Due to this, there are not coding progress or anything else for today! 💻
https://cloud-lsxmt10gz-hack-club-bot.vercel.app/0img_20220401_164314.jpg
First Update of the day! 🥇 Chemistry Lab! 🧪 Today we work with aldehydes and ketones, which are organic compounds! This were a few experiments where we did reactions to identify them, very cool and interesting! :quad_parrot:
https://cloud-f3gczmugu-hack-club-bot.vercel.app/0img_20220401_113418.jpg
wom emoji
Tomorrow I have a Physics exam! So besides studying, there are not going to be a lot of updates today! So here's Pikachu. :pika:
https://cloud-7cvugznau-hack-club-bot.vercel.app/0pikachu.png
Today I had Biology Lab 🦠 at school :backpack: and worked on DNA experiments! 🧬 Also I kept joining new conversations and awesome channels on the Slack :slack: like #question-of-the-day where I answered a cool question about plants, I tried the new welcoming flow :toriel: on the Club :hack-club: , I still remember the tutorial when I joined last year :scrappy: , I also studied for another test and had a great day! Here's a shark at a kelp forest. 🦈 Quality of the image isn't the best because I had to transform it into a screenshot 📷 so I could add it to my post because the previous file extension didn't worked!
https://cloud-72gwhyl46-hack-club.vercel.app/0screenshot_20220330_223918.jpg
Today I had an exam, coded a bit, formatted a USB to exfat :tw_floppy_disk: at school to help on my Biology class, where I download some amazing 🌱 🦠 presentations for this semester that will also be useful at college, also I tried to make something on Blender :blender: but that didn't work so well, and lastly I learned more about HTML Canvas!!! :quad_parrot:
https://cloud-kawsz6di3-hack-club.vercel.app/0captura_de_pantalla_2022-03-29_a_la_s__23.20.43.png
Today I had my Organic Chemistry 🧪 test and tomorrow I have an English one! Also I will be downloading some Biology 🦠 presentations for my class to study, and I'm planning to somehow host them on a website to be able to share and view them online, so I have to find ways on how to do that! 💻 Today I couldn't work on my personal website, also I'll try to get back at Blender soon! There's a new version with cool features, and 3D Modeling is awesome so I'll make my best to keep learning 3D Art! :blender:
https://cloud-4pi58jq9r-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-28_a_la_s__22.48.47.png
Today I continued working on my website with @caleb's help! :w00w00: I made a navigation bar with CSS :css: and flexbox and continued writing the content! I also had an awesome talk with @JackyZhao about Digital gardens and other kind of tools! 🪴 Lastly, tomorrow I have an Organic Chemistry exam about functional groups! 🧪 Here's an image of some gigant Selenite crystals on Naica's Cave on México. :mexicoparrot: Would be cool to work on a Geology Project! 🪨
https://cloud-9tqu1asi0-hack-club-bot.vercel.app/0cristales_cueva_de_naica.jpeg
📸 Photography is an amazing way to capture moments, so here's two of the pictures I've taken, there are thousands of them that I've taken with the years so there's many for more #scrapbook posts! :hack-club: Besides this, I studied and got to work a bit again on projects! 💻
https://cloud-csnybw2i2-hack-club-bot.vercel.app/0img_20220321_191300.jpeghttps://cloud-4p9r4xnsb-hack-club-bot.vercel.app/0img_20220317_112402.jpeg
wom emoji
Today I got to write more content for my website, design is very important, but been able to express what I want to share is too! I also studied today for my Organic Chemistry ⚗️ 🧪 exam that's going to be this next Monday and here's some plants 🌱 on a photo I took 📸 a while ago because I need an image to post here. It might look a bit blurry because I took it through a car's window. 🚗
https://cloud-b5jxd79vf-hack-club-bot.vercel.app/0screenshot_20220325_233524.jpg
Today I continued talking on the Slack :slack:, contributing to some interesting conversations on friends channels, I coded a bit, and made a small progress on the background gradient, although I still can't find a good enough color scheme combination, and learned as well about SVG Animations which I'll try to add to my website! Thanks @maggie :maggie: for the help and the tutorial! Here's also another Astro's Playroom screenshot on my PS5 and one of the menu with some of my games (I'm still downloading some of them):playstation: 👀 Also I just realized that my contributing/streak diagram looks like a face due to it having some blank spaces, which i'ts a bit weird because I post daily :thinking: and finally, tomorrow I'm going to have more website updates!
https://cloud-a9r1zi0bv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-24_a_la_s__22.54.24.pnghttps://cloud-8a7m3wulc-hack-club-bot.vercel.app/017fbf69569710-screenshoturl.jpeghttps://cloud-fagphqykm-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-24_a_la_s__22.46.20.pnghttps://cloud-j6it7nflj-hack-club-bot.vercel.app/017fbf68555588-screenshoturl.jpeg
playstation emoji
slack emoji
wom emoji
Today I had Biology 🌱 Lab 🧪 and the answers of the Biology 🦠 test I did a while ago! I got the second highest score on it. 🥈 I also have new design ideas for my website! :yay: Here's some random pictures 📸 from my gallery because there's nothing to add in here. I should probably have a default image to add to my Scrapbook :hack-club: when there's nothing else to add :thinking: , so I'm going to be designing that soon! :quad_parrot:
https://cloud-3gilvey5d-hack-club-bot.vercel.app/0screenshot_20220323_230350.jpghttps://cloud-koghhso21-hack-club-bot.vercel.app/0screenshot_20220323_230412.jpghttps://cloud-bm6n1n4q0-hack-club-bot.vercel.app/0screenshot_20220323_230507.jpghttps://cloud-ir30zt2vb-hack-club-bot.vercel.app/0screenshot_20220323_225959.jpg
Tomorrow I'm having Biology 🌱 Lab 🧪 again, but sadly :sadge: looks like the microscope 🔬 practices are finished, so the next ones are going to be different, more data-writing 📝 focused. Also I've been trying to work again on my website, and decided to use a gradient background so I'm learning how to to that with CSS :css:!
https://cloud-iu7vrq4h6-hack-club-bot.vercel.app/0screenshot_20220322_224522.jpg
Here's some of the pictures I took today, on a separated Scrapbook :summer-of-making: post because I forgot to add them earlier! 📸 Anyway, it was a very interesting day, I ate Pizza 🍕 and saw many things. Tomorrow I'll have new things to share after continuing working, so that's all for today!!!
https://cloud-ppmh0nu3y-hack-club-bot.vercel.app/0img_20220321_191300.jpghttps://cloud-4kl75fwna-hack-club-bot.vercel.app/0img_20220321_162540.jpg
wom emoji
Today I had to do a small trip 🚗 to a near city 🏙️, so I couldn't work on many things, although I managed to finish yesterday all of my homework so I didn't had to do that today! Also, GitHub :github: now let people to follow Orgs so I gave a follow to Hack Club :hack-club:! The best community ever and that I'm very happy to part of! :quad_parrot: Also I started reading The Culture Sci-Fi 🛸 books as a recommendation from @msw! I will be starting with Consider Phlebas and with Excession. 👽
https://cloud-rgx8vekf3-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-21_a_la_s__22.10.07.png
wom emoji
Happy Birthday and Hack Day 🧁 🍰 Hack Club!!! :hack-club: :quad_parrot: Today is Hack Club anniversary, an awesome day to celebrate! 🎉 Joining Hack Club has been a fantastic experience for me, it let me learn and build great things, make new friends and have the best moments! And today I designed a Gadzo͞oks!𓃞 workflow for @caleb in #denio-den! And I’m going to be working on a better version of my Itch.io website for my game development projects! In this area, I need to learn more how the DOM works, and I'm going to be using @ced's tips and resources he gave me some time ago!!! 🎮
https://cloud-k94csftsi-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-20_a_la_s__14.35.44.png
Today I did a lot of Biology Lab 🧪 🌱 homework 📝, and in this following next days I'll try to go to the Zoo and take some pictures! 📸 🦙 Meanwhile, I've been thinking on making a Youtube :youtube-logo: Channel to share some interesting tutorials and maybe some of my game walkthroughs! 🎮 Also, my poll about dinosaurs 🦕 was a total success, with many options and a lot of participants! I'll try again to publish on #poll-of-the-day very soon! And here's a Pterodactyl :pterodactyl: :
https://cloud-17gsx9jjq-hack-club-bot.vercel.app/0image-3.png
I'm going to be using the new Open Source contribution guide to try to help more! 💻 During my time at Hack Club :hack-club: I've contribute to translate workshops to Spanish and review a few Pull Requests :pullrequest: Now I need to draw my Dino :orpheus: :smug-dino: because I haven't add it to the repo, and help with a lot of other cool things and projects. :merge:
https://cloud-fsd92z021-hack-club-bot.vercel.app/0screenshot_20220318_224458.jpg
Today I had an awesome school presentation on Biomedicine Engineering! 🧪 It was a very cool event, there were 3D Printers, robots 🤖 that use Python :python: , prosthesis models that use biological electrical 🔌 signals to work and many more things! I could take a few pictures that I'll try to updated and share this next days. I also had Chemistry ⚗️ lab where we did a lot of cool experiments on Amines! And because the biomedicine talks and presentations ended a bit late, I went walking back to my home, here's some very nice pictures of my city! 🌆 🏙️
https://cloud-qp4qh1qw1-hack-club-bot.vercel.app/0screenshot_20220318_200736.jpghttps://cloud-p0onfcijp-hack-club-bot.vercel.app/0screenshot_20220318_200745_com.android.gallery3d.jpg
So today I finished school early so I had a lot of time to do homework, study and play some games! I'm also going to be applying my new coding knowledge for making my website! I also research more on ways to customize NeoVim :vim: and submitted my first poll to #poll-of-the-day! It's probably going to be up tomorrow, and it's a dinosaurs themed poll! 🦕 Lastly, I saw this amazing README Recruiting page :linear: that talked about computers, the story of how things were before, how they're now and what's up for our future, and it included a very cool phrase: "The best way to predict the future is to invent it." :macintosh-stcicker:
https://cloud-pwk693iau-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-17_a_la_s__22.38.10.png
Today I had Biology 🌱 Lab 🧪 again as every Wednesday, and we did a Haematology study where we analyzed with a microscope 🔬 some erythrocytes and white blood cells like Lymphocytes, Neutrophils, Basophils, Monocytes and Eosinophils! Here's some of the cell pictures took today!
https://cloud-muer86xa3-hack-club-bot.vercel.app/0img-20220316-wa0010.jpghttps://cloud-adz7y7keb-hack-club-bot.vercel.app/0img-20220316-wa0005.jpghttps://cloud-80729aep0-hack-club-bot.vercel.app/0img_20220316_192846.jpghttps://cloud-5nvl776xq-hack-club-bot.vercel.app/0img_20220316_192904.jpg
Fourth and last Scrapbook Post of the day! 4️⃣ 🎉 Today I had a very interesting talk with @caleb! He helped me to get a better understanding on how some coding things can be achieved, like how to add scroll to a website, how to add different background colors on the same page, about viewport height vh relative unit and more awesome things! We used CodePen, which it's a very awesome and useful app! :codepen:
https://cloud-lj4kqqll6-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-15_a_la_s__19.42.00.pnghttps://cloud-4qf7tvo70-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-15_a_la_s__22.57.52.png
awesome emoji
yay emoji
wom emoji
wizard-caleb emoji
Third 3️⃣ Update of the day 🎉! I will be using club-scraps to share a #scrapbook link without posting on the Slack :slack: ! This is a super cool feature for clubs :hack-club: who have community members that aren’t active here, but want to share their work with everyone! I also did a better design on the :toitle: Procedural Art Workshop! And designed this awesome 🐙 :tw_octopus: Octopus -Turtle 🐢 :tw_turtle: emoji based on Google’s :google: stickers! Here it is: :octo-turtle: :octo-turtle: :octo-turtle:
https://cloud-oo6eqezon-hack-club-bot.vercel.app/0turtle.pnghttps://cloud-3ro7dqvv1-hack-club-bot.vercel.app/0turtles-3.pnghttps://cloud-dx5lgxgtt-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-15_a_la_s__22.43.03.pnghttps://cloud-qm03kyz13-hack-club-bot.vercel.app/0octo-turtle.pnghttps://cloud-b29alz7sn-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-15_a_la_s__22.50.50.png
Second 2️⃣ Post of the day 🎉 ! So I have some interesting updates on my Bioinformatics Project 💻! I'm going to be working with DNA Sequences! 🧬 To do this, I will be using databases like GenBank and other tools, but this is going to be after finishing my Web Dev route first, which will take a long time, so this is going to be archived for a lot of time 🗃️ , the purpose of this is going to be to make some data representation, graphics and more!
https://cloud-4usz62kph-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-15_a_la_s__22.39.00.pnghttps://cloud-1qh7glls0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-15_a_la_s__22.37.54.png
wom emoji
Today it’s going to be a day with a lot of updates! :quad_parrot: First 1️⃣ thing for today: 🎉 I finished the implementation of the "before" Pseudo-Element in CSS :css: that I learned yesterday for my Scrapbook :hack-club: , here’s the code:
.nav-link-home::before {
  content: "Javier's ";
}
It's a bit small but effective! It adds my name before Scrapbook. Here's a picture showing how it looks like! 📷 Also I've been thinking about this very cool phrase 🦕 that used to appear on my Scrapbook Profile but now it's gone because I post daily since last year, but it's nice to remember and see how I've progress with time! Lastly, here's also a Parrot Fish picture! 🐠
https://cloud-azimm3709-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-15_a_la_s__13.57.39.pnghttps://cloud-i1u6gxj4n-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-15_a_la_s__13.09.26.pnghttps://cloud-7okbdnpx0-hack-club-bot.vercel.app/06uueccucfv851.jpg
Today I learned more about CSS :css: "before" Pseudo-Element! I studied this using MDN Web Docs, and I'm going to be using this to add interesting elements to my Scrapbook :hack-club:! Also here's an screenshot I took today while playing Astro's Playroom! :playstation: 🎮
https://cloud-duct2fins-hack-club-bot.vercel.app/0screenshot_20220314_225003.jpghttps://cloud-g36aatkwu-hack-club-bot.vercel.app/017f8bda4ee196-screenshoturl.jpg
So today I started setting some new apps and tools from recommendations! I will be adding them with Homebrew :homebrew-mac: to keep everything unified under my package manager on my Macbook! :macbook-air-space-gray-screen: Also I researched more on Tiling Window Managers to complement to my Polybar :polybar: setup! And also I got into #hall-of-fame for the first time!!! 🌟
https://cloud-9ylexf4t0-hack-club-bot.vercel.app/0screen-1.png
wom emoji
Today I had an exam, and got to play some games and install other from my game library at my PS5! 🎮 The SSD is super fast, the new UI is also cool, and overall it's a great experience! I'm totally sure it will let me have awesome gaming experiences as I had this years with my PS4. :playstation: Here's some game screenshots from Spider-Man, Subnautica, God of War and Astro's Playroom, with a cool Easter Egg to Gow!
https://cloud-i3fejayzn-hack-club-bot.vercel.app/017c050eff65-b570843b388ccd0d8d6.1ca9f02b37f148c9_message_417835923962522_1632171577978.jpghttps://cloud-nwzusemuo-hack-club-bot.vercel.app/017c050ede07-b570843b388ccd0d8d6.1ca9f02b37f148c9_message_417835927694880_1632171592558.jpghttps://cloud-dujs8w0b0-hack-club-bot.vercel.app/017c050f222f-b570843b388ccd0d8d6.1ca9f02b37f148c9_message_417835959757092_1632171717801.jpghttps://cloud-1d1fev3yy-hack-club-bot.vercel.app/017c050fde2a-b570843b388ccd0d8d6.1ca9f02b37f148c9_message_417836053956734_1632172085768.jpghttps://cloud-8l2mq2mcf-hack-club-bot.vercel.app/017c05102a7d-b570843b388ccd0d8d6.1ca9f02b37f148c9_message_417836065274875_1632172129979.jpghttps://cloud-3rm6mz7jf-hack-club-bot.vercel.app/017c050f6c4c-b570843b388ccd0d8d6.1ca9f02b37f148c9_message_417835980086269_1632171797211.jpghttps://cloud-k6zq33o4d-hack-club-bot.vercel.app/017f80f453e019-screenshoturl.jpg
So It's finally Friday! Today I had a normal school day and tomorrow I'll have a college admission exam! I plan to use my weekend to rest a bit, code on some projects, study and play games! Also I've been researching on different ways to save my bookmarks! Maybe I'll setup them on Obsidian :obsidian-md: or use Notion! :notion: The purpose of this is to have a database where I can access some interesting facts and articles I've found online, the same way I'm working on my Digital Garden Project! 🌱
https://cloud-xau7ruahe-hack-club-bot.vercel.app/0notion_app_logo.png
Today I had a very important biology test 🌱, and I think everything went well! I'm also going to be working on a few bioinformatics things for projects! 🧬 💻 I just have to research how to first, this is going to be for visualization of amino acids and proteins! Also I've been replaying some games I used to play on my Nintendo 3DS like Luigi's mansion! And lastly, I've been helping with some very interesting #biology questions on some slack channels :slack: , for example one about different ways in which fish 🐠 :wahoo-fish: rest, like Parrot Fish, which creates a protective cocoon!
https://cloud-xe4txcnnr-hack-club-bot.vercel.app/0640px-amphiprion_ocellaris__clown_anemonefish__by_nick_hobgood.jpghttps://cloud-j0kqj5ju4-hack-club-bot.vercel.app/06uueccucfv851.jpghttps://cloud-cd6ek7ics-hack-club-bot.vercel.app/081juz3tbc3l._ac_sx522_.jpg
And this are the images from today's class: First one is worm intestine epithelium, second is striated muscle, the yellow one is brain tissue, and there are pancreas too! In the same way as the previous images, these were taken at my class with the use of a microscope, so I'm getting a lot better at focusing things/samples with it! 🔬
https://cloud-48ab6qp46-hack-club-bot.vercel.app/0img-20220309-wa0006.jpghttps://cloud-6v3fh0uea-hack-club-bot.vercel.app/0img-20220309-wa0018.jpghttps://cloud-iz7rxt21u-hack-club-bot.vercel.app/0img-20220309-wa0008.jpghttps://cloud-7fpv89vzv-hack-club-bot.vercel.app/0img-20220309-wa0009.jpghttps://cloud-7d4d96eru-hack-club-bot.vercel.app/0img-20220309-wa0026.jpghttps://cloud-a6z1nqtia-hack-club-bot.vercel.app/0img-20220309-wa0007.jpghttps://cloud-hoft536rw-hack-club-bot.vercel.app/0img-20220309-wa0022.jpghttps://cloud-h90g7jg7n-hack-club-bot.vercel.app/0img-20220309-wa0020.jpg
Tomorrow I'm having a big Biology test about the Cell Nucleus, DNA Replication, Transcription and Translation 🧬 , also today I had Bio Lab 🧪 again and as promised I'm going to be sharing more pictures, separated this time on two #scrapbook posts :hack-club: :scrappy: , this one with old images from last class which I couldn't upload that time and next one with images from new lab class from today!!! (Here are the previous ones):
https://cloud-14qfpr4wp-hack-club-bot.vercel.app/0img-20220308-wa0006.jpghttps://cloud-89n1amhrh-hack-club-bot.vercel.app/0img-20220308-wa0011.jpghttps://cloud-11n7ybwmm-hack-club-bot.vercel.app/0img-20220308-wa0008.jpghttps://cloud-p2cok2g0h-hack-club-bot.vercel.app/0img-20220308-wa0012.jpghttps://cloud-1dbzmpne7-hack-club-bot.vercel.app/0img-20220308-wa0010.jpghttps://cloud-k4ktv772y-hack-club-bot.vercel.app/0img-20220308-wa0007.jpghttps://cloud-kjfaaw2ef-hack-club-bot.vercel.app/0img-20220308-wa0027.jpghttps://cloud-p9z3bqy8x-hack-club-bot.vercel.app/0img-20220308-wa0013.jpghttps://cloud-mgypcyunb-hack-club-bot.vercel.app/0img-20220308-wa0004.jpg
Today I'm working again on the Procedural Art workshop :toitle: before moving to another one! I'm also going to rice/customize 🌾 my MacBook again! :macintosh-stcicker: :macbook-air-space-gray-screen: And also. setup some terminal and CLI tools! :iterm2: I'm also following MDN Web Docs on Front End Web Development! And here's an image of my first scrapbook post, now turned into a emoji using #emojibot :stickers: ! Lastly tomorrow I have Biology as I said yesterday! So I'm going to be sharing more cool images of tissues on the microscope! 🔬 🧪 :labtocat:
https://cloud-irnvqctwb-hack-club-bot.vercel.app/0hackclub.pnghttps://cloud-gd7jsu1i4-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-08_a_la_s__23.18.35.png
Today I'm learning about Frontend build tools like Vite! :vite: Sounds like a very cool thing to add to my Web Dev knowledge! Also today I registered for NASA :nasa: Artemis I Boarding Pass ticket, which it's a very cool space related add-on to the mission! 🚀 Also I'm helping with some channels at the Slack. :slack: And lastly, I'm going to have biology lab again very soon, so I will be uploading more images of cells and tissues later! 🌱
https://cloud-57w7qegwe-hack-club-bot.vercel.app/0boarding-pass.jpeg
So recently I've been thinking on open source and projects abandonment, and the Google :google: Graveyard 🪦 is a very good example of some of their projects that have been left. :dead: Also today I'm studying for my mid exams and working on projects! Here's an image of my scrapbook before this post. :hack-club: So the point of this is that I'm going to be looking for some abandoned projects that looks for help in order to make a small contribution and bring them back! Maybe with design or documentation while I get better at code! And lastly, I'm going to delete my Twitter Account :twitter: , I never got to really use it and I would like to avoid the toxicity and problems and better make a blog / part of my website where I post my ideas on things! 💡
https://cloud-gln3543mo-hack-club-bot.vercel.app/0osi_standard_logo_0.pnghttps://cloud-h7drf2al5-hack-club-bot.vercel.app/0card.pnghttps://cloud-hehneqfyu-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-06_a_la_s__23.13.34.png
Today I'm learning how to make a graph view like in Obsidian! :obsidian-md:, this is for my bit left but not abandoned digital garden project 🌱 , also I'm working on the Generative Art workshop! :toitle: This is so amazing, I'm still learning how to make different patterns but this is very fun to try! I would like to implement AI to this on a project, but to do that I'll have to finish other things first!
https://cloud-lz99i1y5m-hack-club-bot.vercel.app/0obsidian-graph-view.pnghttps://cloud-9me3x2v5w-hack-club-bot.vercel.app/0turtles_art.pnghttps://cloud-o2s6ceb7c-hack-club-bot.vercel.app/0turtles_art_2.pnghttps://cloud-j1xsapw25-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-05_a_la_s__23.51.16.png
Today I had my first Chemistry Lab of the semester! ⚗️ It was a very interesting class, we did experiments on Fermentation, a very interesting metabolic process, also today I started working on a newer version of the particles of my website in development now in Three.js! Previous library wasn't so good and a bit outdated. Here's a picture I took on the lab and other of some gardens! Also later I'm to be trying Generative Art with a very cool workshop :hack-club: !
https://cloud-got35rcms-hack-club-bot.vercel.app/0_d_h6awq_400x400.pnghttps://cloud-m945beguz-hack-club-bot.vercel.app/0img_20220304_224600.jpghttps://cloud-m9k4bosfs-hack-club-bot.vercel.app/0img_20220304_183318.jpg
js emoji
wom emoji
It's been a while since I started having my Biology Lab classes and it's been awesome so far! 🌱 And tomorrow I'll have my first chemistry lab class! Also today I used @clairebookworm music visualizer and it was amazing! I tried it with Imagine Dragons music and a BOTW Lo-fi Playlist and it was great. :triforce: This reminds me I have to learn Three.js! Also I check out Spline! spline.design A very interesting 3D Design tool!!!
https://cloud-1iialk4k5-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-03_a_la_s__22.39.53.pnghttps://cloud-qljnbayud-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-03_a_la_s__22.28.35.pnghttps://cloud-nqea2iulc-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-03_a_la_s__22.33.33.pnghttps://cloud-85fpk2w03-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-03_a_la_s__22.36.22.png
Today I had my second Biology Lab Class! 🌱 🧪 We did some experiments about Connective tissue, the Epithelium and observed some other cells at the microscope 🔬 and learned a lot of new things! I'm also working on my coding workshops as well :hack-club:! Currently I'm doing some small websites to learn more about web development with HTML and CSS :cat_typing:! Also I used MDN Web Docs and saw the website's redesign! :mozilla: Here's some pictures I took today on the lab! There are more and I'll try to share and upload them to my scrapbook later or tomorrow!!!
https://cloud-6ckzge3kr-hack-club-bot.vercel.app/0img-20220302-wa0019.jpeghttps://cloud-e367btzxq-hack-club-bot.vercel.app/0img-20220302-wa0035.jpeghttps://cloud-b6m13o7rf-hack-club-bot.vercel.app/0img_20220302_163910.jpghttps://cloud-733qgvap3-hack-club-bot.vercel.app/0img_20220302_164807.jpeghttps://cloud-c4jvm7ixv-hack-club-bot.vercel.app/0img_20220302_163710.jpghttps://cloud-lurzzx32w-hack-club-bot.vercel.app/0img_20220302_163949.jpg
It's finally March! Time flies very fast, and today I'm working on the workshops again! Also I added my iTerm2 terminal and my Starship prompt to my Readme which I'm also going to customize! I'll try to customize it with my NeoVim :vim: setup as well! I'm probably going to add a theme like Monokai or TokyoNight! Tomorrow as well I'm going to have Bio Lab again! I'll add the pictures I take to my Scrapbook! 🌱 🧪
https://cloud-9mt7o0yw0-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-28_a_la_s__22.41.19.pnghttps://cloud-b4auw00c3-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-01_a_la_s__23.08.41.pnghttps://cloud-ailzhrlef-hack-club-bot.vercel.app/0captura_de_pantalla_2022-03-01_a_la_s__23.09.57.png
wom emoji
So today I had a very interesting talk with friends about Chordates on #biology! 🪲 I'm glad the channel is getting more active again! Also now that it's almost March I'm going to work on the Workshops Projects as I had planned before: I'm going to be making a newer version of the website workshop project 🕸️, which includes a small website for me, some things for friends and a cool website about dinosaurs that I will be hosting using dino.icu! :orpheus: 🦕 Also today I saw some cool fonts while using Google Fonts! :google: 🖋️
https://cloud-12o0ih3nn-hack-club-bot.vercel.app/0screenshot_20220228_230502.jpghttps://cloud-jnz9mzozr-hack-club-bot.vercel.app/0image-2.png
Looks like there are good news for my high school Hack Club :hack-club:! Now that we are back to physical classes the possibility of having the first official meeting of the club is bigger than before! Last semester I had a few Science/Tech 🧪 💻 club classes but there weren't many members! If everything goes alright with the school schedule and my time as well, because now the number of members won't be an issue, I will be hosting it soon! Probably I will start with HTML and CSS basics!
https://cloud-3kd2a8rve-hack-club-bot.vercel.app/0screenshot_20220227_235820.jpg
yay emoji
wom emoji
So I'm getting back to work on Workshops! My new plan is to work on them again, making better versions of my old small projects and hosting them to make more commits on the future and see my progress instead of just leaving them on my Replit! :replit:
https://cloud-2uc96wral-hack-club-bot.vercel.app/0screenshot_20220226_235657.jpg
Today I worked on stuff from previous days, and after having some very interesting conversations 🤔 with @U01P8NH2WK0 🐮 at #pasture I decided to research more and learn new things on Machine Learning and Artificial Intelligence! 🧠 💻 To do this I will research about GPT-3 and GitHub Copilot! Also thanks @ZaynB for the videos recommendations! This are going to be very helpful to work with AI/ML resources and think on some projects!!!
https://cloud-oaz3ezouv-hack-club-bot.vercel.app/0github-copilot.jpghttps://cloud-hk4ypk54m-hack-club-bot.vercel.app/0openai-cover.png
github emoji
polish_cow emoji
wom emoji
Here's an extra image from yesterday's Biology Lab Class! 🪴 🧪 (I forgot to mention yesterday that my next practice besides Connective tissue will include Epithelial tissue as well!) Also today I'm setting up VScode again to add a better theme and maybe some cool extensions to get done things more easily and add new functions to the IDE! I'm learning too Firefox customization with CSS and how to make a theme for the browser and lastly learning about SSH Connections! 💻
https://cloud-dd93pj72z-hack-club-bot.vercel.app/0screenshot_20220224_235009.jpghttps://cloud-e9lv4hvd1-hack-club-bot.vercel.app/0firefox-nouveau-logo-770__w1200.jpghttps://cloud-aboti0uvo-hack-club-bot.vercel.app/0screenshot_20220224_233813.jpg
vsc emoji
firefoxlogo emoji
wom emoji
Today I had Biology Lab! A very cool class on the afternoon, we did a practice about Mitosis of Onions 🧅 I took a few pictures with my smartphone! Next practice is about Conective Tissue!
https://cloud-ba70yvshp-hack-club-bot.vercel.app/0img-20220223-wa0016.jpeghttps://cloud-gtvumj5r4-hack-club-bot.vercel.app/0img_20220223_165932.jpg
Today's Twosday! A very interesting palindromic number day, also today I learned more on what's an API and how does it works! Which is a very useful CS topic, in addition to this, I am looking into a remote desktop app to access my mac on other devices, this will help me when I have to code on something remotely! So I might work as well with this Backend Course by freeCodeCamp to learn more on this aspect of Web Development but I want to be better at Front End before moving to something else! :freecodecamp-logo:
https://cloud-8d2funavs-hack-club-bot.vercel.app/0screenshot_20220222_234809.jpg
wom emoji
awesome emoji
While @scrappy-U015D6A36AG wakes up and gets repair :scrappy:, I'm also learning about Proxmox! Also I checked out PhotoPrism as an option to self host my photos! I will be sharing more self host tools and apps I find during this next days!
https://cloud-o8786ffbu-hack-club-bot.vercel.app/0screenshot_20220221_232323.jpghttps://cloud-p5ib5s0ij-hack-club-bot.vercel.app/0proxmox_logo.jpeg
Today I'm learning more things on how Docker and Containers works! This will also help me more with my Homelab project! Thanks @kaidevrim for some of the help!
https://cloud-fq9outn4e-hack-club-bot.vercel.app/0docker__container_engine__logo.pnghttps://cloud-a6vtqe8sl-hack-club-bot.vercel.app/0moby-logo.pnghttps://cloud-3brtp82m7-hack-club-bot.vercel.app/0screenshot_20220221_230857.jpghttps://cloud-o698mnvok-hack-club-bot.vercel.app/0screenshot_20220221_231254.jpghttps://cloud-7jcv42bkp-hack-club-bot.vercel.app/0screenshot_20220221_230722.jpghttps://cloud-5kuiyd7fs-hack-club-bot.vercel.app/0screenshot_20220221_230832.jpg
docker emoji
wom emoji
I'm finally getting back to more workshop dev this week! I'm finally settled on my new home and the internet is stable now, also I will have more time to work on my homelab/server project and today I learned about Lychee Self Hosted Photo Management tool which looks very useful to share the photos I've taken with the years with the world! 📸
https://cloud-4ycqedaan-hack-club-bot.vercel.app/0screenshot_20220220_235155.jpg
wom emoji
Today I visited a college campus! And for my coding projects I hope to work on an Astronomy and Space 🌌 project after finishing other pending things first! Also this is an image of the Dolphin Head Nebula!
https://cloud-p8leu2owj-hack-club-bot.vercel.app/0screenshot_20220219_235805.jpg
Today I went to a school event besides my normal schedule, also I registered for a college admission progress! Tomorrow I will be visiting the school. 👀 Here's an image from the Cassiopeia A Supernova Remnant!!
https://cloud-boq2fvcit-hack-club-bot.vercel.app/01280px-cassiopeia_a_spitzer_crop.jpg
Today I'm learning about more Emacs extensions like Org Mode and about WebAssembly! Also tomorrow there's a school festival event so I'm definitely going!!!
https://cloud-gg37os6ym-hack-club-bot.vercel.app/0screenshot_20220217_183243.jpghttps://cloud-kyg1oq212-hack-club-bot.vercel.app/0screenshot_20220217_171733.jpg
Today my day went very well, I had a good school day and studied a few things, today I'm probably receiving my MIT's Blueprint admissions decision so I hope I will get into the hackathon!!! Also I checked the starthacking.org link on the hackathon website with useful info!
https://cloud-1dwjv04te-hack-club-bot.vercel.app/0screenshot_20220216_182752.jpghttps://cloud-msz3890sp-hack-club-bot.vercel.app/0screenshot_20220216_182822.jpg
Today I had a normal school day, my new internet is getting setup so I will be able to work on more things online soon, I also did an awesome Biology Diagram on today's Bio class and took a city landscape picture! 🌆
https://cloud-9wb7y1r77-hack-club-bot.vercel.app/0img_20220207_101807.jpg
Today I learned more on how ASCII tools works like Neofetch, I've been using it for a long time but it's always very cool to understand how something works!
https://cloud-kl7mc1mfp-hack-club-bot.vercel.app/0screenshot_20220214_170945.jpg
wom emoji
Today I did a few small changes to my GitHub Readme! Also I'm going to be trying some cool Gamelab games as well as continuing making my own! :gamelab:
https://cloud-cy9b0us5w-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-13_a_la_s__18.28.12.pnghttps://cloud-p35ge9qef-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-13_a_la_s__18.32.27.png
wom emoji
gamelab emoji
Today I walked around, went for a small hike and saw a group of ducks and a goose! 🦆 :goose-da-right: I worked on homework again so didn't have a lot of time to do other things, and I saw a few colleges campus to take into consideration for my college decision progress as well! Here's some pictures of the ducks I saw earlier:
https://cloud-16xqkzxk5-hack-club-bot.vercel.app/0img_20220212_180422.jpghttps://cloud-6dq8a26zc-hack-club-bot.vercel.app/0img_20220212_180434.jpghttps://cloud-k4gmnddm7-hack-club-bot.vercel.app/0img_20220210_175346.jpghttps://cloud-agl7zw1nh-hack-club-bot.vercel.app/0img_20220210_175341.jpg
It's finally Friday! Another week of school is over so I look forward for the weekend to build things, rest a bit and study! I still have some internet problems so I'm going to be working with Blender and making 3D Models! :blender:
https://cloud-e385bv4xt-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-11_a_la_s__18.48.25.png
Today I had a normal school day so I didn't had time to work on any of my projects or my server in development, and regarding this I need to research more to get it done, including what software I will use and where I will be building it. Also today while checking some of my downloaded files I found this image I have since December 21 of 2020 which includes Hack Club on the background!!! Surprisingly it looks like I already knew Hack Club at that time but forgot to check out what it was, something I hope I would have done earlier, also I have to remember where I got that setup file. :thinking: Here's a screenshot of it!
https://cloud-859fpyy9j-hack-club-bot.vercel.app/0screenshot_20220210_170509.jpg
So I'm going to be trying to build a personal server! It's going to be a very fun and interesting project! Also I learned about Tailscale! :tailscale:
https://cloud-r9vqjvkrk-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-09_a_la_s__16.41.18.png
So I'm going to be trying to build a personal server! It's going to be a very fun and interesting project! I have to research ways to get it done. Also I learned about Tailscale! :tailscale:
https://cloud-oa3q6vmuv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-09_a_la_s__16.41.18.png
wom emoji
tailscale emoji
Today I'm trying Game Lab to build a game! It's going to be a good opportunity to make a cool project, learn more programing and work with something made on Hack Club!
https://cloud-1z2jw0eg8-hack-club-bot.vercel.app/0screenshot_20220208_135416.jpg
wom emoji
Today I'm studying some Biology Notes 🪴 for my class, I read Satoshi's White Paper for Bitcoin :bitcoin: to learn more and continued working on my website again! Also somehow I got a lot of GitHub Views to my profile while having a small number of followers: github.com/J-cordz :github: This also reminds me I have to publish some of my repos, which I hope to do on future Scrapbook Posts!!!
https://cloud-jvhna48be-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-07_a_la_s__12.16.27.png
Today again I learned more about how Blockchain and Tokens works and design a decentralized project based on it! I still have to learn more things to be able to build something useful, but having and idea is the start!!!
https://cloud-rj9vlt96g-hack-club-bot.vercel.app/0screenshot_20220206_182647.jpg
Today I'm following the Custom Blockchain Workshop by @heyrajan! I didn't had time to join earlier today but I'm working on it on my own to learn more! :ethereum:
https://cloud-4fa8ua92n-hack-club-bot.vercel.app/0screenshot_20220205_185634.jpghttps://cloud-3zc7bt7jm-hack-club-bot.vercel.app/0screenshot_20220205_185644.jpghttps://cloud-ds6wlhdhy-hack-club-bot.vercel.app/0screenshot_20220205_185617.jpghttps://cloud-ox8k4yz0c-hack-club-bot.vercel.app/0screenshot_20220205_185703.jpg
Today I worked on Calculus Homework so I didn't coded, here's my Neofetch Config of my M1 MacBook Air 👀 I still have to configure Starship Prompt and add a custom font, but it's a progress!
https://cloud-gxz1ek02m-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-04_a_la_s__21.34.39.png
wom emoji
appleinc emoji
Today I joined Vitalik Buterin's AMA! It was an amazing event where I got to learn more about him, about Ethereum :ethereum: and had a great time with friends, Hack Club's events always amaze me, been part of this community is fantastic and I look forward for future things! :hack_club: :quad_parrot:
https://cloud-5xn81kocb-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-03_a_la_s__19.59.53.pnghttps://cloud-jnrxg7v3s-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-03_a_la_s__19.58.38.png
wom emoji
beachball emoji
vitalik-pog emoji
ethereum emoji
Today I continued working on freeCodeCamp, did research on Chrome Web Tools and joined Twitter a few days ago! I hope it will be useful to share things and some thoughts on topics!
https://cloud-l6rcfpzvg-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-02_a_la_s__20.24.28.pnghttps://cloud-8i2h2ikq8-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-02_a_la_s__20.24.57.png
wom emoji
twitter emoji
Today I'm joining the Prep Call for the AMA with Vitalik! :ethereum: This is a very cool opportunity to learn a bit more of crypto and think of questions for the Thursday's event!
https://cloud-96frg29ya-hack-club-bot.vercel.app/0captura_de_pantalla_2022-02-01_a_la_s__19.00.37.png
ethereum emoji
wom emoji
Today I started using the Kaboom Js library for game development!
https://cloud-23878v2wd-hack-club-bot.vercel.app/0screenshot_20220131_171401.jpg
Today I learned more about CSS Frameworks including Tailwind CSS! Also tomorrow I'm going back to school after having online classes for a long time!
https://cloud-e0m2pyxi4-hack-club-bot.vercel.app/0screenshot_20220130_195322.jpg
So I'm finally back from my journey, arrived yesterday's night to the city and ready for school next week! Today I coded again on a few projects and research more ways on how to make responsive websites! But today's biggest thing I worked on was more research on Ethereum and DApps! Here's some cool Ethereum wallpapers from their official project website! :ethereum:
https://cloud-np798ur7j-hack-club-bot.vercel.app/0screenshot_20220129_185434.jpghttps://cloud-a1cgd0cqv-hack-club-bot.vercel.app/0screenshot_20220129_185414.jpghttps://cloud-15axfdohi-hack-club-bot.vercel.app/0screenshot_20220129_185402.jpghttps://cloud-nlkhdar7g-hack-club-bot.vercel.app/0screenshot_20220129_185424.jpg
On one of my previous scrapbook posts I mentioned that I'm going on a trip, and it's today! This is because my remote classes ended and I have to got back to high school on real life! So I will be traveling all day to go back to the city, I'll spend the day reading some interesting books and try to code for a bit! And here's a Hooray Squid! :hooray-squid:
https://cloud-oktguqnvu-hack-club-bot.vercel.app/0squid2.jpg
Today the entire process for my handshake domain ended, so now I can use javierzaleta/ as my own TLD! This is going to be an awesome step forward into web3 projects for me, next thing is to start using it for my own projects, like setting it up for my website, adding a Namebase DLink subdomain and many more great things to work on with it!
https://cloud-3mt5xevul-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-27_a_la_s__23.49.21.pnghttps://cloud-75icfk7h7-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-27_a_la_s__23.58.42.png
Today I studied some biology topics using MIT's OpenCourseWare! Next I plan to get more involved into other related topics like biotechnology!
https://cloud-ncbxjd3ks-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-26_a_la_s__23.55.47.png
Today I learned more things about Javascript while using MDN Web Docs! It was a very useful resource to get to learn more about this programming language, which will help me in the future with my projects!
https://cloud-ilhwoqbzr-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-25_a_la_s__23.59.15.png
wom emoji
js emoji
Today I looked more into some extra things to add to my front-end web road by checking roadmap.sh/frontend, as a recommendation from @drew! I also did more research on Javascript topics for both my coding and game dev skills!
https://cloud-7tjgd71dx-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-24_a_la_s__23.59.18.png
wom emoji
When I learned about hackathons I wanted to participate on MIT's Blueprint last year but registration was close, and now that I know more coding things and the event it's open again I'll try to join! It's going to be a very cool event where I hope I'll make something awesome and learn a lot! Today I also organized more of my coding things as well.
https://cloud-dv0oh2vu4-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-23_a_la_s__23.58.22.png
wom emoji
aom-21 emoji
Today I joined a very cool Hack Club event! It was a AMA about @msw ! I learned many cool things about his work at Hack Club and amazing things he do and the conversations about project ideas and web3 were great as well! I also learned more on ways to setup a second brain. Here's a very cool Orpheus image!
https://cloud-59kw1dzpj-hack-club-bot.vercel.app/00code_dinosaur.png
goose-honk-technologist emoji
wom emoji
Today I worked on a small game design thanks to @ced who gave me some useful game development tips and also I started setting up my new linux install with Endeavor OS next to my current Pop_OS install!
https://cloud-3nh63d3qm-hack-club-bot.vercel.app/0endeavouros_logo.svg.png
So a very interesting thing happened yesterday on my scrapbook, due to the image type I used, the post didn't load on the website, but it still showed up on my HeatMap, it loaded correctly after a file change but with today's date because of the hour I submitted it! And in addition to this event, today I learned more of game development and Game Engines and tools with JavaScript! :js:
https://cloud-n12970me2-hack-club-bot.vercel.app/0640px-unofficial_javascript_logo_2.svg.pnghttps://cloud-amsdjtuen-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-20_a_la_s__23.50.57.png
Today I worked again on some of my projects including my website, joined a Hack Night Movie night after not going to calls for a while and studied for school and exams!
https://cloud-e7j83ujy5-hack-club-bot.vercel.app/0screenshot_20220120_000322.jpg
Today I kept studying for my college application exams so I didn't had time to work on anything else, so here's a space picture taken by the Hubble telescope. It's the *"Pillars of Creation"* an interstellar matter form on the Eagle Nebula or Messier "16" object. I think I'll try to make a side project about space after I finish the rest of my current projects!
https://cloud-dgxo9tyou-hack-club-bot.vercel.app/0400px-pillars_of_creation_2014_hst_wfc3-uvis_full-res_denoised.jpg
So the auction time for my handshake domain is over! And I was the only one that submitted a bid for it, so I’m going to get it after the reveal time! It’s going to be so awesome to have my own TLD! This is going to let me use my own domains on many interesting things on the future, also today I almost finished my YAML config file for my website!
https://cloud-lhrmtyn28-hack-club-bot.vercel.app/0hugo-logo.pnghttps://cloud-47bmlzq60-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-17_a_la_s__23.22.55.png
wom emoji
hns emoji
Today I finished my HomeBrew File config, now I just have to add it to my Dotfiles repo and I’m ready to setup any laptop with it! I also worked on my website again and tried to participate in the code-in-the-dark event as well but didn’t had time to join.
https://cloud-nfei32xeq-hack-club-bot.vercel.app/0homebrew-social-card.png
wom emoji
homebrew-mac emoji
I’m going to be using the Papermod HUGO theme for my website, it has some interesting characteristics and the design looks similar on how I want to setup my website, I plan to make some changes using CSS and Javascript to add new things to it, and the advantage of using a theme and a static site generator is that I can focus more on learning how to get better at coding while having a functional website as well!
https://cloud-k1dbndzhi-hack-club-bot.vercel.app/0screenshot_20220115_235726.jpghttps://cloud-d63f8yx9v-hack-club-bot.vercel.app/0screenshot_20220115_235651.jpg
wom emoji
So my VM didn’t worked so well, so I’m going to be trying again with a different OS next time, probably continuing my previous Arch VM and leave nix for a while. Today I got more things to work on my NeoVim config! Also added more packages to my Homebrew file!
https://cloud-kfa8at3rp-hack-club-bot.vercel.app/0homebrew-social-card.pnghttps://cloud-jxhbq8hk5-hack-club-bot.vercel.app/01088px-vimlogo.svg.png
wom emoji
I will be making a NixOS VM with UTM to try nix! Although I will still be using Homebrew as my package manager on macOS, I wanted to see how things work on a different system, this is going to be a very interesting experiment!
https://cloud-e0aoerdnj-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-13_a_la_s__11.57.50_p.m..pnghttps://cloud-dzi2qbxol-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-13_a_la_s__11.58.13_p.m..png
wom emoji
nix emoji
I'm going to be moving my Linux install to a VM on my M1 Macbook Air using UTM! This is because there are some things I'm trying and building with Linux and I will going soon on a trip and I can only take one laptop, this is going to be a very interesting experiment, because I will be using an ARM based virtual machine for the first time!
https://cloud-9eqdgt2kv-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-12_a_la_s__11.29.56_p.m..pnghttps://cloud-ewc5sk29q-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-12_a_la_s__11.31.14_p.m..pnghttps://cloud-d3m9mwzo2-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-12_a_la_s__11.30.48_p.m..png
wom emoji
linux emoji
macbook-air-space-gray-screen emoji
Today I got some HNS to get my TLD Domain thanks to @zfogg! I also continued working on setting up my coding environment, and finally, my scrapbook HeatMap is showing the correct posts! It's been awesome to share my work daily, I also created my first hack club's channel on the slack, it's #wikipedia! :wikipedia:
https://cloud-elemkfz2w-hack-club-bot.vercel.app/0nb_2_1.pnghttps://cloud-jqf0pyf6i-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-11_a_la_s__11.18.40_p.m..pnghttps://cloud-7b4v4tx3l-hack-club-bot.vercel.app/0wikipedia-logo-v2.svg.png
slack emoji
awesome emoji
hns emoji
wom emoji
goose-honk-technologist emoji
wikipedia emoji
Yesterday I got my first stickers envelope from MLH! It's from an old hackathon I participated in, although I did not expect to receive them! Today I continued my research about Handshake Domains, I'll try to get one very soon, seems like a good web3 project to get my own TLD personal domain! :hns:
https://cloud-ikaywm5f1-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-10_a_la_s__11.17.33_p.m..pnghttps://cloud-i1tork5uw-hack-club-bot.vercel.app/00_rnzkxeayuolxmrc1.png
Today I joined a Hack Club event! Although I didn't had the opportunity to stay the full event, it was a nice experience, recently I also setup up my Vercel Account :vercel: for hosting my open source projects but I forgot to mention it before!
https://cloud-p3hs83n2o-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-09_a_la_s__11.55.21_p.m..png
wom emoji
vercel emoji
goose-honk-technologist emoji
Today I didn't work on many things, just studied for school, so here's a Wahoo Fish instead. Wahoo! :wahoo-fish: I also started using logseq as a OSS alternative to Obsidian!
https://cloud-2ljl7686u-hack-club-bot.vercel.app/0wahoo-underwater.jpeghttps://cloud-cdrk668n0-hack-club-bot.vercel.app/01.png
Today I continued setting up my dotfiles with the use of Yet Another Dotfiles Manager (YADM), and also continued working on some of my other projects as well!
https://cloud-dcdwlnjhx-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-07_a_la_s__11.43.55_p.m..png
yay emoji
alphabet-white-y emoji
wom emoji
Today I continued working on my Jekyll website, started a small static.fun project at javierzaleta.static.fun and did some research about Crypto, Web3 and Ethereum with the help of @rishi and @bjm! This is going to be very useful for building decentralized apps and projects!
https://cloud-q631zrigc-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-06_a_la_s__11.28.41_p.m..pnghttps://cloud-497jsszr2-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-06_a_la_s__11.29.52_p.m..png
ethereum emoji
wom emoji
cryptoparrot emoji
Today I started working a personal blog made with Jekyll! My main website is still in dev, but this project is a bit easier so I will be working on this first!
https://cloud-j9p81m7v2-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-05_a_la_s__11.31.10_p.m..png
yay emoji
ruby emoji
rubyparrot emoji
wom emoji
Today I looked more into the use of Surge for Static Websites hosting, and also started a new side project that I will share soon!
https://cloud-i0r2nvtrs-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-04_a_la_s__11.56.36_p.m..png
wom emoji
Today I finished the basic CSS part of my freeCodeCamp web development course! I also created a repo for my website! I plan to upload my files for it soon! Unrelated to code, I also started a new Spotify Account with the music I like and I've been discovering thanks to hack clubbers, also thanks @clairebookworm for following me back and for your awesome music recommendations!
https://cloud-ilb10c66m-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-03_a_la_s__12.18.44_p.m..png
Today I worked on a lot of things, I started making a minimal redesign for my website to have more design options, studied CSS flexbox, did more progress on my freeCodeCamp Course and finished a better introduction for my GitHub README!
https://cloud-i0vjjbegs-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-02_a_la_s__11.55.46_p.m..png
wom emoji
hack_club emoji
github emoji
2021 is over, Hi 2022! I'm happy to start a new year where I hope to make amazing things. Today I started my new hacker journey with 3 small commits and did my first review on a Hack Club Repo, thanks for this @sampoder! Here's an image of my brand new year GitHub HeatMap and the one of my scrapbook, which it's a bit bugged because I post daily, but still, it's awesome to be able to work on amazing things and I hope to have great memories and moments on this year.
https://cloud-l4f1uopez-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-01_a_la_s__11.53.25_p.m..pnghttps://cloud-80jdmk3jy-hack-club-bot.vercel.app/0captura_de_pantalla_2022-01-01_a_la_s__11.52.26_p.m..png
sam-1 emoji
github emoji
wom emoji
goose-honk-technologist emoji
2021 is almost over, and I'm happy to be part of Hack Club because it changed a lot things on my life, I made amazing new friends and learned a lot. Today I finished my second workshop translation that got merged! I look forward for awesome things this new year and hacky moments on Hack Club :) Here's a picture of my GitHub commits, these are only 35 because I started to got more involved into coding a few months ago but I hope to make more awesome and cool things on 2022!
https://cloud-ls6wv15u6-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-31_a_la_s__11.57.29_p.m..png
github emoji
hack_club emoji
merge emoji
wom emoji
My website is almost finish! Today I worked a bit on the principal page style and on some content for the About Section, I hope to be able to ship it tomorrow before the year ends!
https://cloud-ns898pvt9-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-30_a_la_s__11.56.32_p.m..png
wom emoji
Today I added a Scrapbook widget to my website, which it's very cool because it shows my total streak (currently of 84 posts), I also learned about Google Lighthouse to improve websites!
https://cloud-l385np861-hack-club-bot.vercel.app/0lighthouse.png
wom emoji
Another day, another website upgrade. Today I got to make my particles interactive and now I can modify them with a cursor hover and other styles! Tomorrow I plan to continue working on it and developing new things!
https://cloud-4f4v3fz23-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-28_a_la_s__11.57.41_p.m..png
wom emoji
Finally my website is looking better! I managed to add moving particles to it using a Javascript Library, I still have to add more content and things which I will work on later another day, but it's nice to be able to recreate my planned design for my website with code.
https://cloud-9ynksk19e-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-27_a_la_s__11.55.30_p.m..png
Today I worked on creating particles on JavaScript which I will be using for my website, I currently have a lot of projects I need to finish so I won't be adding anything new until I finish all of them.
https://cloud-f2y3te59u-hack-club-bot.vercel.app/0projects.png
wom emoji
js emoji
beachball emoji
Merry Christmas and Hacky holidays Friends! Today besides enjoying the season, I worked a bit more on my website design and some of its contents, which it's going to take a while more to finish.
https://cloud-kn3b0n6s9-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-25_a_la_s__11.41.06_p.m..png
Merry Christmas Eve Friends! Today I didn't code or worked on anything, I stayed with my family and had dinner and a nice time with them. So I want to wish everyone a Hacky Holiday at Hack Club! I tried to upload the Holidays Sticker but that didn't worked so here's a regular Hack Club logo. For tomorrow I'll definitely upload the correct sticker and maybe work on some of my pending projects!
https://cloud-qnzkyin19-hack-club-bot.vercel.app/0icon-square.png
Today there wasn't to much code progress, but I'm going to give a try to Arch based distros again! I'm going to be choosing between trying again Manjaro or checking EndeavorOS for the first time, after this experiment or I'll stay on the new system or I'll go back to my actual Pop_OS! Setup.
https://cloud-b1bl7yc6t-hack-club-bot.vercel.app/0endeavouros.jpeghttps://cloud-1gpgvzrwz-hack-club-bot.vercel.app/0manjaro.png
wom emoji
pop-os emoji
linux emoji
Today I continue working on my freeCodeCamp web development course, also study a bit more of CSS and Javascript for my website and start learning how to build a Linux Distro for a Hack Club project!
https://cloud-85i4japx0-hack-club-bot.vercel.app/0icon-square.pnghttps://cloud-du64qc9r4-hack-club-bot.vercel.app/0freecodecamp-banner-thumbnail.png
Today I worked again on my online courses, on my personal website in development and on a new project I will share soon! I also joined Hack Club's Hack-as-a-service team! Looking forward to help with this amazing app with friends in here! This will allow me to improve my skills a lot and learn new tools and things.
https://cloud-eaffb8toi-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-21_a_la_s__11.57.29_p.m..png
wom emoji
haas emoji
goose-honk-technologist emoji
partyparrot emoji
Today was the last day of Codejelly, it was a very awesome event! I'm happy to be able to participated on it and build something and share projects with friends! I worked on a prototype for a Science Fiction story! It's still on a very early stage and need a lot things but it was fun to work on. I also continued working on my freeCodeCamp course, now on the CSS part in which I progress a lot today!
https://cloud-6d4wz0bxg-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-20_a_la_s__11.51.14_p.m..pnghttps://cloud-m0cvfa8n8-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-20_a_la_s__11.50.15_p.m..pnghttps://cloud-mb0vd0qfg-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-20_a_la_s__11.49.41_p.m..pnghttps://cloud-ina6x4sug-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-20_a_la_s__11.50.43_p.m..png
jelly emoji
peanut_butter_jelly_time emoji
wom emoji
So for today's hackin' I finished the HTML part of the Responsive Web Design Course of freeCodeCamp! It was awesome, I learned a lot and now thanks to it I know the basics of coding. I also joined Itch.io today, it's going to be useful for my game dev road besides my coding and for my codejelly project I have to build!
https://cloud-38lydddr8-hack-club-bot.vercel.app/0freecodecamp-banner-thumbnail.pnghttps://cloud-bf29gywds-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-19_a_la_s__11.39.25_p.m..pnghttps://cloud-q5znrkjh7-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-19_a_la_s__11.40.17_p.m..pnghttps://cloud-p0bcxkgr7-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-19_a_la_s__11.55.39_p.m..png
wom emoji
Today I had a lot of things to do, worked a bit on my projects, tried to move on a college rejection, and looked for ways to improve my personal website at the same time I'm still learning to code which is very fun, so because of this and to avoid to reset my long scrapbook streak I currently have since I joined Hack Club, here's an image of my Scrapbook profile!
https://cloud-56wod78la-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-18_a_la_s__11.59.34_p.m..png
wom emoji
Today I worked again on my freeCodeCamp Course, I almost finish the HTML part! I also continued coding on my personal website, although I still need to know more things in order to make it like I want. In addition to this, today I joined the first codejelly event and I'm going to be working on my project for it later when I can!
https://cloud-213xpysh5-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-17_a_la_s__11.58.26_p.m..png
wom emoji
Today I continued working on my website, did some progress on some of its content, today I also started adding some of my scrapbook things to a list of things to add to my Polywork, for tomorrow, I hope to keep working after already finishing today my last final exam! I'm also looking forward for tomorrow's Hack Club Codejelly and Secret Santa events which are going to be awesome!
https://cloud-bq88f2omg-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-16_a_la_s__11.57.07_p.m..pnghttps://cloud-l94k4514d-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-16_a_la_s__11.53.17_p.m..png
After many days and scrapbook posts about it, my personal website is finally in development! I'm going to be using plain HTML and CSS for the first version of it, which will allow me to test my coding skills and the things I've been learning so far. I'm going to be using Replit to preview the end result before moving it to a GitHub Repository and for the deploy, I will be using Netlify, and now that I know how I want it to be organized and which things to include such as sections, colors, and so on, I just need to finish building it and then share it with the world!!!
https://cloud-o86orf0wn-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-15_a_la_s__11.45.58_p.m..png
replit emoji
wom emoji
So today, it looks like Vercel hosted sites are allowed again on my internet, which was very odd on the first place why they got blocked, anyways, today I worked on my projects, my workshop translation an read a few things about Vue and Nuxt.js as alternatives to React and Next.js, so I will be deciding this days on what to focus to learn better next!
https://cloud-9prjgexc4-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-14_a_la_s__11.55.48_p.m..pnghttps://cloud-bcfe64ldg-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-14_a_la_s__11.59.24_p.m..png
vercel emoji
nextjs emoji
react emoji
wom emoji
vue emoji
js emoji
So, it looks like my internet provider blocked all the sites and pages that are host on Vercel, so I can't access any of Hack Club's materials at home, so to bypass this, I used Titanium Network, so today there's no coding progress, I just finally upload my new and improved CSS to my scrapbook, here's an image of it on the Scrapbook Customizer, because it doesn't load completely on titanium.
https://cloud-kkqkw04ii-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-13_a_la_s__11.59.35_p.m..png
aom-21 emoji
Today there have been a lot of things to do so it's been a busy day, I finished my new css file for my scrapbook, although I still have to submit it through a Gist to my GitHub, and finally I can talk about my side project I've been mentioning since some time ago, so here's the thing: Since I was a kid, I've always been interested in Science and learning about everything I can, and my dad who always supported in that, used to send me a email  everytime he could, including a science article, recently, I managed to recover my emails and hundreds of images from those articles, so for my project I will be making a website to host info about it and share it, in order to document a guide with this knowledge I got and helped me to keep on learning!
https://cloud-nebnf8a3a-hack-club-bot.vercel.app/0cloroplasto-vegetal.jpghttps://cloud-bnm70zadr-hack-club-bot.vercel.app/0nebulosa-de-la-burbuja__1280x1215.jpghttps://cloud-1bkij5drx-hack-club-bot.vercel.app/0shutterstock-1331702939.jpghttps://cloud-otr4jdpl4-hack-club-bot.vercel.app/0nebula1.sp.jpg
Today I worked again on translating the next Hack Club workshop, started setting up again a CSS customization for my scrapbook and check a bit of React and Next.js which I will be learning in order to use them on my projects! Also started considering Vercel as a deploy choice to some of my projects as an addition to Netlify, which I will be also using with some of them later on.
https://cloud-pszvi2d4p-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-11_a_la_s__11.59.41_p.m..png
vercel emoji
nextjs emoji
aom-21 emoji
So today I finished setting up my GitHub profile, yesterday I started working on a redesign on it, and today it's done. I used a code block with Python Syntax Highlighting for my Introduction and About Me, I added badges that redirect to both my scrapbook and my polywork, change my visits counter color to red which I like more because it's my favorite color, while writing this, my GitHub profile exceeded a lot of total views and it's growing! I also organized more the languages I use and my tools! For tomorrow I hope to work on more awesome things and maybe in my projects in development!!!
https://cloud-kp716ogc0-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-10_a_la_s__11.59.04_p.m..png
atom emoji
github emoji
hack_club emoji
aom-21 emoji
Today I decided to make some changes to my Github Readme now that I know more things about coding, for this, I'm going to be using a code block for my introduction! Although, today there's no other coding progress, because I'm checking some things and details with my side projects before making them public and hosting the repos.
https://cloud-i0nbbvtms-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-09_a_la_s__11.58.46_p.m..png
github emoji
atom emoji
aom-21 emoji
Today I worked a bit on my polywork setup, I'm going to be adding some things I've been working on in there!
https://cloud-ql0uby7s2-hack-club-bot.vercel.app/0polywork-burple-icon-918d4dd32b0f254e4ba8e06cf1a216d6223db6ba2adc5b9521f35911a05d520c.png
aom-21 emoji
Wahoo! Today I finally submitted my first contribution to Hack Club! My workshop translation pull request got merged! This is an amazing progress because this is my first pull request ever! Looking forward to make more contributions as time passes and I learn more things!!!
https://cloud-d4vuikk5c-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-07_a_la_s__11.53.13_p.m..pnghttps://cloud-nb70qhfbf-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-07_a_la_s__11.59.10_p.m..png
hackclub emoji
github emoji
pr emoji
merge emoji
aom-21 emoji
quad_parrot emoji
Today I continued working on the Hack Club workshops translation and learned more about design while using Figma again for a club's friend Birthday! In other things, sadly my freeCodeCamp streak got reset, but the important thing is that I'm learning a lot of new things! Tomorrow I'll have more updates on my projects I'm working on!
https://cloud-l3eavrodk-hack-club-bot.vercel.app/0ce5e0bb3-16b9-4d88-9bca-7d237fe725a8-cover.png
Today I managed to keep my freeCodeCamp Streak while making big progress on the HTML part of the web dev course, and also, as part of my contributions to Hack Club I'm helping with the workshops translation in Spanish that will be super useful to make the CS materials more accessible to more people, which will help to expand more things of Hack Club into Latin America!
https://cloud-eb1hxm18y-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-05_a_la_s__11.55.57_p.m..pnghttps://cloud-1f5p788a4-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-05_a_la_s__11.40.16_p.m..pnghttps://cloud-mry6l74uj-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-05_a_la_s__11.41.15_p.m..png
beachball emoji
aom-21 emoji
Did a bit of night hackin' working on my freeCodeCamp web dev course while listening to the site Code Radio Station, and finally, I surpassed my initial progress that I had previously made my last time on the course, so this content I answered today is new and have never seen it before! Looking forward to make more progress and see awesome new things on it!
https://cloud-4zkylphpy-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-04_a_la_s__11.47.38_p.m..pnghttps://cloud-j52nrts45-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-04_a_la_s__11.50.38_p.m..png
Today I continued working on freeCodeCamp Responsive Web Design Course, and next thing I'll do is to setup a GitHub Repository where I will be hosting my code for the course projects! This will allow me to keep a record of my answers and be able to look back and see my progress made during the duration of this course and the next ones I'll take after!
https://cloud-fspqh0yns-hack-club-bot.vercel.app/0freecodecamp_logo.png
goose-honk-technologist emoji
github emoji
aom-21 emoji
Today I started all over on freeCodeCamp after leaving it for a while, because I haven't worked on the courses for some time and didn't made much progress on it either, but I plan to keep it up starting with today's work so I can continue regularly, and next month I can get to see how much progress I've made!
https://cloud-n39nissjf-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-02_a_la_s__7.52.41_p.m..pnghttps://cloud-aiugsggoq-hack-club-bot.vercel.app/0freecodecamp-banner-thumbnail.png
aom-21 emoji
Today I joined Polywork, I think it's going to be a very useful tool to set up a timeline of things I've been working on, both here on the club and on personal projects, and having a record of the progress I've made it's going to be awesome! Today there's no coding progress either, but I have everything ready to work on it tomorrow!
https://cloud-mrmzeb96t-hack-club-bot.vercel.app/01_zn7mezxzmngu6evziztk6g.pnghttps://cloud-k4qc0ezxl-hack-club-bot.vercel.app/0captura_de_pantalla_2021-12-01_a_la_s__8.40.48_p.m..png
aom-21 emoji
There's a bug with Übersicht, so I won't be using it for my setup, today I had my Bio final test and also organized some school files I moved from my hard drive to my macbook so today I didn't worked on my projects either, but there's a small update about the most recent one I talked about yesterday, and it have to do with some science articles I have been reading since many years ago, it's a website to document something special about them!
https://cloud-2aszutwvw-hack-club-bot.vercel.app/0cloroplasto-vegetal.jpghttps://cloud-i4h1ee2uc-hack-club-bot.vercel.app/0nebulosa-de-la-burbuja__1280x1215.jpg
Tomorrow is my Biology Final exam so today I also didn't worked on my setup because  I finished all of the homework required for the subject, but I planned a new project in addition to my previous ones, tomorrow I'll update more on those, so here's some images that have to do with it.
https://cloud-l5gmcscgv-hack-club-bot.vercel.app/0nebula1.sp.jpghttps://cloud-prm366w60-hack-club-bot.vercel.app/0shutterstock-1331702939.jpg
Today I also had a lot of homework so I didn't did much coding, but today I started to customize some Übersicht Widgets for my macOS setup! I'll show the final look of it including other things about it like the WM when everything is done! So here's an example image about this cool program and one way it can be setup!
https://cloud-a7kqb4u75-hack-club-bot.vercel.app/03.jpeg
Today I did a lot of homework and studied for my biology final exam, so there isn't anything about programming today, instead here's an awesome wallpaper a Hack Club friend shared today, it's a Gruvbox color scheme variant of the wallpaper I am using on my Macbook setup! For tomorrow, I hope to be able to continue working either on my website or in another of the club's workshops.
https://cloud-h5z3rk32y-hack-club-bot.vercel.app/0gruvbox.png
Today I started customizing the shell prompt of my terminal with Starship, added some useful CLI tools and finally started to work on my next workshop! I will leave my MacOS Yabai Tiling Window setup for a while, and will continue to work on that after getting to learn more things of Zsh, which I don't think will get too complicated for me because I know Bash.
https://cloud-mxn6nz2ok-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-26_a_la_s__20.04.21.png
Today I started to work on how to setup a Tiling Window Manager for macOS similar to my Setup that I previously had on Linux, I also added a few things to my GitHub Readme and made some progress on the online courses I'm taking.
https://cloud-pzkjvpjtf-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-25_a_la_s__20.41.57.png
aom-21 emoji
danceblobnom emoji
github emoji
linux emoji
Today I had my Calculus Final Exam so there isn't any code related progress today, although my next workshop I will be working on this next days after finishing my other pending projects is Colorful Grammar, looking forward to work on it!
https://cloud-9qrw3vzs7-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-24_a_la_s__21.57.31.png
Today I started to digitalize some of my science hand written notes so I can also keep them on my database and be able to share them more easily, I also did more progress on the setup of my high school Hack Club Organization including a logo draft and finally and checked more things about HUGO static site framework for my personal website in development using their docs, although the first version of it will be with pure HTML and CSS before using a framework to test what I have been learning with the workshops.
https://cloud-44tnq35e0-hack-club-bot.vercel.app/0about-hugo.pnghttps://cloud-893418n79-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-23_a_la_s__19.51.30.png
Finally my high school semester is over, so after my final exams during this next weeks I'll have some time to study some things on my own, I did Calculus Homework today so there isn't anything about code to share today, so instead, here's an image of the steps of cellular respiration as part of the science diagrams I'll start to share in here.
https://cloud-pw8aenfgj-hack-club-bot.vercel.app/0b7c6b018ad440976202bbf875e814de46387dc48.png
Today I'm going to be sharing all the progress I've made so far with my workshops, during this last days I have been making progress on them, step by step, developing more skills on HTML, CSS and JavaScript everyday I coded on them. It's not the best, but it's an awesome progress in my coding journey. My own personal website and portfolio is still in dev, and there's nothing to share about it yet because I still have to figure out the total tools I will use on it, so today's workshops are Orpheus Hack Club Website which needs some improvement and Splatter Paint. Also, my other project about GitHub that I was also talking about in my scrapbook is finally setting up an organization for my Science Club and Hack Club and redesigning my high school website which will be a great project to test my abilities! And finally, today I started researching some Raycast extensions, so most likely I won't see my apps dock that often.
https://cloud-jdoy96bg4-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-21_a_la_s__22.21.50.pnghttps://cloud-14tomqfv7-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-21_a_la_s__22.27.24.pnghttps://cloud-tydllpicl-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-21_a_la_s__22.26.09.pnghttps://cloud-b4i16xbae-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-21_a_la_s__22.24.08.png
Today I started working on a new CSS Update for my scrapbook after resetting the previous one, in addition to a bit of coding at my workshops, today I also did some studies on very interesting topics to add to my obsidian vault and also I ​did a few changes to my Hack Club Dinosaur I will share soon with other of my drawings!
https://cloud-5vuxauxk7-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-20_a_la_s__20.25.04.pnghttps://cloud-63dt9x55q-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-20_a_la_s__20.29.17.png
goose-honk-technologist emoji
aom-21 emoji
Today I worked a bit on my workshops, did more homework, and start building a special project about my High School Hack Club that I will be sharing soon, also I started studying more about GitHub functions with the help of the documentation, which will be useful for the project in development. In addition to this, I did more research about deployment for my website in progress!
https://cloud-ovzr652cq-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-19_a_la_s__20.55.35.pnghttps://cloud-j590g98d8-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-19_a_la_s__20.57.35.png
Today I did a lot of Biology Homework, and started submitting some interesting notes about the subject on my Obsidian vault, been on my State Biology Olympics team let me learned a lot of amazing topics and things, so I think I'll start to post Biology and other sciences things on my Scrapbook in addition to my coding and hack club things (also game development and art I'll post on the future). Today I also worked a bit on my own projects and setup GitHub Desktop as part of my coding journey, in which I'm learning now to use Git and be able to make great contributions. Although today there is no progress of the workshops or online courses, I will work on that later!
https://cloud-aclvhnds5-hack-club-bot.vercel.app/030502219-25f712e2-9a1a-11e7-8e37-2e3e12d24866.jpeg
I had planned for today to draw my Dino for Hack Club GitHub, but instead of this, I worked on my Digital Garden Project and started learning different ways to index my Obsidian vault with notes into a garden database, also I'm almost ready to ship the fist version of my Personal Website, and most likely I will be hosting it with the help of Repl.it where I'm also hosting my workshop projects, and then move on to better alternatives with improved versions. In other things, I forgot to mention some days ago than my high school is finally at the Hack Club map and I'm happy to be a club leader and get to work at my club and create awesome things!
https://cloud-mcisi8zac-hack-club-bot.vercel.app/0hack_club_dinos.jpghttps://cloud-h1oh71i1m-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-17_a_la_s__20.02.09.pnghttps://cloud-5yi19njf8-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-17_a_la_s__19.53.43.pnghttps://cloud-ku29fk7m0-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-17_a_la_s__19.56.38.png
Today I did my TOEFL English Exam so there's isn't coding progress today, but tomorrow I will make a contribution to Hack Club's Dinosaurs GitHub Repo!!! I hope it will turn out to be good, also I plan to make more progress on my workshops and other dev projects I'm building.
https://cloud-9klus2adn-hack-club-bot.vercel.app/0hack_club_dinos.jpg
Today I did some research on how to build a Digital Garden, which is a different approach to blogging, it seems to me that it's a good way to direct my notebook/personal website, and that it's very helpful to post about the varied topics of things that I know and want to share with the world. Also today I advanced again in my splatter-paint workshop and saw another lecture from The Missing Semester of Your CS Education now focused on the use of Git, after watching two videos yesterday focused on Vim and Dotfiles, In addition to this, I also added new things to my Obsidian database/Second Brain of things I'm learning and that I will add into my new project in development.
https://cloud-4bif1xasl-hack-club-bot.vercel.app/0banner.pnghttps://cloud-l4d4nhahu-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-11_a_la_s__22.34.12.pnghttps://cloud-d7mttryff-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-14_a_la_s__19.17.02.pnghttps://cloud-bwawvmv8n-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-15_a_la_s__19.58.30.png
Today I used this MIT course (The Missing Semester of Your CS Education) that is quite useful to learn CS topics that are not very commonly teach in online courses, which are to master the use of the tools used such as command line, editors, dotfiles, version control (Git), shell tools and many more. Today I also worked on my splatter-paint Workshop.
https://cloud-i5mgh1kpe-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-14_a_la_s__19.17.02.png
Today I added new topics to my Obsidian Guide of things I'm going to learn as a programmer, started setting up my Dotfiles for my macbook air setup with the help of a very useful freeCodeCamp article and did more progress in my second workshop.
https://cloud-oj5edh144-hack-club-bot.vercel.app/0banner.pnghttps://cloud-q0jm4epf2-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-13_a_la_s__19.08.30.pnghttps://cloud-5anzr246a-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-11_a_la_s__22.34.12.png
macbook-air-space-gray-screen emoji
aom-21 emoji
So GitHub replied a day earlier than expected and now I got my Student Developer Pack and my GitHub Pro Badge! I'm ready to start using all the tools and benefits included, they will be super useful in my coding path, also today I setup shields.io badges as a replacement of my previous Languages and Tools section in my README Profile , it looks a lot better and includes both tools I use and that I'm currently learning. Today I also did a bit more progress on my second Hack Club Workshop, which I plan to continue over the next few days.
https://cloud-54y3sx9fv-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-11_a_la_s__22.34.12.pnghttps://cloud-rbqy8r1cd-hack-club-bot.vercel.app/0github-readme.png
goose-honk-technologist emoji
aom-21 emoji
yay emoji
github emoji
Today I submitted my GitHub Student Developer Pack Application, looking forward for the apps and tools it includes that will be useful in my coding journey, also, complementing the changes I'm doing since yesterday on my GitHub Account, today I setup my metrics as a GitHub Action into my README, also I did a bit more of customization on the Orpheus theme website and my personal website as part of the two activities I'm doing in the first workshop, and also checked a bit about the second one: "Splatter Paint".
https://cloud-aix7l9fd8-hack-club-bot.vercel.app/0j-cordz-readme.pnghttps://cloud-jfofjyf36-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-11_a_la_s__11.55.46.pnghttps://cloud-e0vwdd4wo-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-11_a_la_s__22.27.27.pnghttps://cloud-hujxmlymn-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-11_a_la_s__22.34.12.png
Today I had my Hack Club Leader call and it went fantastic! And I'm happy to say that now I'm a Hack Club Leader! Hope to make awesome things at my high school club where everyone will learn and have a great time. In other things, I did some major changes to my Github account as I had planned and tomorrow I will be applying for the GitHub Student Developer Pack, that will provides me with tools that will be useful in my journey to learn how to program.
https://cloud-93mdznqcv-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-10_a_la_s__22.38.18.png
Today I did some more progress on my BWSI Medlytics Course, I've been so busy with school and other coding projects that I didn't had time to work on that for a while. And thanks to the help of Hack Clubbers, I am designing a guide to learn more about programming on an organized way, that will take into consideration all the knowledge I've got within this time I've been learning more about coding and technology, and my future goals and plans. So I will continue my new path, together with my progress made here at the club with workshops. In addition to this, I had planned to make the changes to my GitHub Profile README that I have said some days ago, but I will not do them today because I have a new goal for my account, and lastly for today, tomorrow is my Hack Club Leader Call so looking forward to it!
https://cloud-1kxwlusav-hack-club-bot.vercel.app/0mit_bwsi_2021_program_pg1.png
My Hack Club application call was scheduled! Looking forward to it and starting my own Club at my High School!
https://cloud-qbdyx0top-hack-club-bot.vercel.app/0hack-club-app-submitted.pnghttps://cloud-8n2nska49-hack-club-bot.vercel.app/0hack-club-zoom.png
My path of learning to code has taken me quite a long way, and I'm very happy with the progress made so far, because I've been re-learning HTML and CSS, and I'm almost ready to publish my website project, but also, I'm going to start learning properly into something I wanted to do after I learned Blender, and it is Game Development! So I will be starting to learn how to work with the Unity Game-Engine and also I will document my progress here among my regular coding posts.
https://cloud-4d3q8uq1q-hack-club-bot.vercel.app/0unity-game-engine.png
So, as I mentioned two days ago: I did a fresh reset of MacOS Monterey on my M1 Macbook Air and I set up some coding tools, like iTerm and Atom and also installed Homebrew, did more research on using Git and started using Raycast after moving on from Alfred. In addition to this, I learned more about website deployment and useful tools for it and finally found the perfect domain name for my personal/blog/portfolio/projects Website, although I can't buy it at the moment.
https://cloud-350ebv899-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-04_a_la_s__23.25.59.pnghttps://cloud-rllj1944q-hack-club-bot.vercel.app/01366_2000.jpeghttps://cloud-4pe392r5g-hack-club-bot.vercel.app/0screenshot2019-01-3115.19.37.pnghttps://cloud-j6ydlbadm-hack-club-bot.vercel.app/056c27e2b-d2c0-43eb-99bc-73de9dda1a89.pnghttps://cloud-qexrmf7tf-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-06_a_la_s__23.00.30.png
aom-21 emoji
macbook-air-space-gray-screen emoji
github emoji
atom emoji
I submitted my Hack Club Application! Looking forward to start a Hack Club at my High School and share all the amazing things I've learned so far here on the Slack!!!
https://cloud-bgwaex5ij-hack-club-bot.vercel.app/0hack-club-app-submitted.pnghttps://cloud-3heewsnmq-hack-club-bot.vercel.app/0hack-club-app.png
Today I worked again on my Personal Website Workshop, almost ready to ship the final website with all the improvements done. Next thing to do tomorrow! Fresh MacOS Monterey install on M1 MacBook Air, setup Homebrew, re-install proper coding tools I managed to learn and keep going!!!
https://cloud-d84qoornt-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-04_a_la_s__23.25.59.png
Today I worked more on my personal website workshop, started building a database on Obsidian, started to build my personal notebook with this Next.js theme and got to learn a few more things here on the club.
https://cloud-153ytcat4-hack-club-bot.vercel.app/0banner.pnghttps://cloud-mj5mzezt6-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-03_a_la_s__22.51.03.pnghttps://cloud-j65pr4cj3-hack-club-bot.vercel.app/0captura_de_pantalla_2021-11-03_a_la_s__22.50.35.pnghttps://cloud-7sokrhjmk-hack-club-bot.vercel.app/0captura_de_pantalla_2021-10-28_a_la_s__23.56.01.png
aom-21 emoji
js emoji
nextjs emoji
Today was a busy day and I'm going to start learning to use Obsidian! It seems to be a good way to start a Digital Garden and to keep record of things that I'm learning on my coding path in a second brain, also I'm doing more research on how to make a personal website, in addition to the workshop which I will have some interesting things to say about it tomorrow.
https://cloud-6ogyn1wjh-hack-club-bot.vercel.app/0banner.pnghttps://cloud-8n7ncvj37-hack-club-bot.vercel.app/0screenshot.png
obsidian emoji
aom-21 emoji
Today I sent my MIT College Application, I don't know if will get in, I hope so, but whatever the result is, it was a fun journey.
https://cloud-oqkn57nq9-hack-club-bot.vercel.app/0mit-admissions-share.jpeg
Doing more homework and working on college essays right now, no coding progress today either, just school productivity!
https://cloud-1zj6uo8o6-hack-club-bot.vercel.app/0mit-admissions-share.jpeg
Being here in Hack Club has been really incredible, time goes by very fast, thank you all for being incredible! Today there isn't a particular progress on anything, just more homework and essays to be done.
https://cloud-1chk2qh17-hack-club-bot.vercel.app/0captura_de_pantalla_2021-10-30_a_la_s__23.16.38.png
Today I worked on some homework and started doing my final edits on my college application, due to this, today there isn't any significant coding progress.
https://cloud-kvg0m3c7o-hack-club-bot.vercel.app/0mit-admissions-share.jpeg
Today I worked on some of my online courses, did some homework and practice a bit my coding skills, although today there isn't workshop progress I saw what I have left to on it.
https://cloud-mmid43p3p-hack-club-bot.vercel.app/0elements-panel.pnghttps://cloud-ffagn50ou-hack-club-bot.vercel.app/0captura_de_pantalla_2021-10-28_a_la_s__23.58.30.png
Today was Hack Night, it's the second time I joined, happy to be there this time with @clairebookworm, @rishi, @neel.redkar, @Clawrence040, @hugo.y.hu935, @linus, @ZaynB and the others who also joined later on! Today there is no significant coding progress, but did some other science studies, also planned a bit about building my first website, but I want to finish the club's workshop first, which I'm almost done.
https://cloud-j3bye7cg4-hack-club-bot.vercel.app/0hack_night.png
lets-fucking-gooo emoji
goose-honk-technologist emoji
aom-21 emoji
Today I went to Next.js Conf and also continue on my coding journey to keep learning HTML and CSS!
https://cloud-pyg1t8tl2-hack-club-bot.vercel.app/0nextjs.png
js emoji
nextjs emoji
aom-21 emoji
Ready to update to MacOS Monterey! In other things, I hope to improve my programming setup with tools that I have been improving in using such as Replit for the workshops, of which, today I made another minor advance in the first one, and in addition to continue learning basic HTML and CSS, I started to check more about deploy tools and the HUGO static website building framework, which I plan to use later on.
https://cloud-c7w123frt-hack-club-bot.vercel.app/0hugo-logo.pnghttps://cloud-49sd0yuc1-hack-club-bot.vercel.app/0macosmonterey.png
aom-21 emoji
replit emoji
I finally managed to add a song to my scrapbook profile, also today I worked on some changes for my Github profile but haven't add them to it yet and did a small progress on workshop coding.
https://cloud-dqig6uahl-hack-club-bot.vercel.app/0captura_de_pantalla_2021-10-24_a_la_s__23.21.15.png
aom-21 emoji
github emoji
Yesterday's Hack Night with @TheRealR1ke, @e-lee-za, @courtney and @ZaynB was super fun! In other things, today there isn't any significant coding progress, just a lot of more homework done, still, I managed to paint a bit again, maybe i'll start posting art/drawings to my scrapbook too!
https://cloud-fewepkn2j-hack-club-bot.vercel.app/0hack_night.png
Trying out some CSS customization for my Scrapbook after having proposed it some time ago.
https://cloud-lfko8zotf-hack-club-bot.vercel.app/0scrapbookcss.png
aom-21 emoji
Due to some unexpected high school homework, I wasn't able to finished my workshop yesterday, but today I started organizing more things in my Hack Club Slack, added some friends to my Scrapbook Webring and realizing Github was down so I couldn't add changes to my Readme Profile, I plan to do those today afternoon because GitHub is up already.
https://cloud-nwygg6b6h-hack-club-bot.vercel.app/0github.png
I did the first part of the Personal Website Workshop! It took me some time because of my high school activities and exams, but I was finally able to do it, the next step is to customize the page with some CSS, will work on that today's afternoon and then ship my final first project!
https://cloud-ob2sz88ed-hack-club-bot.vercel.app/0orpheus.png
Today I realized that I have a 9 day streak here in my scrapbook, I hope to keep it going forward. Anyway, today is going to be a very productive day. I plan to finally continue in my Hack Club workshop after a few days of inactivity at it, and maybe setup my scrapbook with CSS or other things.
https://cloud-fkattsdee-hack-club-bot.vercel.app/0scrapbook.png
aom-21 emoji
goose-honk-technologist emoji
Setting up Pop!_OS Linux Distro on a laptop
https://cloud-61xl1kbe9-hack-club-bot.vercel.app/0pop_os.jpeghttps://cloud-lkq1sf7ff-hack-club-bot.vercel.app/0linux.pnghttps://cloud-droumnv8h-hack-club-bot.vercel.app/0pop-os-install.png
pop-os emoji
linux emoji
aom-21 emoji
How quickly time passes, today is the first week since I joined Hack Club and it has been an incredible experience, I have been learning a lot of things and also meeting incredible people.   Although, today there are no advances in the workshop either, just a blender doughnut that did not turn out well ...
https://cloud-56tjgd1yb-hack-club-bot.vercel.app/0blenderdoughnut.png
aom-21 emoji
blender emoji
goose-honk-technologist emoji
Today I received my certificate of participation from my first Hackathon that I went to a few days ago!!! It was an incredible experience, I had a great time, and I learned a lot, I just have to wait for my stickers (It will take about another month to arrive).   (Today there is no workshop progress, but will update on that later).
https://cloud-fztt8ufgp-hack-club-bot.vercel.app/0certificate.jpeg
yay emoji
aom-21 emoji
Today I went through freeCodeCamp Basic HTML and HTML5 Responsive Web Design Tutorial! I start building the project presented and did about 36% of it. Hope to finish it soon and then finally move on to the Hack Club Personal Website Workshop, which I decide to postpone a bit to make other things before.
https://cloud-9ica23re1-hack-club-bot.vercel.app/0captura_de_pantalla_2021-10-15_a_la_s__10.58.26.png
aom-21 emoji
goose-honk-technologist emoji
Today I'm starting my first Hack Club Workshop: "Build a Personal Website".
https://cloud-8qg8xtfyb-hack-club-bot.vercel.app/0personal.website.png
goose-honk-technologist emoji
orpheus emoji
aom-21 emoji
Here's my Next.js Conf ticket, it didn't load properly on my previous post, anyways, what is important is that I finish my Hello-World GitHub Guides Activity! Looking forward to complete more difficult challenges with time, including Hack Club Workshops!
https://cloud-nvhd6zgct-hack-club-bot.vercel.app/0nextjs.conf.png
I also did some 3D work on Blender; the doughnut is starting to look great! Hoping to get it finish soon!
https://cloud-oc31rtvs9-hack-club-bot.vercel.app/0blender.png
aom-21 emoji
blender emoji
I sign up for Next.js Conf! Looking forward to the talks, let’s see what I can learn from there, also wanted to share my ticket! nextjs.org/conf/tickets/oct21/J-cordz?s=2 So... In other things, I'm also going to start taking the Hack Club Workshops! They are the perfect opportunity to start building projects and learn by making, I hope to start making some progress, and then I will share what I have accomplished!!!
https://cloud-8rycskjku-hack-club-bot.vercel.app/0hackclub.workshops.png
So, I finally set up and customized my GitHub profile! github.com/J-cordz I'm ready to start contributing and keep learning a lot of programming and technology! Next goal is to start developing things and making cool projects!
https://cloud-kyo1v5bfh-hack-club-bot.vercel.app/0j-cordz.github.png
githubparrot emoji
github emoji
aom-21 emoji
So today I am going to give my first presentation at my newly created Science and Technology Club at my high school! I have been preparing everything for some time, from the prototype of the club to its organization and final approval and start of its classes! I am looking forward to it, since I'm the founder and I’m ready to start participating and because the club will also have the support of experts in the topics to be presented, so everyone will learn a lot and have a great time!!! (It's in Spanish because I also speak Spanish ¯\(ツ)/¯ ).
https://cloud-3gtrdzb6z-hack-club-bot.vercel.app/0invitacio__nclub.png
Hello world! Today is my first day at Hack Club, I joined yesterday late afternoon, but today I’m ready to start contributing to this amazing community and start learning a lot of cool stuff and making new friends and having a great time. I recently (Yesterday) participate at my first Hackathon, and I am currently taking the MIT Beaver Works courses and freeCodeCamp as an introduction to programming, because currently my knowledge of the area falls only on Linux and command line, so I want to expand what I know: So, as a first post on scrapbook, I made this! It’s just a collage of some of the Hack Club Stickers but I really like it and currently I don’t have anything else to share yet, but I will share my future projects and things I’m building and learning as the time passes and my knowledge expands as well!
https://cloud-lced3y9li-hack-club-bot.vercel.app/0hackclub.png