Do the apps render as slow as their website? https://www.cogentcore.org
Cogentcore: Open-source framework for building multi-platform apps with Go
11–18 of 18 posts
Re: Cogentcore: Open-source framework for building multi-platform apps with Go
#12May I suggest that everyone just drop this whole 'develop/program it once, run it everywhere' slogan that just gets repeated endlessly when people try to promote their new platform/framework/library or whatever? I've never seen it work out that way in practice. Never. All individual platforms have their own features, unique quirks and distinct, platform specific bugs and trying to abstract over all the platform specific stuff means you end up with either low-quality, or low-feature implementation that comes close to being usable, but still never quite USEFUL.
Even the web browser, the only one that ever came close to fulfilling that promise, still requires fixing or accounting for browser-specific implementation bugs or quirks or non-standard feature additions/omissions. The closest you can get is just ignore Firefox, Safari and just target Chromium-based browsers, OR just use a subset of the latest web standards.
Considering how scrolling itself is entirely broken on the cogentcore website itself (I'm on desktop Chrome and my mousewheel and 3rd button scrolling doesn't work), it's not inspiring that they couldn't get something basic like scrolling to work. Is it not possible to just delegate scrolling behaviour to the browser?
Re: Cogentcore: Open-source framework for building multi-platform apps with Go
#13Has anyone used this? I’ve always wanted to build a native UI app in go but haven’t been too thrilled with the options out there. Am scanning the go.mod to see if I can figure out how they do it (not a huge fan of the embedded browser type stuff) Edit: Found some docs here: https://www.cogentcore.org/core/render super strange website, seems to be using the UI library to actually render the website itself… which made…
Re: Cogentcore: Open-source framework for building multi-platform apps with Go
#14Re: Cogentcore: Open-source framework for building multi-platform apps with Go
#15Re: Cogentcore: Open-source framework for building multi-platform apps with Go
#16Kudos to the CogentCore team to build and ship this! Looks like this is made by a 2 people team. That's a lot of work to pull off!
I personally wanted something like this for Go for a while! Will try it out.
Re: Cogentcore: Open-source framework for building multi-platform apps with Go
#17> allowing you to Code Once, Run Everywhere May I suggest that everyone just drop this whole 'develop/program it once, run it everywhere' slogan that just gets repeated endlessly when people try to promote their new platform/framework/library or whatever? I've never seen it work out that way in practice. Never. All individual platforms have their own features, unique quirks and distinct, platform specific bugs and tr…
Many apps that make hundreds of millions of dollars in revenue and have millions of users are built on cross platform technologies. (IntelliJ IDEs for example, and many Mobile apps which use same code for iOS and Android, Cursor, VS Code, etc). People use these apps even though they are not platform native and some of them have die hard fans too.
Re: Cogentcore: Open-source framework for building multi-platform apps with Go
#18> allowing you to Code Once, Run Everywhere May I suggest that everyone just drop this whole 'develop/program it once, run it everywhere' slogan that just gets repeated endlessly when people try to promote their new platform/framework/library or whatever? I've never seen it work out that way in practice. Never. All individual platforms have their own features, unique quirks and distinct, platform specific bugs and tr…
>> May I suggest that everyone just drop this whole 'develop/program it once, run it everywhere' slogan that just gets repeated endlessly when people try to promote their new platform/framework/library or whatever? I've never seen it work out that way in practice. Never. Many apps that make hundreds of millions of dollars in revenue and have millions of users are built on cross platform technologies. (IntelliJ IDEs f…