Well it’s not open-source, but you can hook it up to Siri using Apple Shortcuts… 👀
I went from React → Vue → Svelte
Svelte/SvelteKit is just so simple to use and feels closer to vanilla JS/HTML/CSS that I find myself missing it when I use the others. SvelteKit supports SSR, so if you’d like you can build out your whole backend API as well.
Svelte has an awesome interactive tutorial you can jump into right away
Come hang out at !sveltejs@programming.dev if you have any questions!
If you’re handling any sensitive data, passwords, or private user data, DO NOT use stores. Stores should only be used on the client-side. Use event.locals to pass data around for the user on the server side instead. If you use a store on the server-side, you risk that data being exposed or used in other current users and browser session.
For form validation, check out SvelteKit form actions. Also, I personally find Yup to be easier to use than Zod
I’d try using props for high-level component states (primary, secondary, disabled, loading, online, error, etc.) instead of one-off styles. Then your props will manage a bunch of styles and functionality all at once and you’ll stay a whole lot more organized. You can even have a settings/options prop that changes minor things if you’d like. Then, for one-off or edge-cases related to styling, you can use a css variable
!sveltejs@programming.dev
There’s quite a few of us :) Looking forward to Svelte 5.
Yeah I was really hesitant at first, but I’m warming up to it now. I think I gotta play around with them more to truly appreciate it
I’m trying to make this simpler with !lemmynade@lemm.ee. Sharing a post, thread, or single comment will always share the original link (canonical link) from the original instance, that way it is the most up-to-date version
Hot is likely just a blend between Active and New to give you a good balance of popular content and encourage engagement with posts that were just posted. The algorithm could definitely be improved, but I’d bet as Lemmy grows in content and content creators Hot sorting will get better too
I’ve been watching Bun for a while and it seems to actually be a drop-in replacement for almost everything in my toolchain from the ground up. Haven’t tried it yet, but really excited to with SvelteKit now that it’s at 1.0!
Each instance has different word filters, thus each community has different filters depending on the instance it’s on. What community were you trying to post on?
For example, you can find the word filter that lemmy.ml uses somewhere on this page here: lemmy.ml/api/v3/site
It’s kinda messy, but it’s after/under “slur_filter_regex” and it’s written in a format called RegEx
There have been some users maliciously posting illegal images to target certain communities recently, thus some instances have removed recent image uploads or have disabled image features in some way. This attack was happening on lemmy.world, but other instances have taken action too. That at least could explain why you’re not seeing some images.
I would look into a circular/radial CSS background gradient on a fixed-position fullscreen div with pointer-events set to none. You can make the center transparent and the rest whatever color/transparency you want. Then, use JS to set the circular gradient’s position relative to the cursor (use CSS variables if necessary)