HackerLangs
TopNewTrendsCommentsPastAskShowJobs

ixwt

673 karmajoined 12 yıl önce

comments

ixwt
·4 gün önce·discuss
Likely one of two reasons, probably both:

1. Tax write off.

2. Acquiring a competitor, and then closing them down is a way to decrease competiton.
ixwt
·25 gün önce·discuss
People often want to share their seeds so that players can play the same game they did. If there was an interesting series of results for example, which gave you a good set of cards.

Minecraft does this too with world generation for example.
ixwt
·2 ay önce·discuss
According to the video about this by Louis Rossman, there wasn't even string sniffing. No changes were made in the code, the client ID was hard coded in, and was untouched by the author.
ixwt
·6 ay önce·discuss
All, no. But many, yeah. The Constitution and many of it's Amendments call out people or persons. The 14th Amendment even specifies what a citizen is, and in the next breath says persons cannot be denied due process by the States, not citizens.
ixwt
·6 ay önce·discuss
I've been using YNAB 4 (aka YNAB Classic on Android) for some time. I got a new phone, and the phone app finally won't run on the new phone. YNAB 4 is also quite buggy on my Arch based setup (someone maintains a package on AUR using Wine). So I think it's finally time to move on, which I think I'm doing this year.

My only issue with Buckets is that the YNAB importer doesn't take into account that YNAB will take your overspending and take it from your next month's income. I have some bad habits that means I was really using YNAB as more of a financial tracker than an actually budget system. That's my own fault though. The envelope in question comes out to $-10k... That's all my own fault though. It just means I have to massage it into Bucket's system, or start a new budget.
ixwt
·7 ay önce·discuss
Bigger?! What more do you need?! There are also other things that are on the way as well.
ixwt
·7 ay önce·discuss
Timed tests encourage wrote memorization and reflexive knowledge. They don't encourage what is reflective of the modern real world knowledge recollection. In almost all scenarios, you have a book to reference for knowledge, much less search engines (and now LLMs). Almost nothing is memorized today, in the work world. What you know, in my experience, comes from frequent usage. Your timespan to work on most things is on the order of days, not minutes or an hour.

Tests should be open book, open notes, and an extensive amount of time to do the test. The questions should be such that they demonstrate an understanding of the material, not just how well you can parrot back information.

Whilst I would love tests to be open internet, this lends itself to very easy cheating. The material being taught and what notes you take about it should be enough to answer any questions posed to you about the material. Especially those that demonstrate an understanding of the material.
ixwt
·7 ay önce·discuss
Narrator's Narrator: "The overwhelming majority of consumers don't care about the bootloader, so the market forces do not have an incentive to keep it unlocked. This leads to the market not 'fixing itselt'. "
ixwt
·8 ay önce·discuss
As far as I recall, it was sell cheap, or collapse with nothing. Garmin bought cheap and gutted it for the IP. It wasn't a sell to get paid, it was a sell or get nothing. It wasn't just hardship, it was the end.
ixwt
·8 ay önce·discuss
This is a rather bizare take. Pebble turned down a massive deal to keep doing their own thing. They sold cheap after they were going down because they had too mich staff, and not enough sales. Which Eric has said many times, and can even be found on his blog.

Then, when they were being sold, instead of shutting down the Pebble store and basically bricking all Pebble watches, they intentionally opened it up to make it possible for community support. Which is where Rebble stepped in.

Bizarre and disingenuous take. That really doesn't take into account Pebble's actions, much less their words.
ixwt
·8 ay önce·discuss
I'm in the same boat. But the specs do mention "Eye Glasses Max Width 140mm"
ixwt
·8 ay önce·discuss
The powder in the video has enzymes as well.
ixwt
·9 ay önce·discuss
I'm not an expert by any means, but there isn't much to draw people to other games aside from curiosity. When it comes to Chess and Go, there is significant money on the line. Chess was also a proxy fight during the Cold War.
ixwt
·9 ay önce·discuss
I'm personally a big fan of asymmetrical games. A game I've wanted to play but have never had the board to play it on is Unlur [0]. Arimaa [1] is another one with some history behind it that is uncommon.

It is very much appreciated that I don't have to make an account to play. That is one of the most annoying thing on sites like these to play games.

[0]: https://www.iggamecenter.com/en/rules/unlur

[1]: https://www.iggamecenter.com/en/rules/arimaa
ixwt
·10 ay önce·discuss
Sounds like standard modern business practices to me.
ixwt
·10 ay önce·discuss
I strongly encourage you to glance at the dissents for that case. That is very much not the case. The Supreme Court willingly ignored very important evidence that was the case.
ixwt
·10 ay önce·discuss
Huh. Wasn't aware of that feature. Good to know.

I didn't fully flesh out the initializing local variables: What part of your code is undefined? You deleted the memory, and the compiler reused it. Then you re-accessed that same memory. That's just part of working with computers. The initialization comment was supposed to be from creating data to releasing it is defined. To be compliant with the Odin compiler spec, it's defined from start to end.
ixwt
·10 ay önce·discuss
1. I'm fairly certain you have to use make to get into heap.

2. Odin 0s out memory when declaring a variable unless you explicitly state so with ---. This defines the state of memory when allocated.
ixwt
·10 ay önce·discuss
This is a simple use after free on the stack. Is that UB?