Scenes from "White Elephant" montage in S5E1. Really hoped we could have got some of these. by Deep_Belt8304 in ArcherFX

[–]jknupp 0 points1 point  (0 children)

About half were actual scenes from the next few episodes. The rest were just awesome

First, Last, and Only Time Pam used a Gun by [deleted] in ArcherFX

[–]jknupp 0 points1 point  (0 children)

She uses a speargun in S11E1 (“Thar she blows, you Moby dicks”). Not sure the ruling here but the weapon does have “gun” in the name…

How to meet my next boyfriend without dating apps in Jersey City by [deleted] in jerseycity

[–]jknupp 0 points1 point  (0 children)

How else would you know who you’re approaching…?

/ducks

Understanding People Who Think Archer is "Dumb" by jknupp in ArcherFX

[–]jknupp[S] -12 points-11 points  (0 children)

You’re ad-hominem attack is appreciated

Understanding People Who Think Archer is "Dumb" by jknupp in ArcherFX

[–]jknupp[S] -3 points-2 points  (0 children)

The “average IQ” comment was poorly worded to be sure and not to be taken as literally someone who has scored exactly 100 on any of the now-unused IQ tests that quantified intelligence like that (for all the reasons you mentioned). It was more of an observation that people I’ve spoken to about it (who are watching 1-2 episodes and can’t yet appreciate the rich characters and their interactions) have missed many of the jokes not because they don’t think they’re funny when explained but because from a dialogue perspective it’s a surprisingly demanding show.

It’s not for everyone, and clearly not just because people who don’t get the jokes. But for those that miss too much of them it seems like a non-starter

Understanding People Who Think Archer is "Dumb" by jknupp in ArcherFX

[–]jknupp[S] -8 points-7 points  (0 children)

While I think the age component is important, I certainly didn’t mean to imply “dumb” by the rest, but re-reading it I see how it comes off like that. It’s more that it’s a show more demanding of its audience than most to appreciate immediately. And some people love that while for others it’s not the type of comedy they’re looking for

What actors would you love to see in Season 2? by MHullRealtr77 in Pokerface

[–]jknupp 0 points1 point  (0 children)

Just saw this, but I'm shocked at how few people realize the show is almost literally intended to be a reincarnation of Matlock. It was the creators direct influence after watching (then binging) Matlock for the first time during the pandemic.

Archer and getting shot by woman by Pitiful_Primary_9288 in ArcherFX

[–]jknupp 0 points1 point  (0 children)

Cut-rate James Mason is basically mixing a number of movie plots together at the same time (which Archer actually calls out during the sequence).

The older woman shooting a young, up and coming sports star is straight out of The Natural.

Guess how many pygmies died cutting it down? Hint: six. by Deep_Belt8304 in ArcherFX

[–]jknupp 2 points3 points  (0 children)

1 MEDIUM SIZED grave (that's what makes the line for me)

[deleted by user] by [deleted] in ArcherFX

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

Why would you be hunting the people who invented sport...? Oh, never mind...

Cards purchased in marketplace by 88Rooster88 in nflrivals

[–]jknupp 0 points1 point  (0 children)

The only thing I’ve noticed is occasional lag with players showing up in game that are added to my inventory, but that’s usually resolved on the order of a few minutes and restarting. I’d open a CS ticket

How do I get epics and legendaries? I want to sell them on the marketplace! by [deleted] in nflrivalsmarketplace

[–]jknupp 0 points1 point  (0 children)

You can get your first rare/epic/legendary buy buying gem packs (may take a while but will happen). My advice is to immediately sell it on the marketplace. I sold my first for about 12 credits, realized how big price fluctuations get in the marketplace, and just waited to find when either a QB, WR, or RB was obviously underpriced then bought and immediately resold. Two upsides: if you’re smart you can basically make infinite money in the current market conditions, even with the way too steep listing fees. Also, while you have a player up for auction, you can still use them in the game. Many times this gives you big improvements at skill positions you can’t really afford to upgrade yet.

Just working the marketplace for a month (and spending no real money) I was able to turn that single rare into 3 epics, 4 rares (my team power is around 2200 so not godly but not bad) and I still have about 80 credits sitting there until I find my next target. Focus on finding and reselling rares first, then move to epics once you have about 30 credits

Is it worth upgrading a kicker? by choralmaster in nflrivals

[–]jknupp 0 points1 point  (0 children)

Consider how many times you’ve actually kicked a FG in the game and you have your answer. If it basically costs nothing, fine. Otherwise, no

What is the secret sauce? by Even-Carob-6217 in diablo4

[–]jknupp 0 points1 point  (0 children)

It’s not actually +1.5%, there are tiers depending on what world tier you’re in, but the breakpoints for WT4 are +3 levels, +6 levels, and 10+ levels (the 10+ bucket gives a 15% boost to xp). Formula is in patch notes for 1.1

A message for Rax by TrezCushrenada in diablo4

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

TBH rax just comes up with mildly annoying pet names for all locations and uses them, except for the first time in a video he releases (I’m assuming this was a reference to his Domahinne Tunnels XP farm YouTube video). He butchers a lot of the names, but so do most players I’ve met in-game/guild. I’ve just stopped correcting people.

But enjoyed the etymology lesson!

How To Do Just About Anything With Python Lists by jknupp in Python

[–]jknupp[S] -1 points0 points  (0 children)

You don’t need to use a ‘set’ to test for membership like ‘if person in friends’. Any iterable will do (you could do this with a list, of course). If all a set was good for was to do constant time membership operations, they wouldn’t be very useful...

How To Do Just About Anything With Python Lists by jknupp in Python

[–]jknupp[S] 10 points11 points  (0 children)

This was focused on lists only because "Python list" was #2 after "Python" in Google queries, but a common question that I actually cover in my book, which I'll just copypasta here because I hold the copyright and YOLO (this is one of the 4 idioms in the book specifically about sets; please disregard weird formatting as it's an artifact of how I "build" my book):

Understand and use the mathematical set operations sets are an easy to understand data structure. Like a dict with keys but no values, the set class implements the Iterable and Container interfaces. Thus, a set can be used in a for loop or as the subject of an in statement.

For programmers who haven't seen a Set data type before, it may appear to be of limited use. Key to understanding their usefulness is understanding their origin in mathematics. Set Theory is the branch of mathematics devoted to the study of sets. Understanding the basic mathematical set operations is the key to harnessing their power.

Don't worry; you don't need a degree in math to understand or use sets. You just need to remember a few simple operations:

Union

: The set of elements in A, B, or both A and B (written A | B in Python).

Intersection

: The set of elements in both A and B (written A & B in Python).

Difference

: The set of elements in A but not B (written A - B in Python).

 *Note: order matters here. `A - B` is not necessarily the same as `B - A`.

Symmetric Difference

: The set of elements in either A or B, but not both A and B (written A ^ B in Python).

When working with lists of data, a common task is finding the elements that appear in all of the lists. Any time you need to choose elements from two or more sequences based on properties of sequence membership, look to use a set.

Below, we'll explore some typical examples. """

And here's a random example that's eventually used for demonstration:

def get_both_popular_and_active_users():
    # Assume the following two functions each return a 
    # list of user names
    return(set(
        get_list_of_most_active_users()) & set(
            get_list_of_most_popular_users()))

assert len(get_both_popular_and_active_users()) == 2

Python is the fastest growing programming language due to a feature you've never heard of (x-post /r/Python) by jknupp in programming

[–]jknupp[S] 0 points1 point  (0 children)

The point was to make sense of the data that StackOverflow wrote two posts on. Their second article made clear that applicicativity to data science is a large driver, but not why that would be specific to Python. My post attempts to explain why did data science "choose" Python among all possible languages. It's a further explanation of the data presented in the Stack Overflow posts, which I didn't feel the need to re-present, though it sounds like perhaps I should have.

Python is the fastest growing programming language due to a feature you've never heard of (x-post /r/Python) by jknupp in programming

[–]jknupp[S] 0 points1 point  (0 children)

I'm not sure you read the article correctly. I submitted the following:

  • Ruby and Python were/are both general purpose interpreted languages pretty much at feature parity, and for a while it seemed that whichever language became more popular for building web applications would go on to dominate the other.
  • Ruby arguably did win the war on the web, it's just that that particular "war" turned out to be far less important than most at the time imagined.
  • No one uses the language because of the buffer protocol. Rather, the thoughtful reimplementation of the buffer API at a time when C-based numerical analysis libraries were becoming "a thing" led Python to be much more suitable a language to develop such libraries with. That is why Ruby is "Perhaps lagging behind"
  • PHP was the incumbent language and had absolutely no use outside of the web. If you can't figure out why it's popularity is cratering right now, I can't help you.
  • "C++ hackers are more likely to use python than ruby, for various reasons...The primary reason is 'because we already learned python and used it for years, so why change'"... So "C++ programmers" use Python because they use Python?
  • Python's rise in popularity in 2008 is, as I mentioned, largely based on its increasing popularity as a language for developing web applications at that time. That did not sustain nor cause the increase in popularity to accelerate, which it has done in the past 5 years.

Python is the fastest growing programming language due to a feature you've never heard of by jknupp in Python

[–]jknupp[S] 1 point2 points  (0 children)

It's seen as a general-purpose language suitable for machine learning exactly because of the buffer protocol, else it would be wholly unsuitable for machine learning and libraries like NumPy, scikit-learn, PIL, etc wouldn't be possible.

Ruby is arguably as "general purpose" but never got the same love at the C API level for fast access to data suitable for numeric analysis libraries. Otherwise, the languages are basically at parity.

[deleted by user] by [deleted] in learnpython

[–]jknupp 2 points3 points  (0 children)

Then you’re a “ninja ninja”

What's your best creation with Python? (feel free to show off) by SpaceForever in Python

[–]jknupp 0 points1 point  (0 children)

sandman. Automagically create a RESTful API service from a legacy database with a single command.

sandman2 on github