mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

745
active users

#vue

4 posts4 participants0 posts today

Shipped tonight:

- a RSS feed (with dates in French :napo:… whoops!), using @spatie #Laravel feed package.
- a first basic version of the Nintendo Direct archives (2025 only for now): nintendodirect.sunappu.net/arc : it’s the 2nd URL, so this update also comes with a small navigation header.

I’ve also started to pimp the CMS, using #InertiaJS and #Vue. Good experience so far, but I have more to do. Inertia payload is heavy (Inertia + Vue = 70 KB gzipped), that’s why I only use it for the CMS.

1/2

Nintendo Direct Archives
Nintendo Direct • SunappuNintendo Direct Archives
More from Sunappu

I started drafting a plugin system for #Auralis 🧩

As a first plugin I plan to publish `@auralis/openapi`

I took inspirations from #NestJS, #Vue, #Vite and other systems. Usually I try first to write the code a consumer of auralis would write and then implement the stuff behind it.

Next step: find a nice lib to generate the json/yml spec response.

github.com/auralisjs/auralis/p

GitHubfeat: OpenAPI plugin by Shinigami92 · Pull Request #25 · auralisjs/auralisBy Shinigami92

Bon je galère avec Neovim, j'ai besoin de votre aide.

J'ai treesitter et treesitter-textobjects.

J'essaye de réindenter un fichier .vue. Il y a donc un mélange de HTML, JavaScript et SCSS. Pour HTML et JS ça s'indente correctement, pas d'erreur dans l'arbre des noeuds.

En revanche, le SCSS ne s'indente pas bien. Il y a des ERROR dans l'arbre de TreeSitter. Après avoir joué un peu avec, j'ai l'impression que ça bug à cause de :has et de @\extend.

Avez-vous une idée pour m'aider à résoudre mon problème ?

Edit : j'ai aussi vue-language-server en LSP.

Merci par avance. Svp retoots 🙏

#Neovim#Vim#Dev

Anyone happen to be looking for a programmer who hasn't been completely consumed by all-AI-everything by any chance? Freelance or hired, remote (based in Germany). I speak German and English and mostly worked with #PHP, #Laravel, #Kirby CMS, #Vue, #Svelte and a bit of native mobile dev (Swift and Kotlin), too.

I know the chances are slim given *everything in the world*, but maybe this time #getfedihired might work out? Boost super appreciated. Feel free to DM or email at skye@lavenderbits.com

Explicit Resource Management in #JavaScript is very useful for creating semaphores/locks around code. Here's one I just wrote with #vue

There's a ref that contains the lock value, the template binds to "disabled" on the form/button below.

If a lock is established (ie it was false), it is set to true for the duration of the function. If the method is called again while it is still processing, it will be locked and exit early.

Once the processing completes, the lock is automatically released because of the "using" statement at the top!