You are viewing archived messages.
Go here to search the history.

Andreas S. 2021-08-14 08:01:15

Hello 👋 everyone

It’s been a while since I talked with Ivan Reese about Project Funding from the blockchain space. This here is a nice example for me showing that there is a great potential for collaboration: https://twitter.com/fabgenovese/status/1423685800252825601

Andreas S. 2021-08-14 08:03:51

The blockchain space can be roughly understood as an exploration into what can money mean in the 21st century. How can it be more just and in general offer more options for participation. Since crypto is already computational native it extends from there that tools, coding experiments are needed to really implement these new ideas.

Andreas S. 2021-08-14 08:06:43

Another very interesting piece is this by Kei kreutner, shining light on the relationships between DAOs (and what does that mean anyways) and cooperatives. Is the future of coding community a potential cooperative or a guild? https://twitter.com/keikreutler/status/1417861127590092802?s=21

🐦 kei 🗝️: A Prehistory of DAOs Cooperatives, gaming guilds, and the networks to come

Read the second in my @GnosisGuild series of essays bridging cryptonetworks, web3, and gaming. http://gnosisguild.mirror.xyz/t4F5rItMw4-mlp|gnosisguild.mirror.xyz/t4F5rItMw4-mlp…

xyzzy 2021-08-14 10:07:56

Thoughts on low-code, nocode tools

My use case is simple. I want to build forms, avoid crud and send email notifications without writing a ton of code. Probably my favorite so far has been https://anvil.works/ but even that was rejected. The most impressive was bubble. I will evaluate https://docs.budibase.com/, https://enso.org/ over the weekend

Here are my gripes with the tools

  1. JSON exports / Unreadable code generation - This just kills most solutions for me. For this reason I would much rather use tools like tailwind designer that generate readable Html5 code. Looking at you webflow.

  2. Cloud Only - If the trend of cloud goes on any longer I will be calling all offline apps and command line tools lightning apps. Pure offline support is important. Self hosting is important. I love node-red in this regard.

  3. Intimidating examples - My use case is simple. Most examples and documentation provide complex use cases. When learning programming in the text driven world, we start with “Hello World”, simple iteration, repl, libraries and shell scripts. Not only are these easy and fast to type, you can copy paste stuff to get things working. Copy paste is a killer feature of the text driven world.

  4. Tie in with frameworks and using the browser for editing code - This introduces too much dependency and breaks my existing way of working.

  5. Can’t re-use the components in existing projects - I think these platforms need to provide an api or hooks so that they are reusable in normal scripts. Perhaps 90% of the app can be designed in the browser but 10% can be done in the traditional way.

Here are some good enough and free solutions - stencil, mongodb, python scripting, wordpress, webkit shell for mobile apps, tailwind designer for UI. For a team < 10, these solutions are workable with email and all of them are free. These solutions are simple. Perhaps no code is doing too many things at once ?

Maikel van de Lisdonk 2021-08-14 11:40:55

How complex are the forms that you want to build? Do they need lots of visbility conditions and api integrations? Or more straight forward "contact forms"?

xyzzy 2021-08-14 11:56:15

Contact forms and I want to build wizards like this. Perhaps with some ajax in-between.

Martin Sosic 2021-08-14 11:58:40

We are building https://wasp-lang.dev, with aim to make web app dev really simple, removing boilerplate but keeping the flexibility. It is a specialized DSL that works with React, nodejs, Prisma, and in the future with other technologies. Would this fit some of your points? We don't have anything yet for generation of forms, but we take care of a lot of other things if you are building a web app that has frontend,backend and database - although I am guessing that might be an overkill in your case? Generated code is readable, so that is one thing, you write code in your editor, and you can use existing JS libraries. It is still Alpha though so I wouldn't recommend it for production usage at the moment.

xyzzy 2021-08-14 12:16:37

Martin Sosic I like the approach but my use case is just forms. I am using python + js. I want to layout the forms with little to no effort. In many ways DSLs and declarative approaches are the no code of the text driven world.

Martin Sosic 2021-08-14 17:29:16

Love your last sentence!

What are you using python for - you are doing some processing on the backend then? But you are not storing anything I guess?

xyzzy 2021-08-15 11:52:27

Its a fairly typical flask app. Just that I don’t want to build 10 forms, again. Nothing fancy. I like what https://docs.budibase.com/ is doing. Definitely has less tie in with frameworks and supports self hosting.