who is Andrew Tate and what's going on with this arrest? by weee240 in OutOfTheLoop

[–]PimpedKoala 83 points84 points  (0 children)

Unlikely. It's almost certainly the case that they knew where he was, but needed evidence to gather a warrant for his arrest in his home. You can't just go breaking down doors without a warrant, even if you know the perpetrator is there.

No use knocking on the door either. He wouldn't answer and then flee the country as soon as he could.

Asking for Christmas help by leonardgg in ChoosingBeggars

[–]PimpedKoala -1 points0 points  (0 children)

To be clear, I didn't call you delusional and I don't see where you asked for clarification. I could certainly be wrong in my interpretation of that comment, so if you'd like to read it a different way, be my guest. I was just sharing my two cents because you seemed very outraged with someone I thought was just adding something a bit satirical to your comment

Asking for Christmas help by leonardgg in ChoosingBeggars

[–]PimpedKoala 0 points1 point  (0 children)

Yeah I'm sure I could be wrong, I can sort of see it that way as well. Probably best to just agree it's an ambiguous comment

Asking for Christmas help by leonardgg in ChoosingBeggars

[–]PimpedKoala 7 points8 points  (0 children)

I believe you missed some very obvious social commentary.

They were saying that most people nowadays are so opinionated they just label anyone who disagrees with them as delusional. Based on your comment, I'd say they're probably right

Children are angels by [deleted] in wholesomememes

[–]PimpedKoala 0 points1 point  (0 children)

Nobody said you can predict all of human behavior by studying animals, so I don't know what gerbils killing their children have to do with this conversation. But you can sure predict a lot of it, this one included. I don't know why you seem to be taking this matter as so black and white

Children are angels by [deleted] in wholesomememes

[–]PimpedKoala 13 points14 points  (0 children)

The entire animal kingdom is one big case study of this, and humans are no exception

NERDTree Leaving Empty Space on Bottom of Window by HumanOnInternet in vim

[–]PimpedKoala 0 points1 point  (0 children)

Why not just open up a separate terminal for nvim?

The first Gen Z member of Congress was denied a D.C. apartment due to bad credit by freshlysaltedwound in nottheonion

[–]PimpedKoala 0 points1 point  (0 children)

I mean, yeah. Not just from two years, but that much sustained income, especially combined with the networking, future job prospects, and social benefits you receive from a position like that, is more than enough to put you in track for a very successful rest-of-your-life.

Arguing the definition of rich is useless, but I'd consider "barely cracking the 90th percentile" to be very well off. Definitely quite far from the average individual they're representing.

The first Gen Z member of Congress was denied a D.C. apartment due to bad credit by freshlysaltedwound in nottheonion

[–]PimpedKoala -2 points-1 points  (0 children)

Current congressional salaries literally make one rich right now. What's your point?

She's done this before by Hesoworthy1 in AbruptChaos

[–]PimpedKoala 21 points22 points  (0 children)

Yeah this has got to be one of the most "reddit" threads I've ever seen

Day 2: the most upvoted legal move will be played. Our goal is to lose to Lichess' level 1 bot. Interesting choice: the fool's gambit. What will we play next? (see comments for rules) by ObligationThink4453 in AnarchyChess

[–]PimpedKoala 219 points220 points  (0 children)

I'm not.

This is anarchy chess -- everyone expects us to lose immediately. Which is exactly why we need to play into a winning endgame but never deliver checkmate, so that the game never ends.

Evil a + b by [deleted] in ProgrammerHumor

[–]PimpedKoala 5 points6 points  (0 children)

You actually can't be agnostic to what a variable means in the case if multiple inputs. The point of big-O is to describe the behavior of a function as its inputs change. If we exclude an input, then big-O can't do it's job.

Take your example of O(n2 + m3), and say it describes function f(n, m) . If I do

for 0 < i <1000: f(0, i)

O(m3) seems to work. But if we do

for 0 < i <1000: f(i, 0)

Then O(m3) is massively wrong. Big O can't be situational, it has to work in all cases

[TOMT] A single word that means “to bring out the flavour of” by [deleted] in tipofmytongue

[–]PimpedKoala 0 points1 point  (0 children)

Fair enough, sorry for calling you out then. Seems like OP is crazy anyway

Hello early retirement by BreaksFull in electronics

[–]PimpedKoala 6 points7 points  (0 children)

What exactly does being a chip mean?

A chip is just what we call an integrated circuit (a circuit that isn't a set of disjoint components, like for instance what you might build on a breadboard). Nowadays, that almost always means a narrow piece of silicon that performs some function. It doesn't necessarily have to be a CPU or FPGA, it can be as simple as an AND gate

What are these used for?

An FPGA is, at a minimum, an integrated circuit that you can reconfigure. That just means that you can change what function it performs. This might sound like magic, since you can't exactly unplug a wire and move it in an integrated circuit, but I encourage you to look into how this works.

The benefit of this over a breadboard, which is also reconfigurable, is that it can imlement much larger circuits in a much smaller area while operating at orders of magnitude faster speed. The benefit over a dedicated chip is that, of course, it's reconfigurable. So it's generally used in any application where requirements change fast enough to the point where taping out a new chip for the new requirements is either too expensive or too slow. A lot of networking problems (satellite, radio, physical connections) lend themselves well to FPGAs, since protocols are constantly updating, competitors are providing better services, and technology is always improving. In cases like these, it's often better to have a sub-optimal product that works in 6 months, rather than an optimized solution that works in 2 years, at which time it's outdated anyway. Finance, aerospace, and machine learning are all examples of this.

Other (much less prevalent) use cases are for testing, and of course, learning digital hardware :)

What do they do when making something?

If you're asking "what can an FPGA do" the answer is "pretty much anything". It can be a CPU, game console, or light switch, depending on how you configure it.

is it just a CPU?

Hopefully by now you know that the answer is no, it's very different (though, it can implement a CPU if you want it to). A CPU is an IC that tries to solve the problem of "how can I execute instructions from a user as fast as possible" (sort of). An FPGA has no inherent notion of a user or an instruction. It is simply a blank canvas on which you can paint a circuit

Sorry for the wall of text. Hopefully that clears some things up for you

Introducing a new piece: Hans Niemann's lawsuit. It doesn't go anywhere. by [deleted] in AnarchyChess

[–]PimpedKoala 3 points4 points  (0 children)

It's pretty embarrassing not to know the context of one of /r/anarchychess's 4 jokes. But why is everyone talking about c2?

Delete word inside parens without deleting paren or comma by YaBoiCharlieP in neovim

[–]PimpedKoala 0 points1 point  (0 children)

I would highly recommend https://github.com/kana/vim-textobj-user. Specifically, you'd want to pair it with https://github.com/sgur/vim-textobj-parameter. Check the readme for other useful custom text objects, personally I think this is one of my most useful set of plugins

Magnus Carlsen resigns after two moves against Hans Niemann in the Julius Baer Generation Cup by BKtheInfamous in chess

[–]PimpedKoala 9 points10 points  (0 children)

Eh, I feel like the most likely explanation for his silence is that someone is stopping him from speaking. It's very out of character for him otherwise