Vivaldi Mail? That took a while :-D Vivaldi is developed by a team created by the former Opera founder and CEO. Vivaldi kind of tries to re-create the spirit of Opera, but I think it's going to be too hard to do it. For those who didn't use it, Opera was first a paid browser (which limited its reach), then an ad-supported browser (which again limited its reach). It then finally became a free browser but by then it wa…
I use a browser probably 12 hours per day. Maybe there's enough people willing to pay a dollar or two a month for that to be a possible business model again.
Vivaldi 4.0
201–210 of 287 posts
Re: Vivaldi 4.0
#202Earlier quoted context omitted.
What's wrong with Firefox? It's an honest question, since as a user I really love it. Is it the 'dev-friendly', which Firefox lacks?
FF is my daily driver (since Quantum in '17) but I've found it really just isn't holding up these days: • Profiling functions between Chrome/FF reveals that Chrome is frequently considerably faster (usually 60%+) • During WebGL work I'll often hit blue screens around memory management (this seems to be a relatively recent development) • Similarly, trying to profile a WebRTC application with video feeds will consisten…
I actually liked the UI they implemented in Android. Alas, I seem to be in a minority
Re: Vivaldi 4.0
#203(...)we offer Vivaldi Translate, a built-in, privacy-friendly translation feature, powered by Lingvanex and hosted by Vivaldi, keeping translations out of the reach of companies like Google or Microsoft.
Now I'm supposed to trust Vivaldi instead of Google or MS... Stopped reading right there.
Re: Vivaldi 4.0
#204Earlier quoted context omitted.
FF is my daily driver (since Quantum in '17) but I've found it really just isn't holding up these days: • Profiling functions between Chrome/FF reveals that Chrome is frequently considerably faster (usually 60%+) • During WebGL work I'll often hit blue screens around memory management (this seems to be a relatively recent development) • Similarly, trying to profile a WebRTC application with video feeds will consisten…
Thanks. You make a few interesting points. It just doesn't seem to hit me so bad as an average user. I actually liked the UI they implemented in Android. Alas, I seem to be in a minority
Re: Vivaldi 4.0
#205Earlier quoted context omitted.
It’s weird how this cycles. Firebird/Firefox was originally an amazingly light browser (discounting some niche Linux ones that embedded Gecko). Then it got huge, and Chrome was amazing. And it seemed impossible for FF to be able to work out the technical debt. Now Chrome often makes the fan kick in on my MBP and Firefox is lighter again in CPU and memory. I think Safari is probably best in this regard on this machine…
> I think Safari is probably best in this regard on this machine, but I just don’t enjoy using it Safari always gives me the feeling of being too basic. The extension ecosystem is very small, and settings panels try their hardest not to actually give you any options beyond the essential ones. It's a browser for people who endure the web, not enjoy it.
[EDIT] but yes, FF and Chrome/Chromium destroy it on a feature basis. I just value those other things so much, and both of those options are so bad at those things, that I prefer Safari anyway.
Re: Vivaldi 4.0
#206Earlier quoted context omitted.
> they'll fix it in two years Seems pretty quick, at least compared to Chromium / Firefox ;) > you don't get to know its status in the meantime Toward the end of Opera's life (pre v15) either an employee or a member of the community (can't remember which) did actually set up a public bug tracker tracking the status of publicly-reported bugs. It didn't show comments or anything like that: just the original bug descrip…
Yeah you can still ask people who have access to look up the status of a bug for you[1]. It just feels so needlessly convoluted. Since they're already using Jira, it shouldn't be too hard to set it up with proper access controls so you could see your own tickets, at least. They must have some reason to not do this. [1] https://habr.com/ru/company/vivaldi/blog/561834/#comment_231... (in Russian)
Opera/Vivaldi CEO is really adamant about hiding both staff and user counts. Vivaldi even removed itself from User Agent string.
Re: Vivaldi 4.0
#207Earlier quoted context omitted.
Yeah you can still ask people who have access to look up the status of a bug for you[1]. It just feels so needlessly convoluted. Since they're already using Jira, it shouldn't be too hard to set it up with proper access controls so you could see your own tickets, at least. They must have some reason to not do this. [1] https://habr.com/ru/company/vivaldi/blog/561834/#comment_231... (in Russian)
Amount of years old bugs with zero activity while they keep working on new features. Opera/Vivaldi CEO is really adamant about hiding both staff and user counts. Vivaldi even removed itself from User Agent string.
Re: Vivaldi 4.0
#208I use Vivaldi regularly for one reason: my company has disabled access to the developer tools on Chrome and FF. With Vivaldi (being Chromium) I have full access again! Just don't tell them I told you ...
what was the company's reasoning to disable access to the developer tools on Chrome and FF? why?
Re: Vivaldi 4.0
#209Vivaldi Mail? That took a while :-D Vivaldi is developed by a team created by the former Opera founder and CEO. Vivaldi kind of tries to re-create the spirit of Opera, but I think it's going to be too hard to do it. For those who didn't use it, Opera was first a paid browser (which limited its reach), then an ad-supported browser (which again limited its reach). It then finally became a free browser but by then it wa…
And don’t forget its MDI interface [1] which made using all those features a joy and is still today better than all the tab implementations of modern browsers (for power users at least).
[1]: https://en.wikipedia.org/wiki/Multiple-document_interface
Re: Vivaldi 4.0
#210Earlier quoted context omitted.
Just to clarify in case someone's wondering, a browser named Opera still exists and gets updated now, but neither the people behind it nor the underlying technology are the same as in the old Opera this post is referring to. As an old-time classic Opera user since version 5 or so, I do use the current Opera because I find it somewhat better than Chrome (it has more built-in stuff, including mouse gestures, Whatsapp/T…
As someone who now uses Vivaldi as their daily driver I can vouch that it's a bit slow, especially on older hardware. Obviously it's not intolerable, but it would be nice to see some improvements in that area.
https://www.reddit.com/r/vivaldibrowser/comments/nrasof/fix_...
tldr: Tab bar is just a DIV full of SPANs, one SPAN per Tab. Pages are in a list of DIVs containing iframes. Switching a Tab is a simple process of moving "active" class from one SPAN to another and changing style of one iframe to "visibility: hidden; z-index: -1;" while another one gets "visibility: inherit; z-index: initial;". So far so ~good. So how does Vivaldi handle Tab close? You would guess closing a Tab would entail
- switching iframe visibility away from Tab being closed first - instant visual feedback for the user
- removing SPAN representing Tab we want closed
- maybe fixing widths of remaining SPANs
What actually happens is a horror show normally reserved for second semester CS students trying OOP for the first time. List of all Tabs gets traversed multiple times, most of them rewritten couple of times, everything generating individual DOM changes.10 Tabs open and you close the first one = ~30 DOM Reflows.
100 Tabs open and you close two in the middle = ~300 DOM Reflows.
100 Tabs open and you close first 10 = ~3000 DOM Reflows.
Stuttering UI is the staple of Vivaldi, codebase is full of functions running in linear/polynomial time to the number of Tabs open/Tab position on the list, in places where O(1) is trivial. Vivaldi is a browser that used to Resize contents of every single Tab opened when you resized its window - resizing was slower the more Tabs you had in Tab bar :o, going fullscreen could take 10 seconds.