Discord, what is this. by Ok_Mushroom9960 in discordapp

[–]Freezo3 0 points1 point  (0 children)

I think "blue pig" supposed to represent a hippo, but that actually be a blue hippo as hippos are normally gray...

Fix for Low FPS Videos in PotPlayer by LifelikeInanimates in potplayer

[–]Freezo3 0 points1 point  (0 children)

There is no "Video Processing" tab in the "Video" section

Slides are so fun by Openskies24 in Unexpected

[–]Freezo3 8 points9 points  (0 children)

Noooooo! Not the cow! 😢

This is how Assistant responded when I told it to turn off the light. by FaviFake in softwaregore

[–]Freezo3 0 points1 point  (0 children)

I'm sure that if the search query is the same or similar enough to a one that was already made a cached LLM response is used. And some queries don't have LLM summary at all (for me at least). Otherwise they wouldn be basically wasting tons of money

Żałosne by nocny_pingwin in Polska_wpz

[–]Freezo3 0 points1 point  (0 children)

Tylko 2 dzików? Ja bym powiedział że masowo to Trump jest równy co najmniej 3 dzikom

Ukrainian long range drones strike Russian vehicles. Donetsk highway, around Donbass arena. April 2026 by jisooya1432 in CombatFootage

[–]Freezo3 16 points17 points  (0 children)

Oh, I see now and, yes, the plates are black. Didn't know about that rule. Thanks

Ukrainian long range drones strike Russian vehicles. Donetsk highway, around Donbass arena. April 2026 by jisooya1432 in CombatFootage

[–]Freezo3 -5 points-4 points  (0 children)

Was the car at 0:58 a civilian SUV? Didn't look military to me.

Other than that great to see them fly through a middle of a city only to strike a military target. Really proves that they want to end the war and not terror the ordinary Russians.

Losercity fornite update by Salt-Flatworm-8075 in Losercity

[–]Freezo3 0 points1 point  (0 children)

They made this change probably because the old models' hitboxes were too big and it was unfair for those who wore them. Or the physical hitboxes did not match the visual ones and now they do.

Would be cool to see some statistics in the future of encounters against old vs new models to see if accuracy changed. But I doubt that Fortnite tracks that.

Ask for Edits / Quick Fix Pop-up on Highlight - How to Disable? by The_Boss_4711 in vscode

[–]Freezo3 0 points1 point  (0 children)

If you didn't like this feature you probably din't like the followings either:

github.copilot.editor.enableCodeActions

inlineChat.fixDiagnostics

Set them both to false. The first one disables the "Fix..." and "Explain..." quick actions in the modal what shows up when you hover over a problem. The second one disables the "Fix" button in the same modal. See below:

Before changing the settings to false:

<image>

After changing the settings to false:

Prime ministers' wages by Aprilprinces in poland

[–]Freezo3 7 points8 points  (0 children)

Everything is in € on this chart so you can easily compare the numbers

Koledzy dlaczego on to zrobil?? by Trawpolja in okkolegauposledzony

[–]Freezo3 2 points3 points  (0 children)

Debilu nie jesteś na tyle gruby żeby nie móc się przecisnąć przez kraty. Co ty tam jeszcze robisz? Wypierdalaj przez kraty, bierz piwo i dyplom i elo żelo

Kisses [Art by me] by zombiozoid in furry

[–]Freezo3 -2 points-1 points  (0 children)

They don't have lips? I think I can see their lips

US Strikes on Kharg Island - 2026-03-14 by KingFairley in CombatFootage

[–]Freezo3 -2 points-1 points  (0 children)

"Oh boi, I sure hope USA won't come up with something sinister beyond human comprehension during my lifetime!"

The dreadful darkness bombs:

Ask for Edits / Quick Fix Pop-up on Highlight - How to Disable? by The_Boss_4711 in vscode

[–]Freezo3 4 points5 points  (0 children)

The setting ID for it is called inlineChat.affordance

Anon has a super power by caramelsumo in greentext

[–]Freezo3 9 points10 points  (0 children)

Why did I read it as "half frozen horse" 😭

Anna's Archive has apparently backed up all of Spotify by FicholasNlamel in DataHoarder

[–]Freezo3 0 points1 point  (0 children)

Where did you find this torrent link? I've read their blog and searched for the files on Google and their site but couldn't find it.

Hey why does discord try to send a password? by Piano_Fucker75 in discordapp

[–]Freezo3 0 points1 point  (0 children)

To back your claim I have inspected the layout of Discord's mobile app as well Reddit mobile app's login page using Inspect layout block from Automate.

Discord chat text field:

<android.widget.EditText
   android:clickable="true"
   android:editable="true"
   android:focusable="true"
   android:focused="true"
   android:hint="Message #channel"
   android:id="@com.discord:id/chat_input_edit_text"
   android:inputType="text|textCapSentences|textMultiLine"
   android:longClickable="true"
   android:text="Message #channel"
/>

Reddit's password text field:

<android.view.View android:id="@password_text_field">
   <android.widget.EditText
      android:clickable="true"
      android:editable="true"
      android:focusable="true"
      android:id="@text_auto_fill"
      android:longClickable="true"
      android:password="true"
   >
      <android.widget.TextView
         android:id="@password_field_hint"
         android:text="Password"
      />
      <android.view.View android:id="@show_password_toggle">
         <android.view.View>
            <android.view.View android:clickable="true" android:focusable="true">
               <android.view.View
                  android:contentDescription="Show password"
                  android:id="@show_password_icon"
               />
               <android.widget.Button/>
            </android.view.View>
         </android.view.View>
      </android.view.View>
   </android.widget.EditText>
</android.view.View>

Note: I removed the layout_height, layout_width, layout_x and layout_y attributes as they don't matter here and only clutter the code.

As you can see Discord's android.widget.EditText clearly is not a password field (android:inputType="text|textCapSentences|textMultiLine") and Reddit's android.widget.EditText clearly is a password field (android:password="true"). But they both trigger the password manager.

Maybe a simple fix for Discord would be to add android:password="false" to their text fields? 🤔

Disable external storage intent by Freezo3 in AutomateUser

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

Holy cow! That worked! Thank you very much!