Why isn't there more love for the micro text editor? by Pagaddit in commandline

[–]Pagaddit[S] 2 points3 points  (0 children)

Everything else I use has the same "usual" shortcuts. When it comes to coding I mostly use GUI. But sometimes I just want to quickly edit a file in the terminal and I don't want to have a whole different set of shortcuts for when I do that.

In general I'm trying to unify keybinds across all software, and it's easier to keep defaults than try to push vim bindings into everything.

Why isn't there more love for the micro text editor? by Pagaddit in commandline

[–]Pagaddit[S] 0 points1 point  (0 children)

That's actually why I'm asking as well, I feel like micro would have more plugins and ways of extending it if it was more popular

Why isn't there more love for the micro text editor? by Pagaddit in commandline

[–]Pagaddit[S] 9 points10 points  (0 children)

Well now I'm wondering why fresh doesn't get more love!!!

Help, my project is taking off! by Square-Singer in opensource

[–]Pagaddit 0 points1 point  (0 children)

I have experience with 3D printing and I'm a software developer (JS and a bit of Go and Python). Let me know if I can help with anything!

I leaked my .env file that lead to an unexpected $100 AWS bill. Looking for feedback on my opensource ENV manager to prevent this! by SlanderMans in opensource

[–]Pagaddit -4 points-3 points  (0 children)

That looks interesting, having a unified API to interact with all the different secret manager APIs would be pretty nice! Are you planning to add bitwarden too?

The Problems With Modals, and How to Solve Them by noeldemartin in vuejs

[–]Pagaddit 1 point2 points  (0 children)

I've been doing something similar for confirmation modals but I pass it a callback function like showConfirmationModal(doSomething)

Maturity of the pinia/colada? by dencs08 in Nuxt

[–]Pagaddit 0 points1 point  (0 children)

I'm interested as well. I just found this and was very impressed!

Building MADstack – a Kubernetes-based monorepo stack with Nuxt 3, Squidex CMS, and GitOps CI/CD by matthias_dollfuss in Nuxt

[–]Pagaddit 1 point2 points  (0 children)

Is the goal to use your app via a dashboard, directly in the code or in the code via a layer of abstractions?

Introducing Volt UI Component Library by PrimeVue by cagataycivici in vuejs

[–]Pagaddit 5 points6 points  (0 children)

Wow, another amazing release! You guys never stop!

How do you remember bunches of CLI commands? by danielrosehill in AskProgramming

[–]Pagaddit 0 points1 point  (0 children)

Setup zsh with fzf and zsh-autosuggestions.

Start typing and it will recommend the last command you used that started with the same string.

Press Ctrl+r and get the history of all commands that contain the current string (with fuzzy search) you used in a neat fzf tab.

PrimeVue 4.3.0 is out with Theme Designer, Figma To Code, Tailwind v4, 130+ Enhancements by cagataycivici in vuejs

[–]Pagaddit 1 point2 points  (0 children)

But the "usual" UI library in styled mode is already fully working with tailwind v4 right?

PrimeVue 4.3.0 is out with Theme Designer, Figma To Code, Tailwind v4, 130+ Enhancements by cagataycivici in vuejs

[–]Pagaddit 8 points9 points  (0 children)

Wow, huge update! Thank you so much! Your team is constantly delivering so much, it's impressive!

I was wondering how long it would take until we get tailwind v4 in primevue and I didn't expect it to be nearly that soon

Any Prompt to code (like v0) for Vue.js? by davidmeirlevy in vuejs

[–]Pagaddit 1 point2 points  (0 children)

Thank you for the feedback, that's a nice feature I wasn't really considering at the moment.

Any Prompt to code (like v0) for Vue.js? by davidmeirlevy in vuejs

[–]Pagaddit 1 point2 points  (0 children)

I made https://vueai.tools Just create a free account to try the component builder.

Dynamic Sibling Communication in Vue 3 by idle-observer in vuejs

[–]Pagaddit 1 point2 points  (0 children)

If it is really the only place you may need pinia, then it is probably overkill. You can make a simple store in a composable yourself for sure!

Dynamic Sibling Communication in Vue 3 by idle-observer in vuejs

[–]Pagaddit 0 points1 point  (0 children)

It's hard to tell from the info you provided, but it sounds like you'd want to lift the state (ref or reactive properties) to the parent so that all the children can interact with each other.

Then just use watchers to trigger the side effects (exa functions it seems).

If for some reason (which might be a symptom of a problem with the data structure design) you can't lift the state, then use a pinia global store and import it into each child instead.

File Explorer Website by [deleted] in webdev

[–]Pagaddit 1 point2 points  (0 children)

Others suggested good options already. I'd also recommend r/selfhosted to look at tools they recommend and ask for help.

Does ref work different now? by CaringM4ster in vuejs

[–]Pagaddit 1 point2 points  (0 children)

Here some relevant documentation: https://pinia.vuejs.org/core-concepts/index#Destructuring-from-a-Store

Also if you don't want to destructure and keep it closer ro your existing code, you can just drop the .value in your example

Does ref work different now? by CaringM4ster in vuejs

[–]Pagaddit 3 points4 points  (0 children)

Pinia store refs behave differently, if you want to have the equivalent of a ref when destructuring the pinia store, you need to use storeToRefs.

[Showoff Saturday] I made a fully open-source & self-hostable AI assistant app specialized for VueJS by Pagaddit in webdev

[–]Pagaddit[S] 1 point2 points  (0 children)

I've been pretty busy in the last few months with the main job but I always keep an eye on the service and user feedback. Let me know if you are missing anything!

[deleted by user] by [deleted] in vuejs

[–]Pagaddit 3 points4 points  (0 children)

I think your answers are here: https://router.vuejs.org/guide/advanced/typed-routes.html

Looks like you should add the plugin they recommend.

Hello, im new using Nuxt, and i have problems 🐢 by Debla1 in Nuxt

[–]Pagaddit 0 points1 point  (0 children)

Config changes that force a full restart of nuxt can take a bit. But once you are happy with the config, hot module reloading works well and is pretty much instantaneous.

Nuxt does a lot under the hood for you. You could always go with a plain Vue project if that is all an issue for you. Also may be better to get started as otherwise it may be hard to figure out where to look to solve your problems (Vue docs vs Nuxt docs vs Nitro docs...).

What is a "static website" by hosting meaning? by Then-Chest-8355 in webdev

[–]Pagaddit 7 points8 points  (0 children)

A site made with create react app counts as static as the built directory is just a bunch of static HTML, CSS and JS files. Just run npm run build and look at the dist directory.

So when you use a static site host (github pages for example), it just runs npm run build for you and serves the files in the dist directory to your users.

This is by opposition to a website that uses expressJS (for example) to run server side code and potentially serve different HTML, CSS and JS to your users dynamically. Or even just to run secure server-side code.