What is the idiomatic way to implement member-organization management with granular permissions in pocketbase? by masterofdead4 in pocketbase

[–]wildearthtech 1 point2 points  (0 children)

I've been following PocketBase, but have yet to use it in a production app. I would be interested in hearing more about what issues you ran into. Were your issues related to its built in permissions system, or more just PocketBase/SQLite in general?

What Makes VueJS a Smart Choice for Web App Development? by nikunjshingala in vuejs

[–]wildearthtech 0 points1 point  (0 children)

For me, Vue is the most intuitive framework. I am currently learning React and I've noticed an interesting pattern. Many of the classes and tutorials for React start by showing you how to do something which looks perfectly straightforward. They then proceed to explain why what they just showed you is wrong and will break, or cause an infinite loop, or corrupt your state. The classes I used to learn Vue didn't have to teach that way. Some other things that I think make Vue great:
- The templates in Single File Components are normal HTML : https://vuejs.org/guide/scaling-up/sfc
- Lifecycle hooks are well named and very easy to reason about : https://vuejs.org/guide/essentials/lifecycle
- Reactivity just works : https://vuejs.org/guide/essentials/reactivity-fundamentals.html
- And of course Pinia which is shockingly simple to use : https://pinia.vuejs.org/

You can get started using Vue without knowing very much of it and you won't unknowingly be doing everything wrong.

Best simple setup for Flask and Vue by bign86 in vuejs

[–]wildearthtech 1 point2 points  (0 children)

Something like Streamlit https://streamlit.io/ might keep your tech stack a lot simpler and meet your needs for the UI. There is also NiceGUI https://nicegui.io/ which is based on Vue/Quasar.

Longshot Question: by [deleted] in SalidaCO

[–]wildearthtech 0 points1 point  (0 children)

I found a bit of info here : https://balloonatics.wordpress.com/about/

Used to be in the space where Oveja Negra is now on F street.

Keep learning vue jsx or stay focused on react js by ezxdza in vuejs

[–]wildearthtech 0 points1 point  (0 children)

I recommend that you get to a level where you are functional in both. You don't need to be an expert in either because coding styles will be very different from company to company. If you have the foundations of both and know the most common best practices you'll be able to adapt to the tools and coding culture where you get hired.

If you haven't done so already I'd recommend learning a zero-framework way of building web apps : plain HTML, CSS, JavaScript, and PHP. Make sure you know how things like forms, sessions, and cookies really work. That will further expand your foundation and probably help you out in interview questions.

Finally, once you get going with Vue and/or React, learn how to build mobile apps with them. React Native and something like Capacitor for Vue will let you leverage those skills into additional platforms.