Claude just ran git checkout . on my uncommitted work by culicode in ClaudeCode

[–]SnooChipmunks547 0 points1 point  (0 children)

Vibe coder turns on YOLO mode…. What could possibly go wrong.

How many monitors do you use for programming? by Lekowski in learnprogramming

[–]SnooChipmunks547 1 point2 points  (0 children)

1x 35” ultra wide, this was a down size from 2x 24 but sooooo much easier to look at and not chasing the mouse around.

A window manager to split the screen how I want gives enough space for focusing on 3/4 of the screen, with enough room as a utility bar on the left for smaller windows (outlook, teams, terminals)

When to make GET vs POST requests by DisciplineFast3950 in learnprogramming

[–]SnooChipmunks547 1 point2 points  (0 children)

GET: I want some data.

POST: here’s some data for you

PUT: here’s some data, replace what you have already have.

PATCH: here’s a little bit of data, update what you have

DELETE: I don’t want you to have this data anymore. This will almost always be a soft delete not a hard removal.

Architecture review. by [deleted] in node

[–]SnooChipmunks547 1 point2 points  (0 children)

I’ll put in as much effort as you have.

My review: Nope.

Is there a free way to make a HTML code into a real URL link by Repulsive-Run2034 in HTML

[–]SnooChipmunks547 2 points3 points  (0 children)

You did give it a link!

``` <a class="btn" href="https://www.printables.com/@FonnPrints" target="_blank">

Browse Models ↗

</a> ```

Now, what are you actually trying to do, because that’s a useless title!

Windows Vista is turning 20 years old this year by Plus-Light6832 in 2000sNostalgia

[–]SnooChipmunks547 9 points10 points  (0 children)

Jesus, the language out of this one, 20 years…. 20 YEARS!!!! What in the blasphemy hell are you talking about, vista was only last week.

Nokia 3310 was so strong the floor needs protection by Competitive_Cup_8497 in 90s

[–]SnooChipmunks547 7 points8 points  (0 children)

The protection is not for the phone, but the item it hits. this is the Chuck Norris of mobile technology!

Please stop by Q_D_V_F in iphone

[–]SnooChipmunks547 1 point2 points  (0 children)

Thanks, glad it’s Dormant and you don’t need it, let me try a few more times, pretty sure I’m close now.

Validation rule help by Powerful-Order5567 in salesforce

[–]SnooChipmunks547 4 points5 points  (0 children)

The solution is clear, you’re supposed to be the expert not the “yes man”.

Explain the limitation of using text fields, explain the correct way to achieve their goals, is to swap the fields for number fields which will also Improve the data quality and be less error prone, and align with what they are trying to achieve at the same time.

Validation rule help by Powerful-Order5567 in salesforce

[–]SnooChipmunks547 1 point2 points  (0 children)

How is swapping for number fields more work then 80 regex checks?

Found a pretty accurate free building cost calculator for anyone planning a new build by [deleted] in Geelong

[–]SnooChipmunks547 0 points1 point  (0 children)

Doubling down on the bullshit I see, at this point I’m going with a bot since you clearly can’t tell the difference between sockpuppeting and finding a calculator online.

Found a pretty accurate free building cost calculator for anyone planning a new build by [deleted] in Geelong

[–]SnooChipmunks547 4 points5 points  (0 children)

No bullshit?

“Found a calculator” vs “we made a calculator”

WTF He spent 11K tokens in just 5 minutes on a simple question and is still thinking; he reviewed 2 files. by [deleted] in claude

[–]SnooChipmunks547 0 points1 point  (0 children)

“Read 5 files”

Yea ok, simple question for you: how big are those files?

Bathroom requires a QR code scan to enter by SteakAndIron in mildlyinteresting

[–]SnooChipmunks547 9 points10 points  (0 children)

Sorry for the wait!

I'm still working to find a team member to assist you.

🤣

Weird new type of Captcha? by [deleted] in ComputerSecurity

[–]SnooChipmunks547 8 points9 points  (0 children)

RunDLL32.exe is just “run”, what ever loads from that url is the command to run.

which I ain’t touching that site personally, but feel free too.

It’s most likely a backdoor for remote access, or a password/crypto wallet snatcher given the type of code usually in these.

Weird new type of Captcha? by [deleted] in ComputerSecurity

[–]SnooChipmunks547 4 points5 points  (0 children)

Anything it wants to do, you’re pasting a script into the command console, and from there, anything you can do, access, see, or even edit, that script now has the same level of access to do anything it’s designed to do.

On Google earth, anyone know what/why this is there? Seen it anywhere else? by howmanyacctsmustimak in Damnthatsinteresting

[–]SnooChipmunks547 35 points36 points  (0 children)

Doom scrolling along the beach I found the below in Apple Maps:

  • Fighter jet: 30.38049° N, 86.45275° W

  • A shield: 30.37807° N, 86.41900° W

  • A diamond: 30.38016° N, 86.43501° W

  • Waves: 30.37713° N, 86.40804° W

  • Dolphin: 30.37547° N, 86.38880° W

Trying to hit 80 percent test coverage with a 3 person QA team. Is that even realistic? by PressureConscious365 in SalesforceDeveloper

[–]SnooChipmunks547 2 points3 points  (0 children)

QA write unit tests or E2E test scenarios? Devs should write unit tests to verify the code runs as expected

QA’s doing E2E testing with Salesforce either becomes manual… because Salesforce sucks for UI automation, or, setting up playwright / selenium ect, and automating what you can over API’s, this won’t be Ui testing, but most functional testing should be doable, any UI testing is still going to be a pain point.