Luckysheet, an open-source spreadsheet
51–60 of 123 posts
Re: Luckysheet, an open-source spreadsheet
#52I still cannot wrap my head around why so many folks want to use such applications in a web browser. For me, web browser applications never reach the responsiveness and ease of use of well crafted desktop applications written in any decent systems programming language or even interpreted languages (not speaking of Javascript). Maybe I am getting old, but having the browser as a platform for programs is huge setback f…
Re: Luckysheet, an open-source spreadsheet
#53As it stands, scrolling is nigh unusable on my Surface Book: vertical scrolling goes at a million times the speed it should, and horizontal scrolling goes a million times as fast as it should in the wrong direction.
Don’t do scrolljacking. It’s bad, every single time. With the tools the web gives you it’s not possible to get it completely right that way.
Re: Luckysheet, an open-source spreadsheet
#54I still cannot wrap my head around why so many folks want to use such applications in a web browser. For me, web browser applications never reach the responsiveness and ease of use of well crafted desktop applications written in any decent systems programming language or even interpreted languages (not speaking of Javascript). Maybe I am getting old, but having the browser as a platform for programs is huge setback f…
The browser is very accessible and understandable as an environment as compared to different kinds of desktop environments that exist. Sometimes having an imperfect thing which exists is better than a non-existent perfect thing. Sure, a web application will never be as snappier as a native application, but it can be built, deployed and maintained by a much smaller team than what would be required for supporting deskt…
A webapp has a wide range of operational costs that a native app doesn't. I can't see why a modern webapp would be cheaper to develop as well with similar programming languages. Their advantage comes mainly from the lack of the need to install software, and for the data to be accessible by every device.
Re: Luckysheet, an open-source spreadsheet
#55I still cannot wrap my head around why so many folks want to use such applications in a web browser. For me, web browser applications never reach the responsiveness and ease of use of well crafted desktop applications written in any decent systems programming language or even interpreted languages (not speaking of Javascript). Maybe I am getting old, but having the browser as a platform for programs is huge setback f…
> For example, as a free Excel alternative, I fall back to Gnumeric ( http://www.gnumeric.org/ ) from time to time. Gnumeric is useful, but its GUI is very laggy (more laggy than LibreOffice Calc). Sadly, there NO fast & usable Qt-based alternative to Excell for Linux yet. As lightweight spreadsheet app for Linux I use Qt-based mtCellEdit [0], which does not support .xls/.xlsx formats & could not fully replace Excell…
Re: Luckysheet, an open-source spreadsheet
#56I will keep saying this every single time some one gets this wrong (which is at least 49 times out of 50): the only way to handle scrolling properly on the web is for your scroll events to fall onto a real scrollable area, and to observe the effect it has (e.g. apply the scroll position to what you’re rendering with). This can be tricky to achieve well when you have dynamic content that the mouse needs to be able to…
Always listen to the native "scroll" event: https://www.datagridxl.com/demos/one-million-cells
Re: Luckysheet, an open-source spreadsheet
#57I still cannot wrap my head around why so many folks want to use such applications in a web browser. For me, web browser applications never reach the responsiveness and ease of use of well crafted desktop applications written in any decent systems programming language or even interpreted languages (not speaking of Javascript). Maybe I am getting old, but having the browser as a platform for programs is huge setback f…
Multiple tabs/windows
Don't leave the browser
Works-at-all on multiple platforms incl mobile
Deep linking / sharing / bookmarking
App freezes are less common (on network access) and easier to manage when they happen - obviously this is anecdotal and not universal.
Re: Luckysheet, an open-source spreadsheet
#58Earlier quoted context omitted.
Sharing and collaborative editing. Being able to coordinate some process via a shared spreadsheet in a browser is efficient and resolves all issues of conflicting versions. Think of an overview of who is going to the office on which days this week (useful in times of working from home due to Corona). Responsiveness is not the primary concern here: good enough is fine for most purposes. This is not a replacement for a…
Interesting to note that cloud storage and realtime collaboration isn’t 100% tied to a browser-based interface though. Even though many existing apps work like that, there are desktop clients for a bunch of cloud-native SaaS (and even though some of those are Electron).
But isn't a problem in the browser, because you are always on the same version.
Re: Luckysheet, an open-source spreadsheet
#59I will keep saying this every single time some one gets this wrong (which is at least 49 times out of 50): the only way to handle scrolling properly on the web is for your scroll events to fall onto a real scrollable area, and to observe the effect it has (e.g. apply the scroll position to what you’re rendering with). This can be tricky to achieve well when you have dynamic content that the mouse needs to be able to…
Re: Luckysheet, an open-source spreadsheet
#60I still cannot wrap my head around why so many folks want to use such applications in a web browser. For me, web browser applications never reach the responsiveness and ease of use of well crafted desktop applications written in any decent systems programming language or even interpreted languages (not speaking of Javascript). Maybe I am getting old, but having the browser as a platform for programs is huge setback f…