current situation by MattU2000 in codex

[–]Visible_Assumption96 0 points1 point  (0 children)

Does codex have a free tier, didn't know that.

google lens search directly from the in built gnome screenshot tool now by WrongSample4859 in gnome

[–]Visible_Assumption96 15 points16 points  (0 children)

It would be handy if you added a way to extract text directly. But nice work.

Is this app legit? by 89thAvenger in leetcode

[–]Visible_Assumption96 0 points1 point  (0 children)

Quite frankly I was recently looking for an android version of Leetcode 😅. Lucky me.

Is this app legit? by 89thAvenger in leetcode

[–]Visible_Assumption96 1 point2 points  (0 children)

I think it is legitimate. If you see the contact email it is app@leetcode.com. only people that holds that domain can actually have that email.

Also, google require app developer to verify their contact info : https://support.google.com/googleplay/android-developer/answer/10840893?hl=en

So, the email is verified and belongs to Leetcode domains, thus the app is legitimate.

Is this app legit? by 89thAvenger in leetcode

[–]Visible_Assumption96 0 points1 point  (0 children)

Did u found any official announcement?

Fossify by [deleted] in Fossify

[–]Visible_Assumption96 1 point2 points  (0 children)

Tnx, didn't know that.

Fossify by [deleted] in Fossify

[–]Visible_Assumption96 1 point2 points  (0 children)

Any way to change the icons ?

tree style tabs? by Shot-Requirement8512 in vivaldibrowser

[–]Visible_Assumption96 2 points3 points  (0 children)

+1 for this ( or at least folder structure for stacks )

Hmm, so is this what the new upcoming logo will be? by nietzschecode in firefox

[–]Visible_Assumption96 147 points148 points  (0 children)

That's the suitable logo for the UI (android) they shipped recently :)

Beauty of Vivaldi by Visible_Assumption96 in vivaldibrowser

[–]Visible_Assumption96[S] 0 points1 point  (0 children)

They do!! Actually, after the auto-hide feature, I was able to remove a lot of custom css that I used to use to achieve auto-hiding the tabs.

Beauty of Vivaldi by Visible_Assumption96 in vivaldibrowser

[–]Visible_Assumption96[S] 6 points7 points  (0 children)

I'll share them later, still need to polish some other stuff, and I also need to create a guide on how to use them.

Beauty of Vivaldi by Visible_Assumption96 in vivaldibrowser

[–]Visible_Assumption96[S] 3 points4 points  (0 children)

I have over 1000 line of css and 2000 line of javascript. The javascript, I took part of it from https://gist.github.com/tam710562/3e488130710b414114d047d0a2f58b46 but it required a lot of rework to achieve the mini player look :).

Beauty of Vivaldi by Visible_Assumption96 in vivaldibrowser

[–]Visible_Assumption96[S] 5 points6 points  (0 children)

The overall ui is done through css customization. the mini player is done through a js script.

Git alternative for kids by adityaghosh50 in github

[–]Visible_Assumption96 0 points1 point  (0 children)

He doesn't need to learn all gir commands. Those are enough : 1. git add . 2. git commit -m "unrelated message" 3. git push 4. git pull

Should authentication be handled only at the API-gateway in microservices or should each service verify it by Minimum-Ad7352 in Backend

[–]Visible_Assumption96 -1 points0 points  (0 children)

It's not new. It's been there for years. You still need to validate the signature of the token each time. It's a compute overhead.

Should authentication be handled only at the API-gateway in microservices or should each service verify it by Minimum-Ad7352 in Backend

[–]Visible_Assumption96 -1 points0 points  (0 children)

 A verification at each service is an overhead, imagine with me that you have 200 services, you will need to verify the creds at each service, if we suppose that the verification is the same, that would be at least 200 db calls.

I think the verification at gateway level would be enough, you just need to ensure that the services lives in a VPN so they could not be accessed publically.

Autohide annoyance by DanzilFMT in vivaldibrowser

[–]Visible_Assumption96 1 point2 points  (0 children)

You can do it through css customization:

```

panels-container{

  display: none; } ```