GhibliMagic / Janet's Avatar

GhibliMagic / Janet

@ghiblimagic

Fantasy Lover๐ŸŽฌ ๐Ÿ“š ๐ŸŽฎ / Software Developer / #100devs #WomenInTech #webDev / Language learner ๐Ÿ‡ฏ๐Ÿ‡ต ๐Ÿ‡ฒ๐Ÿ‡ฝ / ๐Ÿฑ ๐Ÿถenthusiast /๐Ÿณ๏ธโ€๐ŸŒˆ hades / ff14 / in SoCal ๐ŸŒด/ Torc ambassador Portfolio janetspellman.com App for shelters: https://www.homewardtails.com Twitch ghiblimagic

745
Followers
431
Following
1,575
Posts
15.07.2023
Joined
Posts Following

Latest posts by GhibliMagic / Janet @ghiblimagic

screenshot of a page showing downloadable coloring books for 2 episodes

screenshot of a page showing downloadable coloring books for 2 episodes

lots of coding logic for blocks

lots of coding logic for blocks

more coding logic for blocks

more coding logic for blocks

btw still alive! Just been working a lot on that volunteer wordpress site since I'm an overachiever and actually coding things for it haha.

The nonprofit wants to keep the site under wraps for a bit longer, thus the blacked out bits. Hard to share much of it right now

02.03.2026 11:53 ๐Ÿ‘ 7 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Words cannot express my love for that head-empty-orange-cat spirit in pomeranian hardware.

Just look at him!

Pokemon really was cooking when they made this boy ๐Ÿ”ฅ

28.02.2026 09:42 ๐Ÿ‘ 4 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Preview
Laid Off Lounge With Danny Thomas ยท Luma By February, the "new year energy" can start to fade. This month, we're focusing on the mental game of job hunting. Join Jason and special guest Danny Thompsonโ€ฆ

Also join us at yappy hour on friday! Its a chill discord event, no cameras needed, just a keyboard ๐Ÿ˜‰

Links for event info:

Laid Off lounge : luma.com/ti7pj5nk?tk...
Yappy Hour 10:30 AM PST: luma.com/8q44jztp?tk...
Yappy Hour (Spanish) 11 AM PST: luma.com/hsp657ry

26.02.2026 09:50 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image Post image Post image

Wow today's free virtual event at 10:30 AM PST - 11:30 AM PST is going to be wild! ๐Ÿ”ฅ

@torc.dev landed Danny Thompson as the guest for the tech commute! If you're dealing with the mental game of job hunting this is one you're not going to want to miss!

26.02.2026 09:50 ๐Ÿ‘ 6 ๐Ÿ” 1 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Let's gooo! Excellent work!

23.02.2026 09:12 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Top CEO Explains The AI Gaps 95% of Companies NEED to see! Apollo GraphQL CEO Matt DeBergalis
Top CEO Explains The AI Gaps 95% of Companies NEED to see! Apollo GraphQL CEO Matt DeBergalis AI is writing more code than anyone expected. Some of it is great. A lot of it is just okay. In this episode, Danny Thompson and Leon sit down with Matt DeBergalis, CEO of Apollo GraphQL, to unpack what it will take to move from a gold rush of mediocrity to production-grade agentic experiences that

Link to the episode

23.02.2026 03:16 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image Post image Post image

Felt like a kid knocking out stubborn some crab grass, it felt like playing with dirt haha. All while listening to the new programming podcast Matt DeBergalis episode ๐Ÿ’ช

Also have a free pic of ember posing next to our giant succulents and a blurry fat birb

23.02.2026 03:16 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Post image

Last second heads up for these free @torc.dev virtual events today!

Yappy hour (ENG) at 10:30 am PST
Spanish yappy hour at 11 am

Come join your tech nerds for a relaxed chat, more information on luma. Anyone around the world can join!

luma.com/3agwdj3z
luma.com/3hb7qdw4

20.02.2026 09:46 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

please give us more personal data please please please please cโ€™mon youโ€™re being so mean dude. we only got breached like three times. weโ€™re NOT going to sell it man please please please plus its for like safety? so youโ€™re the one who looks stupid right now come on pleaaaaaase just one data point bro

09.02.2026 18:44 ๐Ÿ‘ 8384 ๐Ÿ” 3562 ๐Ÿ’ฌ 18 ๐Ÿ“Œ 21
 const { registerBlockType } = wp.blocks;
  const {
    useBlockProps,
    RichText,
    MediaUpload,
    MediaUploadCheck,
    InspectorControls,
  } = wp.blockEditor;
  const { Button, PanelBody } = wp.components;
  const { createElement: el } = wp.element;
  const { __ } = wp.i18n;

  registerBlockType("custom/bio-card", {
    title: __("Bio Card"),
    category: "widgets",
    attributes: {
      photoId: { type: "number" },
      photoUrl: { type: "string" },
      name: { type: "string", default: "" },
      title: { type: "object", default: { en: "", es: "" } },
      shortBio: { type: "object", default: { en: "", es: "" } },
      expandedBio: { type: "object", default: { en: "", es: "" } },
    },

const { registerBlockType } = wp.blocks; const { useBlockProps, RichText, MediaUpload, MediaUploadCheck, InspectorControls, } = wp.blockEditor; const { Button, PanelBody } = wp.components; const { createElement: el } = wp.element; const { __ } = wp.i18n; registerBlockType("custom/bio-card", { title: __("Bio Card"), category: "widgets", attributes: { photoId: { type: "number" }, photoUrl: { type: "string" }, name: { type: "string", default: "" }, title: { type: "object", default: { en: "", es: "" } }, shortBio: { type: "object", default: { en: "", es: "" } }, expandedBio: { type: "object", default: { en: "", es: "" } }, },

document.addEventListener("DOMContentLoaded", function () {
  const toggles = document.querySelectorAll(".expanded-bio-toggle");

  toggles.forEach((button) => {
    button.addEventListener("click", () => {
      const content = button.nextElementSibling;
      if (!content) return;

      if (content.style.display === "block") {
        content.style.display = "none";
        button.textContent = "Show More";
      } else {
        content.style.display = "block";
        button.textContent = "Show Less";
      }
    });
  });
});

document.addEventListener("DOMContentLoaded", function () { const toggles = document.querySelectorAll(".expanded-bio-toggle"); toggles.forEach((button) => { button.addEventListener("click", () => { const content = button.nextElementSibling; if (!content) return; if (content.style.display === "block") { content.style.display = "none"; button.textContent = "Show More"; } else { content.style.display = "block"; button.textContent = "Show Less"; } }); }); });

๐ŸŸข had to manually add the Spanish fields since TranslatePress sees it all as one "block", but the spanish fields plays nice with TranslatePress's language toggle (TranslatePress changes the lang attribute of the entire site, so i listened for changes there and wa~la it works)

07.02.2026 09:58 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image

199 ~ 204 #100daysofcode
Haven't continued the freelancing hunt yet but:
๐Ÿ€ Signed up to build a nonprofits wordpress site for free
๐ŸŸข learned about ACF
๐ŸŸข Got so frustrated with paywalls that instead of using ACF, i learned how to make a plugin to build custom blocks for them

07.02.2026 09:58 ๐Ÿ‘ 5 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Cat sleeping in her cat tree

Cat sleeping in her cat tree

Post image Post image

While ember slept i snuck out to the gym and walked 4.69 miles (nice) with a handful of sprints mixed in! Getting back into the groove slowly ๐Ÿ’ช๐ŸŒ

Wanted to get things done after but alas body is now demanding sleep lol

Hope you all are having a good one!

05.02.2026 04:36 ๐Ÿ‘ 9 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Video thumbnail

@wardstone.bsky.social was streaming and I was whining about how I didn't do any shorts for my game this week so he did this while he was on lol

#gamedev #indiegame #godot

04.02.2026 18:08 ๐Ÿ‘ 20 ๐Ÿ” 7 ๐Ÿ’ฌ 3 ๐Ÿ“Œ 1

woah! lets go!

04.02.2026 07:34 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
a small brown bear is wearing a blue knit hat with bunny ears, small black eyes, and a small white mouth.  It's modeled after the hat worn by Liam Conejo Ramos in an infamous photo where he was taken from his school by ICE.

a small brown bear is wearing a blue knit hat with bunny ears, small black eyes, and a small white mouth. It's modeled after the hat worn by Liam Conejo Ramos in an infamous photo where he was taken from his school by ICE.

I made a new hat that is cute and not political for the main character of my tower defence game.

#art #gamedev #blender3d #fuckice

29.01.2026 17:17 ๐Ÿ‘ 20 ๐Ÿ” 2 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Afsffgf making me blush! Appreciate you so much pizza friend!

04.02.2026 05:55 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Afsfft I'm honored ๐Ÿฅบ! You da best mai

04.02.2026 05:54 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Whoops accidently tricked you guys, no 2nd stream yet! Can't wait to yap with you on my next stream tho!

04.02.2026 05:51 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

NOPE I tricked you (accidentally) haha, that was just a boring video recording versus a stream. No 2nd one yet ;)

04.02.2026 05:19 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Preview
torc.dev ยท Events Calendar View and subscribe to events from torc.dev on Luma. Torc a community-first talent marketplace connecting technology talent with remote opportunities all across the globe.

You can join anywhere in the world, not limited to the US! Come join us, maybe make a new friend or two.

Goose workshop: luma.com/torc?k=c&e=...
Tech Commute: luma.com/b4eixlue

Yappy Hour English: luma.com/torc?k=c&e=...
Yappy Hour Spanish:

03.02.2026 14:54 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image Post image

Are you ready to hang out with your fellow techies? There's 2 free virtual @torc.dev events TODAY 2/3!

- Goose workshop part 2 @ 10am PST
- Tech Commute with Ryan Vogel @ 12pm PST

Friday is going to become fri~yay with Yappy hour! A casual hangout as we relax after a long week

03.02.2026 14:54 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Post image Post image Post image Post image

Yesterday, five-year-old Liam and his dad Adrian were released from Dilley detention center. I picked them up last night and escorted them back to Minnesota this morning.

Liam is now home. With his hat and his backpack.

01.02.2026 15:49 ๐Ÿ‘ 67324 ๐Ÿ” 16102 ๐Ÿ’ฌ 2572 ๐Ÿ“Œ 1828

Thanks, appreciate you Michael!

02.02.2026 05:45 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 1

Hyped to hear! See you there!

02.02.2026 04:40 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Thank u thank u ~ Honored to get the clap as well, Naz truly has become one of us.

02.02.2026 04:39 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Preview
Janet Spellman's About Me Software developer portfolio covering Janet Spellman's website building services, previous projects and skills

More info over here: janetspellman.com/torc/

But of course feel free to hit my up Ashton my fellow creature buddy!

02.02.2026 04:38 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

We really need a theme song, how about "๐ŸŽต Let's Get Down~ To Freelancing ~ To Get, Those Gigs~ ๐ŸŽต". Any other ideas? ๐Ÿ˜œ

#freelancing #webdev #webdevelopment #freelanceFebruary #freelancingFebruary

02.02.2026 04:37 ๐Ÿ‘ 5 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Freelancing February/ freelance February is a part of #100devs but you don't have to be part of the community to join.

100devs is a agency with a 100% FREE training program for web development. # not sponsored I just really love the program ๐Ÿ˜‚.

02.02.2026 04:37 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

This month it's time to work on getting freelancing gigs my fellow web devs (or well anyone, the more the merrier).

So I'm a web dev but I've gotten my previous clients through word of mouth. So visiting businesses in person is new and lets say, a wee nerve wracking.

02.02.2026 04:37 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Freelancing February Day 1: ๐ŸŽต Let's Get Down~ To Freelancing ~ To Get, Those Gigs~ ๐ŸŽต
Freelancing February Day 1: ๐ŸŽต Let's Get Down~ To Freelancing ~ To Get, Those Gigs~ ๐ŸŽต YouTube video by Janet / ghiblimagic

It's day 1 of freelancing February! I didn't combust into flames after chatting at two businesses huzzah๐Ÿ”ฅ

I hope sharing my experience will help others who are also nervous to start!

youtu.be/5FeTqR_yfJQ

02.02.2026 04:37 ๐Ÿ‘ 16 ๐Ÿ” 1 ๐Ÿ’ฌ 4 ๐Ÿ“Œ 1