It has indeed been pushed and advertised by TikTok. Or at least, within TikTok.
It has indeed been pushed and advertised by TikTok. Or at least, within TikTok.
What, you don’t remember the Dave incident?
The book on the table has the telltale Cliff Notes branding imagery. Cliff Notes is a company that was real big in the 90s and 00s (not sure how big these days) for making short summaries of famous novels, including plot points and themes. Everything you would need to write a competent essay on the book. They’re notorious for allowing high school kids to get through literature classes without actually doing the reading work.
Windows over the last decade, in a nutshell.
I’m not sure which ones he was into at 4yo specifically, but my son’s Switch favorites include…
Super Mario Odyssey Mario + Rabbids: Kingdom Battle Celeste Minecraft Yoshi’s Crafted World Letterquest Big Brain Academy NES Arcade SNES Arcade
Of those, the ones I would say mught meet your super-chill criteria are…
Super Mario Odyssey (yeah, you can die, but you just respawn and can spend tons of time just running around aimlessly) Celeste (normally not, but there’s a lovely Assist Mode) Yoshi’s Crafted World (there’s a no-fail mode) Big Brain Academy (if they can handle being scored on things, without taking it too seriously).
Look into getting SmartTube for the TV. Works pretty great for me
A very large portion (maybe not quite a majority) of software developers are not very good at their jobs. Just good enough to get by.
And that is entirely okay! Applies to most jobs, honestly. But there is really NO appropriate way to express that to a coworker.
I’ve seen way too much “just keep trying random things without really knowing what you’re doing, and hope you eventually stumble into something that works” attitude from coworkers.
What DOES the new scanner do with its scan output, then?
Honorable mention fir Outer Wilds, cause taking notes and keeping track of things you learn is critical to the gameplay, but the game actually provides an excellent UI already it already.
Also, Elden Ring and other FromSoft games are a contender, cause when you meet a random NPC that says like 3 lines of dialog and doesn’t repeat them, you’re gonna have trouble remembering any of that 20 hours later when yoy meet them again.
Love detailed shit like this.
I actually didn’t get fooled by the first line, but I did by all the rest.
I can’t think of any time I’ve felt lile being left-handed is an advantage.
A little off-topic: anyone else read this as “BCA Chefs”, initially?
A quality apology consists of 3 things:
Your proposed apology has all those elements, so you’re already ahead of most folks. But there are a few suggestions for improvement in this thread that I think are also good.
“if you felt so, I apologize”: I don’t read this as you apologizing for how the other person feels, since you clarified that earlier. But I think it’s fair that others might read it that way, so you’re better off eliminating the ambiguity. You’re apologizing for what you did, without considering that others might (validly) consider it inappropriate.
“I’ll try to control myself around you”: similar deal, it should be clear that this is about you, not them. And when it comes to swearing in a workplace, it’s pretty-darn common to consider it inappropriate and unprofessional, no matter who you’re around. Maybe part of your apology needs to focus on how the behavior is unprofessional, and you simply needed help recognizing that, as you’re (possibly?) new to the professional working world.
I mean, I don’t even particularly think it looks bad, not with the riser sections actually being enclosed, but how on earth do you get that to connect?
Please tell me those splitters are just cosmetic and don’t actually work with lifts clipped that far in…
It’s the capability of a program to “reflect” upon itself, I.E. to inspect and understand its own code.
As an example, In C# you can write a class…
public class MyClass
{
public void MyMethod()
{
...
}
}
…and you can create an instance of it, and use it, like this…
var myClass = new MyClass();
myClass.MyMethod();
Simple enough, nothing we haven’t all seen before.
But you can do the same thing with reflection, as such…
var type = System.Reflection.Assembly.GetExecutingAssembly()
.GetType("MyClass");
var constructor = type.GetConstructor(Array.Empty<Type>());
var instance = constructor.Invoke(Array.Empty<Object>());
var method = type.GetMethod("MyMethod");
var delegate = method.CreateDelegate(typeof(Action), instance);
delegate.DynamicInvoke(Array.Empty<object>());
Obnoxious and verbose and tossing basically all type safety out the window, but it does enable some pretty crazy interesting things. Like self-discovery and dynamic loading of plugins, or self-configuration of apps. Also often useful when messing with generics. I could dig up some practical use-cases, if you’re curious.
If you’re interested in detail, I can recommend this book: https://play.google.com/store/books/details?id=ncGVPtoZPHcC.
Practice getting up in response to your alarm.
Seriously.
Once or twice a day, in the middle of the day, go lay down in bed, like you’re going to sleep, and set your alarm for maybe 5-10 minutes. The moment it goes off, shut it off and stand up. Teach your body the habit of standing up, immediately, in response to the alarm. So long as you’re getting enough sleep, you’ll start doing it in the morning, on reflex.
The presentation is different, but the core problem that the FTC is targeting is the same: spending real money to gamble on artificial digital goods.