For ages I've thought that some apps were just being stupid making the Redo keyboard shortcut Ctrl+Y. Today I've learned that is standard on Windows.
Windows users, are you ok?
For ages I've thought that some apps were just being stupid making the Redo keyboard shortcut Ctrl+Y. Today I've learned that is standard on Windows.
Windows users, are you ok?
For some reason, though not complaining, ever since Reddit removed the link to all, I engage with it much less. I updated the bookmark to take me to all, but will skim a page or two, forget home exists, and put it away.
Probably not the effect they intended.
They frame it as a cable-company would: we've added a bunch of AI features you didn't ask for and are not using, so we feel it appropriate to charge you for that.
To their credit, the email does mention the "new" plan in the final paragraph, but they hope you don't read that far.
Shitty tactic of Adobe, big surprise. Get an email saying my subscription price is going up. Except it's not really. My plan is getting a new name, higher price, and included AI credits. A "new" plan with the same price and features of the old plan is being added.
Itβs a clue. Like I said, itβs not uncommon in stuff written by people that write for a living. But use it as a hint. Also look for lists of three, and βitβs not just X, itβs Yβ usage. If you see something using all three, thereβs a pretty high chance AI was involved.
An em dash is a wider form of hyphen. Looks like β instead of -. Itβs most often used to interrupt a sentence. Itβs not something people normally use in their writing, but itβs not uncommon in journalism. Since news articles were a major LLM training source, theyβre often overused in AI text.
With the latest Windows updates, you can now press the Windows key + Minus to easily input an em dash.
Just got this as part of a βnew featuresβ email from Microsoft. Seems theyβre trying to encourage the use of em dashes to normalize their overuse in AI generated text.
The movie sucks. But damn is it entertaining.
Better to get two separate devices. Maybe something like an infrared heater designed to sit under your monitor.
Iβm not saying this thing is any good, but something like this. a.co/d/0ckauYsE
Yeah. But itβs actually a terrible idea. Think of all the things that make mice unique. Shape, weight, button count, button placement. Switch type, sensor type, power method, and more.
So you get to choose between a heater with a crappy mouse attached, or a good mouse.
I need a heated mouse...
This is my simplified version.
Why so much code!?
Two word review of Good Luck, Have Fun, Donβt Die:
See it.
Update on this. It snowed overnight so I got to actually test the effect in the real world, and they absolutely did their job. Blower moves better than ever.
So my task becomes to find something that is 1/8th inch to rest it on. Two somethings technically.
3D printer to the rescue! Had it spend 20 minutes to make me a pair of 1/8th inch thick bricks, and they did the job perfectly!
Snowblower has been pulling a bit to the right, so I figured itβs time to adjust the skid shoes. Most advice I see says to lay pencils down under the shave plate, but refer to the manual to confirm. Sure enough, pencils are 1/4th inch, and my blowerβs manual says 1/8th inch.
My switch has the RGBβ¦
(And unimpressive cable management.)
By every metric Apple is just not the company they were. Years ago, they replaced my brotherβs MBP years out of warranty, with both liquid and physical damage, completely free of charge.
Today they lied and claimed my AirPods have liquid damage so they can charge me the $30 fee.
Sometimes I think copy and paste should not be allowed in IDEsβ¦
Oh boy, found more stupid in the code. It seems that a splitter control that can handle both vertical and horizontal was too hard of a concept. So the vertical was duplicated and tweaked slightly to be horizontal. Oh and they are containers, not canvases⦠for some reason.
My right AirPod stopped charging, so I took it to Apple. Despite only being superseded by a newer model in September, the store had absolutely nothing on hand to diagnose or replace it. So they had to send it out for βrepair.β But AirPods donβt get repaired, only replaced.
But I'm beginning to question that. What human would ever think of doing this? It doesn't make sense. Humans are lazy. Why would any dev choose to add a counter variable instead of just increasing the wait time?
I'm not kidding when I say every task is just like this: needlessly complicated. There's so much excess code to do even basic tasks. I've long held that this was not written by AI. I'm familiar with AI code, and this doesn't feel like AI code.
And I just have to laugh, because... what the fuck? Why not just set the timer to fire once after 300 milliseconds? Not to mention the fact that this delay probably isn't necessary at all, but that's a different issue entirely.
The second picture is the code that fires every 100 milliseconds. He increments iTimNav, so that's clearly a counter. And then only when iTimNav is 3 or more, does he then actually open the stored thing and stop the timer.
In the first picture, he stores something to open later. Perfectly normal. Then sets a variable to 0, and starts a timer that fires repeatedly every 100 milliseconds. Considering the name iIndexToOpen, the intention appears to be to open a thing after a time, so repeating the task is already weird.
I am literally laughing out loud at this code I just discovered. I'll break it down in the next message.
Thatβs not a valid line of Xojo code. The correct line is `Var dr As DateTime = DateTime.Now` since DateTime does not have an empty constructor.