


A content creator born in Latvia who works on creating videos, music, and many other activities. He's a huge Sonic the Hedgehog and Rooster Teeth enthusiast, and of course he's all about RWBY, which he considers one of the best out there.

What about type.today and Typoetheque? 🤔

Thanks for giving me a -1 point on my post. You guys suck. 😭

Haven't you watched RWBY yet? :)

RWBY Fan Character - Nathaniel Silver-Rose

I created my own RWBY fan character a long time ago, named Nathaniel Silver-Rose, who also goes by the codename Rayden (or whatever it's called).
I used Charat.me to create this because, to be honest, I can't draw or make artwork, and it seems really challenging.
I realize that I may have tried harder than necessary, and that it may not be flawless, but I hope you find it somewhat well done, so I apologize for that. Please don't judge this post too harshly. 🙏
Let me know what you think of this character in the comments! :)

My old phone number is stuck on any social media. Please help.
Hello!
I'm having some issues with my Instagram account. When I tried to sign in to the Instagram app or website, the code wasn't sent to my OLD phone number and I wasn't able to use the backup codes. However, I saved my Instagram code in my Google Authenticator app, but nothing worked. The problem also affects my Telegram and WhatsApp accounts.



It feels like my Instagram account is coming to an end, but I'm really hoping you can respond to help me solve this problem.
P.S. Sorry for posting in the wrong community.
Thank you!

But, you know, it's kind of hard for me. Sorry. :)

But it's kinda hard for me, naturally.

This is something that I had never tried before, but it actually worked. Thank you! 👍

I’ll ask again, what are you trying to do? Do you want to make your own beats to rap on, or maybe make a soundtrack for an indie game?
Well, maybe I'm just trying to create my own songs, song albums, singles, and stuff. That's all I have to say. 🤷♂️ I'm sorry.

Trying to create my own songs.

I'm waving the white flag.
Editing the MIDI notes of Suno's AI-generated song (in MP3 format) is incredibly hard. The notes are quite weird, and I'm starting to feel discouraged about making music.
Should I give up or what? I could really use some help. ☹️


testing.

How to download fonts from MyFonts using Inspect Element?
Hello!
This is my first message, and I wanted to share something I've been working on. I hope to one day download all the fonts that catch my eye, as it's enjoyable to explore new designs.
I recently came across some interesting fonts on MyFonts, but I'm not quite sure how to download them. I've searched for scripts, tutorial videos, and resources to guide me through the process of downloading fonts from MyFonts, but unfortunately, I haven't found much help.
Here's some code I got recently:
undefined
const base64Data = 'RESPONSE_HERE'; const base64Content = base64Data.split(',')[1]; const binaryData = atob(base64Content); const uint8Array = new Uint8Array(binaryData.length); for (let i = 0; i < binaryData.length; i++) { uint8Array[i] = binaryData.charCodeAt(i); } const blob = new Blob([uint8Array], { type: 'font/woff2' }); const downloadLink = document.createElement('a'); downloadLink.href = URL.createObjectURL(blob); downloadLink.download = 'YourFontName.woff2'; downloadLin