Ask HN: What are your favorite low-coding apps / tools as a developer?
181–190 of 290 posts
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#182www.kaholo.io If you're looking to build automation pipelines in simple and fast way, you can use Kaholo.io visual DevOps tool to do that. It is low-code so you have complete flexibility and it doesn't require any unique scripting language.
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#183Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#184Earlier quoted context omitted.
Can you expand on how is Zapier helping? I am using Airtable + Python because I felt too constrained by Zapier.
May I ask, what a (real) use case for airtable would be? When I saw 1200/5000 rows per "base" I was searching for the "k" (x1000) but they seem to be serious. I don't see a real advantage for example to g suite(maybe only that it is not google) :)? But maybe I just don't see the point...thx for clarification
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#185Have you tried Internal? https://internal.io/ It's great for engineering teams that want to add custom HTTP services, hook into GraphQL mutations, and/or add custom SQL - but want to empower non devs, lazy devs or simply devs that want to focus on their core product. We started working on Internal after realizing that most companies can't dedicate valuable engineering time to build and constantly maintain/upgrade the…
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#186Earlier quoted context omitted.
You can’t create a Discord account without doxxing yourself. Signups not from an IP that discloses your location demand a dozen captchas and a telephone number. Using a burner number is not supported, and your carrier number is reversible to name/address/location just as your IP is. more info: https://sneak.berlin/20200220/discord-is-not-an-acceptable-c...
The main issue with this viewpoint and your (arguably sensationalist) article is that it just finger points & blatantly ignores the reason those protections are in place. The number of people that consider Discord part of their threat model or an actual privacy risk is incredibly tiny compared to the number of users that get inconvenience by mass bot raids & people bypassing IP bans. I help manage a medium-sized Disc…
It seems that you believe that you benefit from Discord's gatekeeping. I'm glad it seems to be working out for you. If it wasn't, however, how would you know?
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#187Hasura by far, lets you point-and-click build your database and table relationships with a web dashboard and autogenerates a full GraphQL CRUD API with permissions you can configure and JWT/webhook auth baked-in. https://hasura.io/ I've been able to build in a weekend no-code what would've taken my team weeks or months to build by hand, even with something as productive as Rails. It automates the boring stuff and you…
I have this feeling that hasura is still "onboarding". I had this experience with Netlify that offered some amazing deals and waited for everyone to onboard then started hammering them hard. I got up to $150/mo really fast for a static site that receives only about 900req/day. Every single month they were limiting more features and shifting them on to some "premium" offering that was used to lock you in. I'm still wa…
Getting as far as you can modelling a new problem domain with just models.py and the Django admin is pretty fun.
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#188Earlier quoted context omitted.
This is similar to what we're doing! Hasura + AutoCRUD framework + Metabase is a great stack for putting together a solid business application in no time. Combine Hasura (automatic GraphQL on top of PostgreSQL) with React Admin (low code CRUD apps similar to Forest) and you can build an entire back office admin suite or form app (API endpoints and admin front end) in a matter of hours. This adaptor connects react-adm…
I've taken your stack one step further, with a completely dockerised solution that uses Firebase as an authentication solution (authentication is missing from the current low-code example). It can be run locally or on a cloud provider that runs containers (e.g. GCP Compute Create-With-Container). See here: https://github.com/dvasdekis/react-admin-hasura-firebase/ Thanks to gavinray also for the help with this!
What we're doing in our production version of this is using Postgres and Hasura for auth following this approach in order to reduce external dependencies: https://github.com/sander-io/hasura-jwt-auth
It's really amazing how far you can get with just Postgres. Writing business logic with code in application middleware always felt hacky to me when we have these powerful and performant relation databases.
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#189Earlier quoted context omitted.
You can’t create a Discord account without doxxing yourself. Signups not from an IP that discloses your location demand a dozen captchas and a telephone number. Using a burner number is not supported, and your carrier number is reversible to name/address/location just as your IP is. more info: https://sneak.berlin/20200220/discord-is-not-an-acceptable-c...
The main issue with this viewpoint and your (arguably sensationalist) article is that it just finger points & blatantly ignores the reason those protections are in place. The number of people that consider Discord part of their threat model or an actual privacy risk is incredibly tiny compared to the number of users that get inconvenience by mass bot raids & people bypassing IP bans. I help manage a medium-sized Disc…
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#190Earlier quoted context omitted.
That's one of the most common misconceptions about Hasura. While it CAN expose an existing Postgres database, where it really shines (in my opinion) is when you're starting a brand new product. Because you can create your whole database and all the relationships, foreign-keys, triggers, permissions, etc through the web console UI incredibly rapidly. And yeah, it takes care of all CRUD and provides an aggregation/stat…
Sorry, I'm a bit new to GraphQL. Can you explain why this is more existing than starting a brand new product using plain PostgreSQL? Can you also explain how locked in you are, if you decide you want to migrate away from Hasura, or in general want more flexibility that the use-case of Hasura + ForestryAdmin?
About lock-in... it's open source software, so you're as locked in as you'd be with, say, Rails or Django. It doesn't do anything special to PostgreSQL so you can always rewrite the API later from scratch, or build something else on top of its GraphQL API.