Ask HN: What are your favorite low-coding apps / tools as a developer?

1081 points by sureklix ↗ HN
Since low-coding is super trendy these days, I was wondering if there are actually useful apps not only for non-devs but also for lazy-devs?

I tried couple of no-code apps, but found them inflexible –not really giving you the opportunity to dive-in and customize.

290 comments

[ 3.0 ms ] story [ 268 ms ] thread
I love GameMaker Studio for making quick prototypes of games.

It's surprising powerful and the built in sprite editor can do some pretty neat stuff.

Flash was really cool! I haven’t really seen anything that lives up to what I was able to accomplish way back in the day with Macromedia Flash.

Then again, that’s not really low code.

Yeah, it's sort of the opposite of low-code — give people a super powerful art tool that gets even more powerful if you learn some basic coding, and tons of people will learn to code just to make cool things with it.

It's how I started coding, as a teenage visual artist, and now I'm a fullstack dev with a fondness for FP and SmallTalk. The gateway drug effect is real.

A modern alternative would be Tumult Hype: it off and lets you write your own JS for advanced scripting. Exports to HTML, GIF and MP4 and has a one-time fee, no monthly subscription BS.

https://tumult.com/hype/

Have you tried Retool? More than many apps, its design is more clear than most about what it automates and what it doesn’t, so confusion is reduced. Low code needs to be less flexible somewhere or else it’s just a GUI re-implementation of programming languages.
I've found that Azure's Logic App Service has been shockingly useful to me! The hard prerequisite is that you are within the Azure ecosystem, but using Logic Apps instead of defaulting to writing PowerShell for Function Apps significantly decreased development time, has increased the ease with which I can debug workflows, and when you're on the free tier (with both aforementioned flavors), then Logic Apps still reign supreme as they don't have any cold start issues that users of Function Apps (that don't get hammered all the time) do.

https://azure.microsoft.com/en-us/services/logic-apps/

https://azure.microsoft.com/en-us/blog/understanding-serverl...

This is exactly what I came to post. It's just a really well thought out service with gobs of connectors and a rich enough model to allow for basic boolean, looping, and scripting.

I used it plus a Google sheet as the first version of a UI for the last company I worked at. Instead of waiting for our front-end folks to finish up the UI, I just pointed a logic app at it, ran some basic logic on it, and brought it into the system whenever it was changed, and imported the data into the main data stores.

This. LogicApps it's a great low-coding tool that I enjoy as a developer.
We are in the middle of a year-long project to 'rewrite' all of our ESB glue/pipelines from MuleSoft to the Azure platform. We've been using Azure for a while now for almost all hosting. But our ESB had still been in Mule, because as sort of the vital arteries of our entire enterprise, it's hard to seriously consider completely reimplementing them -- especially since we're only about 3 years out from implementing Mule in the first place.

But Mule's skyrocketing costs are forcing our hand. If we don't finish this transfer project within the year, we'll be charged $100,000 for another year of Mule -- an absolutely unfeasible cost for our small/medium sized nonprofit. Our preliminary cost analysis for Azure showed it would be a fairly tiny fraction of that. So off we go.

I bring this up because we have settled on mostly Logic Apps with a few Azure Functions here and there as necessary, to fill in for missing connectors. So we are in a pretty good position to directly compare the two platforms against each other.

So far, my personal judgment is that Mule offers a lot more whizbang, but we weren't using nearly enough of it to justify the bananas cost, and LAs are turning out to be just fine. Mule development work happens within something called Anypoint Studio, which is (I believe) built on Eclipse. Most of the work you do tends to be done in the visual editor, just like in LAs, but you can drop down into the XML as necessary. It provides a fairly good debugger, and has one benefit of being able to be tested locally. I could fire up a flow in debug mode, pop over to an ActiveMQ admin panel on my machine, fire off a message, and watch it hit breakpoints. Mule's also able to provide a more consistent ability to validate JSON against schemas; LAs appear to only really be able to do this at the trigger point. That's relatively minor, though.

Mule's visual editor has no problem with large (sometimes too large) flows, with multiple branching paths, and then sub-branching on top of that. The visual elements themselves have a certain polish to them as well, and don't take up too much space -- they're represented as square instead of wide rectangles.

In comparison, the Logic Apps design view feels rather clunky. It's clearly been designed to encourage small concise flows rather than large ones. We've reimplemented complex flows that felt fairly manageable in Mule, but feel rather unwieldy in LAs despite being essentially 1-to-1 translations.

But LAs do have some honest advantages besides price. A big one is being able to easily drop in a custom Azure Function as a processor. This provides some easy reusability for more complex tasks; we had to write a Function to create JWTs, but now can reuse that in every LA where we need it. Additionally, having everything there in the Azure portal is valuable. There is essentially no gap between working on a flow, and releasing it. Azure provides the run history for your app right in the panel, which essentially acts as a set of visual logs for past runs.

We are kind of struggling with figuring out how to integrate LAs with our source control, but my guess is we'll figure that out with enough experience. All said, I think MuleSoft offers a ton of advantages that very large enterprises would find highly valuable; there's the whole Anypoint Platform that I haven't even discussed here - API managers, access control, etc. But everything that our smallish organization has needed, we've found alternatives in LAs or in the wider Azure ecosystem.

We are building a product similar to Mule targeting small & medium enterprises. We are in beta and seeking for early feedback from enterprise customers. If you are interested, please drop an email to murukesh @ codeflow.co, we can work out a great licensing plan for you.
> how to integrate LAs with our source control

Can't you use ARM templates or Azure CLI for deploying them?

Hey Gene, share a link to this post with your MuleSoft Customer Success Manager. Salesforce's acquisition made some changes to how we work with Not for Profit customers. If you're in my region, I look forward to seeing if we can help. Overhauling Enterprise integration for cost alone sucks, especially since it seems like you're happy with product.
In regards to integrating Logic Apps with source control here is some reading material that I found useful on the topic:

- https://platform.deloitte.com.au/articles/preparing-azure-lo...

- https://www.feval.ca/posts/logicapp-ci/

- https://blog.thenetw.org/2019/08/20/logic-app-in-a-multi-ten...

- https://www.bruttin.com/2017/06/13/deploy-logic-app-with-arm...

It was a real hassle to get everything somewhat nicely through CI/CD (and it's still not at the level where I'd like it), but getting them in source control and having them deployed through an Azure DevOps' release pipeline has been immensely valuable.

Let me know if you have any more questions about that as I'm happy to help you get going!

Have only seen colleagues use them but MS powerapps is pretty powerful. It lets just about anyone with basic computer usage knowledge to connect different data sources and applications to make mobile apps. I've seen people who don't know a single programming language make crazy-good apps with it.
The data grids in PowerApps are woefully inadequate though... and people have been asking Microsoft to improve them on their forums for a while to no avail.
Emacs. Not too much work to customize it these days. Just:

  M-x list-packages
Do packages really count? You could go on for a long time listing applications that have packages or plugins, but I think it misses the point of the question.
Actually, Emacs is a low coding editing environment, because the strength of emacs is that once you can program it it's extremely easy to write extensions for it, even for one off tasks, because it's so quick and easy.

Compared to this writing extensions for vscode, for example, is much more convoluted. You wouldn't create a new vscode extension for a 1 hour task, while with emacs it's trivial to write some small code which can help you with your current task. I often do.

Hmmm really? Can you point at some information so I can learn quickly how to add a non-trivial extension? Genuinely would love to, but not sure where to start!
The way I see it, in Emacs it's less an "extension" and more of "I have this problem, how do I solve it now using elisp?".

So basically, your develop the solution bottom up. You can pretty much write an elisp function anywhere in emacs (in the very file you are editing, in the already open scratch buffer, in an elisp popup shell) and test the function incrementally. Also, the extensive in-built help system lets you very quickly lookup functions that you need.

Once you have something that solves your current problem, you can save it, if you want. Over time your custom collection of functions improves and then you decide if something there needs to be generalized or made into a package.

Obviously this needs some basic elisp knowledge and then just practice over time.

I use Node-Red for all of my home automations. And Tasker for phone automation. I would consider both to fall in the low code genre but still allow a dev to do really cool things (both allow for you to write whatever you want in JS).
Seconded as well with Nodered.

It is low code AND capable of full serverside JS for handling interesting cases. And it has hundreds of plugins for handling APIs of all sorts.

quite easy to develop plugins for as well
If you’re working in React, I’m working on https://ResponseVault.com/demo

It’s a drag and drop form builder that saves as JSON schema. You can export and use in your own app, or submit to our backend and send Webhooks to an automation service like zapier.

I use it in my client projects since I frequently need to customize form fields, then I can reuse them across clients.

My favorite right now is Snapboard. simple, clean UI, and integrations that airtable is sorely missing.
Hasura 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 just have to write single endpoints for custom business logic, like "send a welcome email on sign-up" or "process a payment".

It has a database viewer, but it's not the core of the product, so I use Forest Admin to autogenerate an Admin Dashboard that non-technical team members can use:

https://www.forestadmin.com/

With these two, you can point-and-click make 80% of a SaaS product in almost no time.

I wrote a tutorial on how to integrate Hasura + Forest Admin, for anyone interested:

http://hasura-forest-admin.surge.sh

For interacting with Hasura from a client, you can autogenerate fully-typed & documented query components in your framework of choice using GraphQL Code Generator:

https://graphql-code-generator.com/

Then I usually throw Metabase in there as a self-hosted Business Intelligence platform for non-technical people to use as well, and PostHog for analytics:

https://www.metabase.com/

https://posthog.com/

All of these all Docker Containers, so you can have them running locally or deployed in minutes.

This stack is absurdly powerful and productive.

I can't agree more about Hasura, I made the jump to GraphQL for my current application and it's been a dream. Their documentation is excellent, helping me get setup with auth0 jwt auth and apollo client despite being new to both.

Metabase was a game changer in my last company, it was so nice to just be able to drop a 50+ line custom SQL query in there with parameters and let users pull what they want. We'd also setup queries to be loaded via Google Sheets cron jobs. That enabled live dashboards most any spreadsheet user could create (pivot, lookups, transforms, etc.).

Yeah, these are tools that were each force-multipliers on my productivity, I can't imagine ever going back to be honest.
Is there something that could plug into this stack which would allow for easy integration of a lucene / solr instance as a data source?
Are you hosting your own Postgres, or using a db-as-a-service? If so, which one?
For Dev and Staging, I use a Postgres Docker container, in Production I use a managed Postgres service.

I have a starter kit that includes a ton of stuff including pre-made JWT auth configured as Hasura Actions, a standard monolith-style Node REST API skeleton, and OpenFaaS serverless handler examples in every major language (Node, Python, Ruby, Java, Go, C#, PHP) you can find here:

https://github.com/GavinRay97/hasura-ultimate-starter

And really comprehensive docs about setup and architecture + how everything works here:

http://hasura-ultimate-starter.surge.sh/#/

The tutorial looks great. Thank you for a great work!
Appreciate the kind words! I just wanted to share these tools because I feel they're undervalued and underused, and I reach for them for every new project I start.
So hasura just exposes a Postgres database through GraphQL?

That sounds kinda nifty, but does it then allow you to write custom code to add business logic? Glancing through the documentation, that part wasn't clear to me.

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/statistics API (sum, median, standard deviation, count, mean, variance, etc), and it leaves the pieces of custom business logic up to you to write. It's entirely agnostic to what you use to write these, so long as they expose an HTTP endpoint.

I really want to like Hasura, but very quickly you'll run into limitations of its permission system. Especially when dealing with logic across relationships.

If only Hasura supported some king of Prolog / Datalog instead of their ad-hoc JSON language, then you'd be able to write nearly any possible use cases. Until then, I'll stick to building and maintaining my own backends... manually :(

Might I ask what limitations/issues you ran into?

One of the biggest pain points I found was modeling Organization/Team/Multi-Tenant based permissions.

Generally, the advice is to use a session variable like X-Hasura-Organization-Id to filter in permissions, but recently through a Discord conversation a means to do this without a session variable was found out and I took some time to publish it as a Gist:

https://gist.github.com/GavinRay97/d7b8805078a47e00001e58eb8...

I would be interested in hearing what problems you had and seeing if there isn't some way around it, just for my own curiosity.

Right, those are the kind of permissions I had trouble with. That gist works for reads based on membership (even if a little unintuitive), but I couldn't figure out how do writes that validate using roles & permissions.
If you’re looking for more flexibility than Hasura, I’d recommend you try out Warthog (disclaimer: I’m the author). It’s a Node Library that uses TypeORM, TypeGraphQL and some extra magic under the hood to let you spin up APIs very quickly (auto-generated schema), but you also have access to the bare metal code. You can set up CRUD essentially free, but it provides you a slew of ways to handle more complex scenarios.
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?

With plain PostgreSQL you have to write your own backend logic to access the database. The whole point of Hasura is exposing your DB via a GraphQL API with some bells and whistles (like authorization).

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.

With some frameworks (i.e. ASP.NET core) you already have authentication and authorization middleware if you need them and you can use an ORM to map data objects to tables and query the DB with ease.

What benefits would be using the DB over a GraphQL API?

Well, not having to implement and maintain anything is a huge plus, especially when you have a large number of tables :)

Also, Hasura has some bells and whistles that would be a bit of a PITA to implement using traditional MVC frameworks, like per-column authorization, and, of course, the GraphQL to SQL translator.

> What benefits would be using the DB over a GraphQL API?

And I'd say that the biggest advantage of GraphQL is allowing customized payloads.

Say you need a list of users ids + emails in one page, and a list with ids + names + emails in other. In REST you either need to waste some bytes, have two endpoints, or use some conditional to show/hide the field.

With GraphQL you just have to ask for the fields you want.

The same applies to joins: you either add extra endpoints, extra logic, or the user has to make multiple requests. With GraphQL you can have custom joins.

Btw, if you still don't think that GraphQL is an advantage to you, I recommend checking its cousin-project PostgREST :)

> does it then allow you to write custom code to add business logic

Yes! Like gavinray said, you can create HTTP services in any language of your choice. Hasura can then be configured to call HTTP endpoints when something changes in the DB. And your services can call Hasura anytime of course.

Remember that Hasura handles all the authorization for you, so there's no need to "proxy" requests made to it.

You end up writing very little compared to traditional frameworks.

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-admin with Hasura: https://github.com/Steams/ra-data-hasura-graphql

Here's a reference application I put together: https://github.com/cpursley/react-admin-low-code

And we're taking a step further and using Elixir to listen to Postgres table changes for an "Event" style architecture: https://medium.com/hackernoon/get-notified-of-user-signups-a...

Hey man, really cool to see you comment here! We've chatted in the Hasura Discord briefly, love your work with the React Admin adapter. RA requires more manual work to set up and the aesthetics are different (Material UI), but it also gives you more flexibility.

For anyone looking for a self-hosted solution that can be more easily whitelabeled, highly recommend cpursley's work.

You should pop by the server chat more often =D

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!

(comment deleted)
Thanks for this! I will add it to a project.
This is awesome. I haven't had time to expand react-admin-low-code, so glad to see someone take the general idea and run with it. I'll update the Readme to mention your repo when I have a chance.

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.

Totally agree! Although I'm one of the contributors to that repo as well, the sheer number of possible attack vectors on the JWT scheme means that I was reluctant to use it in a publicly-facing use case. Let me know how it goes!
What are your biggest concerns about the Pg/Hasura JWT approach (which particular attack vectors made you nervous)?
Hey, thanks for the adapter. It works great! I'm using it in 2 small projects.
What are you using to create a customer facing UI/frontend? It sounds like Hasura is just for backend
Whatever you like. Depending on the nature of your work, you may be a startup or working for an organization that has mockups and design assets for what your frontend needs to look like.

In that case, you'd just build the front-end as usual, but use Hasura to bang out your whole backend and then autogenerate the type-safe query components with graphql-code-generator.

When I do products myself, I typically pick a pre-made template/UI kit (Vue is my preference) and then just modify it from there to suit my needs.

TailwindUI also looks really nice and I've seen several people build beautiful looking UI's with it for smaller SaaS products in a few days (though given that they're familiar with TailwindCSS and have a knack for this type of thing already):

https://tailwindui.com/

https://tailwindcss.com/

Hasura also has a lot of community examples for different front-ends. Ranging from web apps in React/Vue/Angular/Elm to mobile clients in Flutter or Android/iOS:

https://hasura.io/learn/

They have several dozen example apps built in all sorts of tech here:

https://github.com/hasura/graphql-engine/blob/master/communi...

Check out https://internal.io/. We're big fans of Hasura and work really well with it. Full disclosure, I'm one of the founders.
What are you using for your authentication adapter? I've been looking at picking up hasura but don't like the idea of using something like Auth0. So I've been hunting on the best tool for auth.
I have an example of JWT Auth using Bcrypt as Node.js functions in my starter kit, you can extrapolate from there:

https://github.com/GavinRay97/hasura-ultimate-starter/tree/m...

The sign-up Action bcrypt hashes the password and saves it by sending a mutation to Hasura, and the login Action queries for the user by their email and tries to bcrypt compare their password against the stored one and then return a spec-compliant token if they match.

It's fairly simple to implement your own Auth in Hasura, you just need to return a signed JWT that matches the spec:

https://hasura.io/docs/1.0/graphql/manual/auth/authenticatio...

I've set up a working example with Firebase Authentication (which is admittedly 'something like Auth0') here: https://github.com/dvasdekis/react-admin-hasura-firebase/

Firebase does provide unlimited password logins for free, which mitigated my personal concerns about Auth0. The advantages of a SaaS auth provider compared to a roll-your-own have been documented elsewhere, and I personally found them compelling.

What are the reasons you 'don't like' something like Auth0?

I really need a self hosted solution. Ideally it would have an LDAP adapter so it could get login info from our internal active directory. If I were building public facing apps Auth0 would be perfect.

I don't think I'd be allowed to entrust users passwords to an external entity, despite the fact that they would probably do a much better job than I would at securing them. Also despite the fact that we trust every other external provider to store passwords...

I've been looking into keycloak.

Fully understand - I would want something self-hosted in this case as well.

Firebase does allow you to integrate with other OAuth providers (e.g. Google/Facebook/Linkedin etc.), so you could perform some kind of validation on the google account, ensuring it comes from your company's mail domain? Just a thought.

Set up of these security schemes is not easy (took me a shamefully long time to get Firebase working with React-Admin and Hasura). I'd personally try and get a SaaS provider to work within your company's constraints before trying to roll your own.

> Hasura Pro Pricing: Talk to Us

I'm always scared to call when I hear this.

Tanmai, their CEO, gave a response in the Discord on this question a few weeks ago:

"The pricing depends on your team/org: what features you’re using Hasura and the uptime/response SLA that you need. If you have something running with Hasura already feel free to setup a chat with the team to get a sense of the pricing. However we will have something launching for self-serve style pricing soon for a managed HA / auto-scalable Hasura with Pro features."

I believe it's priced on a per-feature basis, so they're likely to work with you depending on what your particular needs are.

That’s a double whammy. I and many others are prevented from creating a Discord account.
Tanmai is on email 24/7, you've honestly got a better chance of reaching him there than on Discord:

tanmaig@hasura.io

I just use Discord because it's immediate feedback.

I agree that Discord seems like an odd place to find this information, but I'm curious to know what prevents you from creating a Discord account?
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 Discord guild and we were randomly targeted by a bot raid whereby ~100 bots joined in the span of 1 minute and proceeding to spam various channels and the DMs of our users. Enabling Discord's requirement for a verified phone number stopped the raid in its tracks and allowed us to clean up without further issue.

In the same way, Discord's automatic content scanning is designed to protect the large percentage of minors on the platform & proactively deal with potentially exploitative material + guilds (per https://blog.discordapp.com/discord-transparency-report-apri...)

Removing these features & restrictions in order to appease your extreme edge-case privacy views does not help the average Discord user in the slightest.

You're absolutely right when you offer that the majority of people are not directly harmed by practices that are discriminatory. Discrimination is almost always aimed at circumstances that affect a minority of people.

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?

Sorry, but no, you don't get to play a discrimination card here, because if we do, we're almost mocking people who are under real discrimination.

You don't agree with Discord's practices and lack of privacy, something which, by the way, I agree with you, and as such, decide not to use it. They are not discriminating against you, you're the one deciding not to use their service. To me, it sounds the same as if you don't like McDonalds because it's unhealthy, then accuse them of discriminating against you because they won't serve you some lean chicken salad.

The people doing the discrimination are the groups that choose Discord as their communications tool.

They are excluding all users who can’t get Discord accounts, such as those who can’t agree to the Discord TOS, for example. Free software projects and other public benefit groups should not be discriminatory.

They’re also banning political cartoons within their group’s communications, by implicit inclusion of the Discord TOS which bans several common, normal, reasonable types of communication.

I’m a paying member of a local nonprofit organization; they use Discord exclusively to communicate. I am excluded from all of the discussions as a result of my not being able to safely get a Discord account. That’s discrimination whether you like to acknowledge it or not.

But that's the thing: You CAN agree to the TOS, you just choose to not, unless I'm severely misunderstanding your situation and you're in real, physical danger if you create a Discord account. For the sake of a better argument, can you clarify if you're in danger, or physically unable to create an account, or if it's a privacy choice, please?
Let’s set aside my personal circumstances: why must someone be in imminent physical danger for it to not be discrimination? Everyone has a human right to privacy, regardless of whether or not they are a famous person with a stalker who wants to track them down.

The presence or absence of threats against one’s person does not legitimize or delegitimize their insistence upon personal privacy.

I agree that it doesn't delegitimize your insistence upon personal privacy, and in fact, I'm in your camp with that, privacy is vital. My issue with the term is that, when you think in historical terms about discrimination, it's people being forced out of places/positions/society because of who they are.

The difference, in this case is that you're not being forced out of participating in conversations because you're, let's say, black. Instead, you, on your own, are opting out of communication channels because of your own beliefs.

Lots of discrimination happens based on belief. Religious discrimination, for example.

We’re way down in the weeds here. If you’d like to continue this discussion further, please just email me.

(comment deleted)
It would seem that anonymous VOIP gateways could easily bypass that telephone requirement.
There are API services that let you identify the type of number provided by the user. VoIP lines don't identify the same way as landlines which don't identify the same way as actual SIM-backed mobiles. They blacklist lots of providers and number types.

My first account I was able to get was via a number I rented on dtmf.io. The account was suspended (across all "servers" in Discord) in a few minutes when I linked a few of my IRL friends in a Discord chat to that Discord article on my own website. I've not been able to sign up again since, despite having blown something like 40EUR on numbers from different countries/providers trying to get a new one.

Even when it works, it's at least 10 minutes of solving CAPTCHAs to log in, each and every time, and sometimes the Google CAPTCHA hits some other exit node rate limit and just tells you to fuck off entirely, making login impossible even with a working account.

why don't you get one of your friends who already has a discord account to make one and hand you the credentials?
Honestly, if price is an issue to you, you likely don’t need their enterprise offerings (yes I know there are exceptions).

The idea is for most users to be on the free / open tier and then monetize off of enterprise users with specific demands and less cash sensitivity.

We've [1] been fans of Hasura for some time -- it's a terrific piece of work.

When we were looking to extend our spreadsheet functions that read/write to/from databases, we considered integrating Hasura as a backend.

Commendable work by the Hasura team, I think really worth checking out what they've done.

-

[1] Caveat: founder of MintData (https://mintdata.com) here, where we read/write from databases both directly via our flow editor and via spreadsheet functions which wrap things like Hasura.

Are you guys Postgres-centric, out of curiosity? Really interesting product, sort of in the same ballpark of Spinoff and other Sheets-based low-code SaaS but an approach more unique than I've seen before.
Awesome, never heard of it!

Graphile (https://www.graphile.org/) seems to be very similar, although I discovered it just a week ago (also on HN), and haven't had a chance to explore it yet.

I'm a big user of graphile - they've also got a pretty good starter boilerplate with auth, etc baked in: https://github.com/graphile/starter

Have you tried it / do you have comparison points? I only poked around in Hasura a bit before deciding it wasn't worth the switching cost atm, but the out of the box upserts are compelling to me.

Has anyone ever hooked graphile up to a point and click schema editor, for iterating without writing code?
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 waiting on Hasura to do the same. Forest admin is no different. I'm always tempted to try them out for new projects but I always find myself back to Django, it will be here 10 years down the road.
Is there a similar point-and-click tool which can output Django models with all the relationship fields wired up correctly?

Getting as far as you can modelling a new problem domain with just models.py and the Django admin is pretty fun.

There is https://apibakery.com on the basic end of the scale
This and Hasura are excellent. What's on the more sophisticated end of the scale? Is there anything that will generate user/company role systems and bake those into the generated API? Generate client side SDK's from the API?

FWIW I just reproduced an API that took me 3 days to build (while learning Django rest framework) in about 5 minutes.

My time would have been much better spend modeling the domain. As a happy benefit apibakery taught me a bit about DRF permissions I didn't know.

It feels like we're finally getting back to the 90's level RAD tools like NeXT enterprise object framework, and Delphi.

Forest Admin looks really nice, but I wish you could host the admin UI yourself. Not a fantastic impression for clients if Forest (for whatever reason) suddenly stops offering it's service and your admin panel vanishes into thin air :(
Cherre.com uses this stack. Hasura + postgres in particular. We love it.
Does hasura supports database replication? When I looked last time, it wasn't. Also I feel these tools are not enterprise ready, IMHO.
(I'm from Hasura)

Hasura connects to a read replicas and manages connection pooling across the database cluster.

Hasura itself is stateless so it doesn't do the database replication.

Thanks for the reply. Also, when I run in an microservice architecture, how does hasura handles say for example websocket across the services? Do we need to depend on any other library?

Can you share some samples for these things if available. I will be glad to look at it.

That works automatically!

1. During the lifetime of a websocket connection, bytes should be routed to the same Hasura instance. This most service routers / load balancers should take care of automatically.

2. Subsequent connections from different clients to Hasura need not go to the same instance! This makes horizontal scaling painless.

(Is this what you meant?)

Would be interested to know if you can do all this by using their open-source conmmunity edition, or would you need to use their paid / Pro version. Since the pricing for the paid version is not given, not sure but assuming it would be fairly expensive to use / deploy? My preference is for an open source tool so we are not locked in to a propreitary platform for the long term.
Hey Gavin, I’m really interested in this setup. Would you happen to have an example of this somewhere? Specifically the docket setup?
Just tried to figure out why Hasura has lambda on it's logo, and hey, it's written in Haskell!
Salesforce if it’s for line of business.
airtable + zapier replaced like 70% of internal apps.
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

My wife works for a niche real estate small agency. She move everything from excel files to Airtable. They can share data between customers or sellers through Airtable Form, properties announces on Airtable are linked to company website through Airtable API and they can send list of interesting homes to customers just sharing an Airtable view.
The main real advantage for me are linked records, which allows you to keep your data normalized. Let's say you have a data model with 10 tables that have foreign keys among each other. For users it will be easier and less error-prone to link records using the Airtable UI rather than Google Sheets.

You could do this with a "out-of-the-box" CRUD app in RoR or Django, but Airtable gives a ton of more flexibility and quick iteration if you data model is changing or adapting.

It does have plenty of drawbacks so I wouldn't use it for every project.

For web development such as landing pages I like https://webflow.com. They've been able to create a nice UI that abstracts-away nested styling. It also provides decent animation features, form processing, and CDN asset delivery. Its biggest drawback is a lack of i18n without resorting to 3rd party iffy JS solutions.
To the missing features...

Add syntax highlighting and GTM

Also real deployment previews and sharing between sites

Switched to Netlify, much happier

I have built a lot of internal apps on Daptin over the last 8-10 months. It's a headless CMS I started writing about 2 years ago.

https://github.com/daptin/daptin

My overall goal in Daptin (the name comes from adaptable) is to build something reliable which can run for years without needing any maintenance.

As for the features, I will try to list some here:

- YAML/JSON based data declaration

- CRUD API implementing https://jsonapi.org/

- GraphQL API

- Definable actions, for custom APIs

- Integration to any 3rd party API based on Swagger/OpenAPI spec

- Runs on mysql/postgres/sqlite

For more advance features:

- SMTP server, IMAP server

- Self generated certificates/ Acme TLS generation support

- Encrypted columns

- Asset columns (file/image/binary store)

- Asset columns backed by cloud storage (like ftp/disk/gdrive/s3/bb and many)

- Native OAuth/3rd party login support

- Exposing cloud store folders as static websites

I'm building something for lazy React devs: https://divjoy.com

On the no-code side I really like http://carrd.co

div joy seems an amazing sweet spot in between webflow/carrds and a template to mod by ide. Keep up with that layer !!
Thanks Lucas! The editor has been a fun project. Hoping to push it more in the carrd direction in the future so you can customize super quickly before moving to code.
Here's some feedback, from a backend dev + entrepreneur who hasn't grokked React yet:

a) thank you for carrd.co, it's something I've been looking for

b) I don't exactly understand what is the use-case for divjoy. It looks like it helps me ship a landing page really quickly? Why do you need React integrated with this?

Perhaps there's a use case for React devs that I am missing?

I can tell you that what I want is carrd.co, but without vendor lock-in. I want carrd right now to launch a beautiful email-collection landing page and do market validation. However, if the market test is successful and I want to transform the homepage into a "sign up now", I don't feel like I can do that with carrd and I would need to hire someone to re-create a landing page with a similar look and feel. So I'd like a "carrd" without the vendor lockin.

[edit: More on carrd, according to their TOS they get unlimited rights to all your content?!?!]

I appreciate the feedback! The current Divjoy is basically landing page + auth flow + a little extra boilerplate and structure that helps as you start building your web app. Even super common things, like routing, aren't included out of the box with React, so there's a surprising amount of things a tool like Divjoy can setup for you. I need to do a better job of highlighting those things.

That said, this is a very early version. I'm launching database integration next week (data fetching logic/caching, full REST API, etc) and then Stripe integration shortly after that. So in not too long, you'll be able to export a fully functioning SaaS app.

So I'd like a "carrd" without the vendor lockin

Long-term this is exactly what I'm going for. Build something simple inside the Divjoy editor, host it with me, export your codebase at any time for full flexibility. You never need to worry about lockin.

Lisp.

So-called "low code" tools involve code, you just write it by rat-wrestling instead of typing. And good luck using those tools effectively for problems their designers didn't anticipate.

With Lisp, you write less code and it's easier and more fun to write.

Google Sheets can be surprisingly handy as a UI for editing data. For example, I have a job on AWS that scrapes a handful of URLs and snapshots them. Instead of creating a database and hosting it somewhere, or hard-coding them, I put them in a spreadsheet that the AWS job reads at the beginning of every run.
I continually find myself amazed with what people can do with Excel.
haha yeah and I always wonder why especially engineers are so creative in using Excel as a graphics/painting tool :) Looks good, but a nightmare to read in a programmatic way ^^
How do you get around the number of fetch limitations?
I'm hitting at a rate of 2/hour, it hasn't been an issue.
how are you accomplishing that? Does Google sheets have a scheduler built into it? Long running timer?
The scheduled job runs on AWS, it just fetches the sheet when it runs.
Aren't you forced to use Google Apps Script to interact with Sheets? I remember being forced to use it for interacting with Google Forms API.
> Aren't you forced to use Google Apps Script to interact with Sheets?

No, it has a REST API; you need Apps Script if you want automation within Sheets, but you can interact with Sheets without it.

That's the best part, I don't even use an API! I just go File -> Publish to the web, then select "Comma-separated values" instead of "Web page" from the dropdown. Then I use Pandas to read the CSV in Python.
I just made an example for how to do this using Refinery (most of the pieces were off the shelf using "saved blocks").

https://app.refinery.io/import?q=9lvohdvqd50g

This project will:

- Run every hour (via timer)

- Grab URLs from a Google Sheet

- Go screenshot all of the URLs

- Write each screenshot to an S3 bucket

- Email you at the end after the jobs finish

There is more I could do with this (like trigger an email if something fails, etc). But at least does what you describe above in a (hopefully) succinct fashion!

Also, shill alert as I'm an author for this service (but this was a fun project to build over a few minutes, so thank you).

Buildbox for game development.
It depends on what you're trying to accomplish.

For building websites, Webflow is powerful (and allows for fine-tuning).

Among utilities, Parabola (a kind of no-code extract, transform, load tool) is very neat.

For getting data/creating APIs without having to code I've built Simplescraper - https://simplescraper.io.

Currently working on an integration for Airtable that allows you to create a dynamic CMS using any data source, without code. Hopefully useful to non-dev and lazy-dev alike.

I have to say that it is really impressive. The design is simple and beautiful. The overall product is a huge time-saver.
I'd love to know about when your Airtable integration will launch. Is there a place I can sign up for that?
Not sure if this counts but https://www.home-assistant.io/ for stitching together all my home technology and create automations. Have to get comfortable with yaml but their support forum is pretty good. End result is I get an LG TV, Dyson Fan, Hive Heating, Google Home, Sonos and Ring Camera all talking to each other if I want.