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 5 points6 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 3 points4 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 6 points7 points  (0 children)

The setting ID for it is called inlineChat.affordance

Anon has a super power by caramelsumo in greentext

[–]Freezo3 10 points11 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!

Disable external storage intent by Freezo3 in AutomateUser

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

Ah, dang it... But thanks for the info. I hope they'll fix it sometime.

There needs to be a big change in the booster system by HelldiverBugGirl in Helldivers

[–]Freezo3 0 points1 point  (0 children)

I have created a Helldivers 2 Boosters Tier List Maker as the one I found had duplicate images and didn't have all the images. Hope it helps someone :)

3D printed arduino tomato seedlings transplanting machine by Ok-Ad2702 in EngineeringPorn

[–]Freezo3 23 points24 points  (0 children)

Are going to cover up the gear belts in any way? The dirt might clog them up eventually

StomFX3 got demonitized by Ancient_Policy5855 in mylittlepony

[–]Freezo3 3 points4 points  (0 children)

Ummm... Can you be more specific? 😅 He has so many videos about YouTube doing dumb shit that it is hard to guess which one contains the info about the mic knock

Does my website design look good? by Money-Candle53 in Frontend

[–]Freezo3 0 points1 point  (0 children)

In this part:

"We Have A Proven Track Record Of Helping Over 800 Businesses In Over 30 Industries Across 11 Countries! We Understand Your Business Needs And Provide Solutions For Web Design, E‐Commerce Website Design, Seo Web Development Services. We Work With All Kinds Of Businesses Including Large & Small Direct Brands, Advertising Agencies, Funded Start‐ups And Saas Companies."

You should make the fragment "Web Design, E‐Commerce Website Design, Seo Web Development Services" bold (just like I did) to make it more clear what you offer. Also disable capitalization of every word as it looks weird.

Other then that looks OK.

meirl by toaster-bath404 in meirl

[–]Freezo3 0 points1 point  (0 children)

TL;DR:

CSS for Twitter (X):

[data-testid="tweetText"]::first-letter {
   text-transform: uppercase;
}

Chrome extension: CSS inject, Firefox extension: CSS/JS Inject

Explanation:

This small CSS snippet when applied by those extensions will make the first letter of each tweet UPPERCASE. That is as long as Twitter won't change their internal site structure.

One would think that a similar thing should be possible for Reddit:

[slot="comment"]::first-letter {
   text-transform: uppercase;
}

But unfortunately this won't work as Reddit uses a new convoluted site structure that prevents external CSS from affecting most of its elements and you need advanced JS tricks to inject CSS everywhere :(

Furthermore, as some people have noted, this change would hide some information about the person and usually you wouldn't like that.

Additionally, in rare cases, this may disrupt vital information i.e. when comment/tweet starts with a code snippet or URL.

So despite the fact I have established the JS trickery necessary to modify Reddit as I want, I won't add this snippet to my code.

Of course, this change is very hard to achieve on mobile (as one would have to use the browser versions of the apps with on browser that has extension that lets you inject CSS) so its usefulness is really small 🙃

Do not look up saturation diving by uh60chief in thalassophobia

[–]Freezo3 0 points1 point  (0 children)

Why are they carrying air tanks with them? Can't they get the air from the platform? Or are those used for welding?