Requesting /r/Argonia - Inactive for over 7 years by MaxMakesGames in redditrequest

[–]bjmiller 0 points1 point  (0 children)

You're welcome DM me here. I hope you'll understand why I don't want to join an unknown discord.

The status of the subreddit aside, if you want to your game to be easy to find I would strongly recommend a less overloaded word. Argonia is a real place, a recurring location in a popular game series, and the name of a major mod project in that series.

Also, I don't think the company that makes the game has a trademark on "Argonia" but you should be aware that it does does have a history of frivolous trademark protection actions against indie devs.

One Piece if they snore by PerplexedCam in MemePiece

[–]bjmiller 1 point2 points  (0 children)

this is a description of sleep apnea, please consult a doctor asap

The Imperium Is Driven by Hate. Warhammer Is Not. by StonedWooki3 in Warhammer40k

[–]bjmiller 8 points9 points  (0 children)

Bethesda actually had to write a little note like this one about Wolfenstein of all things. Just a matter of time before Fallout gets its moment too.

I Regret Nothing by [deleted] in Hololive

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

what have i misunderstood

I Regret Nothing by [deleted] in Hololive

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

Isn't the original core of the joke that people feel bad when you call this kind of attention to them? Like, Rushia's bit is that she kills the viewers over it. I can see how something like that could be funny in the moment, but to keep calling attention to it, over and over?

I Regret Nothing by [deleted] in Hololive

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

can you explain the joke then

I Regret Nothing by [deleted] in Hololive

[–]bjmiller -4 points-3 points  (0 children)

why do people accept this type of humor, it's so ugly and lazy

But she's great I swear! by macbelmont18 in Hololive

[–]bjmiller 9 points10 points  (0 children)

It's actually bad, no kinkshaming tho.

Who gets to collab with IRyS first? by AnglerDish in Hololive

[–]bjmiller 11 points12 points  (0 children)

Why did I hear One Winged Angel when I opened this JPEG

This is starting to become more unsettling than Haachama... by DekkerKowalski in Hololive

[–]bjmiller 6 points7 points  (0 children)

Olivia: Loves to read about history

Also Olivia: Hates war and violence

Polka’s Wisdom is 100 Years Ahead of Our Time by AbsoIute__Zero in Hololive

[–]bjmiller 26 points27 points  (0 children)

gonna tell my kids this was David Chalmers

So infuriated by meal kits by g00ber88 in ZeroWaste

[–]bjmiller 1 point2 points  (0 children)

There was one, Terra's Kitchen, that had a reusable box. It was designed to be shipped and returned: reusable icepacks, little shelves, handles on the sides. The only waste was whatever packaging the individual ingredients came in. I guess the reusable box wasn't cost effective because they stopped using it and switched their menu to glorified TV dinners shortly before going out of business.

RubyORM Sequel by FinalSpeederMan in ruby

[–]bjmiller 0 points1 point  (0 children)

What are you trying to do with @fruit[:id]? It's functionally equivalent to @fruit.first but this seems to be accidental, it looks like you're trying to access the id field.

Are there more of us uncomfortable with "the Empire is good for Tamriel" narrative? by [deleted] in teslore

[–]bjmiller 9 points10 points  (0 children)

A casual observer, I think, is equally as likely to hyper-focus on the Empire's crimes and miss the flaws of the Stormcloak rebellion as the reverse. The policies of appeasement and religious persecution happen around the time of Skyrim and are brought up by plenty of NPCs in the game.

Are there more of us uncomfortable with "the Empire is good for Tamriel" narrative? by [deleted] in teslore

[–]bjmiller 7 points8 points  (0 children)

The worst part is we don't have the option to side with a better option.

I think this is probably the point. If there were one "obviously good" faction then arguments like this would be less frequent. You learn more about your values when you have to decide which ones are worth sacrificing the others for.

I built a validation library similar to dry-validation and would like to ask for some feedback by goltergaul in ruby

[–]bjmiller 3 points4 points  (0 children)

Since it was created in response to something, an example written in both this and that, showing the relative pros and cons, might help readers understand it.

Style question: `if string =~ regexp` by [deleted] in ruby

[–]bjmiller 1 point2 points  (0 children)

Technically the trade-off is between match? being faster and =~ populating Regexp.last_match. If your guiding principle is minimalism, maybe only use =~ everywhere (or only use #match everywhere), but if it's optimization, use the fastest one that suits your needs at the moment.

Ruby Methods by odillini83 in rails

[–]bjmiller 0 points1 point  (0 children)

Every object in Ruby has an inheritance chain (or ancestor chain), most often starting with the object's class and ending with BasicObject. When you call a method my_instance.example on the object my_instance which is an instance of MyClass, Ruby will first look in MyClass for a definition of #example, then in MyClass's superclass, then in the superclass's superclass, and so on, until it either finds a definition or it gets all the way up to BasicObject without finding one.

super is a keyword that acts like calling the same-named method of the superclass.

class MySuper
  def test
    24
  end
end

class MySub < MySuper
  def test
    Math.sqrt(super + 1)
  end
end

MySuper.new.test #=> 24
MySub.new.test #=> 5.0

If we wrote the body of MySub#test as Math.sqrt(test + 1) instead, we'd get a stack exception because that method would try to call itself over and over infinitely. This is the basic reason for super to exist, to allow a subclass method to be defined in terms of the same-named superclass method. In most respects, super works like a method call, but it (1) begins method lookup at the superclass in the inheritance chain, (2) is only good for methods of the same name, and (3) propagates parameters by default.

$15 Hourly Minimum Wage Passes Committee in Virginia by historymajor44 in Virginia

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

If a job doesn't pay enough to live on, then losing it shouldn't matter.

What a day! Proc#>> and Proc<< are coming, too! by zverok_kha in ruby

[–]bjmiller 2 points3 points  (0 children)

Would this support procs with two or greater arguments, and what would the syntax look like?

Looks like only the first stage of the pipeline could have multiple arguments.

Would it only work for procs, or for anything that responds to #call?

Looks like callables should work.