tyler

joined 1 year ago
[–] tyler 2 points 14 hours ago

I thought it was la chupacabra

[–] tyler 27 points 14 hours ago (2 children)

What made them change their mind? Pretty sure that’s always been part of the implication lol.

[–] tyler 6 points 14 hours ago (1 children)

Roblox came out in 2006? On what platform?

[–] tyler 2 points 19 hours ago

Like imagine if we referred to the South of France as the area from Paris to the northwest corner. That's how dumb it is. It's so stupid.

[–] tyler 2 points 19 hours ago

the term as used by the Census Bureau is the Mideast by actual geography.

[–] tyler 1 points 19 hours ago

I understand where it came from. It has been incorrect for over a hundred years. It was actually called the North Central Region up until 1984, so we've literally regressed from the 80s. https://web.archive.org/web/20240926043523/https://www.census.gov/history/www/programs/geography/regions_and_divisions.html

[–] tyler 5 points 19 hours ago (1 children)

I think they hadn't ever used git before, and according to at least one person in the linked issue, vs code might have auto initialized the git repository for the user.

[–] tyler 2 points 19 hours ago

You can open up mx switches, but you'll need a tool. You can also desolder the switch and solder back on when you're done (switches are one of the easiest things on the planet to solder). Green is copper corrosion, so you just need to scrub the contact with some steel wool or sandpaper, or clean with a chemical cleaner. If you can desolder the switch you can always just buy a new one to replace it as well. You should not need to desolder 28 keys to reach it though. Just the one, then they have little tabs holding them in, so you can just push them out with the little nub on the bottom.

[–] tyler 2 points 19 hours ago

I posted the nohello.com website once in my slack and then from that point on just stopped responding to hello, hi, hi tyler, etc. What @[email protected] talks about below is exactly my case:

That makes perfect sense, and I see why the habit became so commonplace; but that’s exactly why this is annoying to anyone who is highly responsive on a messaging app, especially if responding to requests for help is part of their professional work. They pay attention to their notifications, so the notifications are probably configured to be noisy. Checking a notification before it’s actionable is a waste of their time, albeit a small one.

I just don't have time to give my attention to those people. They can either get their help elsewhere or they can ask a question. I know that sounds rude, but I will help literally anyone that asks within minutes of them messaging me, so it's literally the smallest thing to ask for.

[–] tyler 5 points 19 hours ago

No he asked for a discard after importing the project into VS Code. discard in git terms refers to git reset, not git clean. Even if he wanted to run a git reset then this version of VS Code would have run a git clean and deleted everything. Imagine he committed all 5000 files, but had a secret.json that he hadn't committed. He didn't add it to gitignore either. Running a git reset --hard will not delete this file, but the VS Code button did exactly that because it ran a git clean.

[–] tyler 8 points 19 hours ago (3 children)

the problem is that VS Code ran git clean if you clicked yes, which is completely idiotic behavior. No other git client, text editor, or IDE on the planet does that.

[–] tyler 9 points 19 hours ago

discarding changes does not discard uncommitted new files. The VS Code button did a git clean which is completely unexpected. Git even refers to a git clean with completely different terminology.

git reset -> "Resets the index and working tree. Any changes to tracked files in the working tree since are discarded."

git clean -> "Cleans the working tree by recursively removing files that are not under version control, starting from the current directory.". This command also requires you to specify a force option to actually do something, else it quits with an error.

Note that git clean never once refers to discarding anything, and git reset never refers to removing untracked files. VS Code was doing an idiotic thing. Running git reset --hard AND git clean. There is absolutely no reason to be running git clean from an UI button ever. If you want to remove a file you can explicitly remove it.

Imagine that the button said "Discard all changes" and then it ran rm -rf --no-preserve-root /*. Would that make sense as a button? No. It definitely would not.

view more: next ›