I love the Ruby/Sapphire version of that annoying trumpet
https://inv.tux.pizza/watch?v=G4nIvgHypg4
Invidious so the bot doesn't go crazy
Just your typical internet guy with questionable humor
I love the Ruby/Sapphire version of that annoying trumpet
https://inv.tux.pizza/watch?v=G4nIvgHypg4
Invidious so the bot doesn't go crazy
The impression is “this decision came from very high up in Unity” from an exec who “had no idea how bad of an idea it was”
Said exec is a crystal-clear case of the Peter Principle: being promoted to the point of incompetence.
Truly, a person who totally deserves their pay /s
33% of your income is still too fucking much for rent
They create the jerbs! They make comp'nees grow! They work'd hard to git ther! Their work is supuurrh impuurrh'tant!
I did my part with this post - https://programming.dev/post/2947073
My list has a few things that aren't listed in that GFS link, which might be useful for the more specific indie types (Solarus, OHR, OpenMW)
Stride does look like a very good alternative if the intent is a 3D game and C# programming, so possibly the best case for Unity veterans in that regard.
It was raking in tons of money, especially since 2020 (772 million for that year), but they somehow were spending way more than they were earning for most of their existence. Beats me how/where that money was being spent. https://investors.unity.com/financials/quarterly-results/default.aspx
Pretty much every gamedev course will teach either Unity, Unreal or both, so those students end up getting fucked either way.
Seems to be S6E4 Itchy and Scratchy Land
Eagerly waiting for the videos of every Starfield's fade-to-black screen transitioning back into Skyrim's opening
My biggest disappointment in life was finishing a whole campaign of D&D and never getting invited into a cult to cast spells with THE REAL POWER. Maybe it had to be with 2nd edition instead of 3.5?
Title reminds me of this one - https://www.smbc-comics.com/comic/the-most-american-movie
On tiktok, what might work is showing off silly stuff possible with my game, or close calls that end in failure, as that tends to get people to rewatch the video and share. Wouldn't fall into programming content, but "funny", which has a huge audience.
Brazilian portuguese tends to lack impactful phrases, but is full of single curse words. A big portion of them a clear example of how much negative bias there is culturally against certain groups (gay men, women in general, disabled), unfortunately :/
One that isn't often used, but that I almost always laugh loud whenever I hear, is "Enfia uma dentadura no cu e sorria pro caralho", which roughly translates into "Stick a denture up your asshole and smile at the dick". For when simply saying "go fuck yourself" isn't enough.
sigh So, I fixed it...
Turns out the problem was in the player node structure. The pausemenu is a child of a Container. The problem was that said container had a size of 40x40, as shown on the pic below. Simply reducing it to 1x1 or 0x0 fixed the issue.
*removed externally hosted image*
EDIT: There was also another container, the "gameover" just below the pausemenu, that also had a square size around that same area. So, TLDR: check for any "empty" containers if you get a similar problem.
Most languages are, but english goes out of its way in being phonetically removed
Sorry, can't hear you over the sound of all this cheap oil, I mean, freedom! Bringing freedom to these rich oil, I mean freedom starved countries! - 'murica in the 2000s
Thing is, the USA has been pulling this kind of shit for a long time. The Kingdom of Hawaii being overthrown is a very good and old example, dating back to 1893 for the coup and 1898 for the incorporation. The Philippines being denied their independence for almost 50 years after the Spanish sold them out in 1898 is another example. The USA is an unrepenting reoffender when it comes to fucking other countries.
In a way, my interest in internet privacy is almost always met with uninterested "ah" IRL. Even when I dont come off as preachy, when I just try to sell it as "watching YT without ads", people often don't care.
Whistleblowing corruption is dangerous and might often end in persecution against the whistleblower = Reporting cheating whales is a surefire way to get yourself banned
The wealth inequality gap is mind-boggling = You'd need to grind nonstop for a total of 5 billion hours to buy one of everything on the cash shop
The rich can easily exploit the political system and lobby for favorable laws = Not only is it pay to win, the devs suck the dicks of their biggest whales
I've had that happen with database logs where I used to work, back in 2015-6.
The reason was a very shitty system that, for some reason, threw around 140 completely identical delete queries per millisecond. When I say completely identical, I mean it. It'd end up something like this in the log:
2015-10-22 13:01:42.226 = delete from table_whatever where id = 1 and name = 'Bob' and other_identifier = '123'; 2015-10-22 13:01:42.226 = delete from table_whatever where id = 1 and name = 'Bob' and other_identifier = '123'; 2015-10-22 13:01:42.226 = delete from table_whatever where id = 1 and name = 'Bob' and other_identifier = '123'; -- repeated over and over with the exact same fucking timestamp, then repeated again with slightly different parameters and different timestamp
Of course, "no way it's our system, it handles too much data, we can't risk losing it, it's your database that's messy". Yeah, sure, I set up triggers to repeat every fucking delete query. Fucking morons. Since they were "more important", database logging was disabled.