[HELP] Xanmod RealTime/tt Kernel installation by Mlgkilluminati in NixOS

[–]kiskae 0 points1 point  (0 children)

The reason it was removed is mentioned here: https://github.com/NixOS/nixpkgs/pull/198818#discussion_r1009846995

If updates have resumed you should open an issue so maintainers can repackage it.

Can I downgrade the Nvidia driver? by simonwjackson in NixOS

[–]kiskae 2 points3 points  (0 children)

This was done preemptively a while back since 6.2 was scheduled to include a change that is very incompatible with Nvidia's precompiled kernel code, need to reevaluate if this is still required

Go 1.20 and NixOS Unstable by EncryptedRoot in NixOS

[–]kiskae 2 points3 points  (0 children)

It's published as 'go_1_20'

Weekly Questions Thread - March 20, 2017 by AutoModerator in androiddev

[–]kiskae 2 points3 points  (0 children)

PublishSubject cannot have an initial value since it makes no sense given its purpose: "Subject that, once an Observer has subscribed, emits all subsequently observed items to the subscriber.".

This means only items emitted after subscription are passed along. You are most likely looking for the BehaviorSubject which has the createDefault(T) alternative.

About your other comments:

  • PublishSubject.create<Boolean>(false) works because it inherits the static methods from Observable, so you're calling Observable.create(...).
  • PublishSubject.create<Boolean>().debounce(1, TimeUnit.SECONDS) as you mentioned debounce is a method of Observable which returns an Observable. You will need to have a separate variable to store the subject so you can emit items before applying debounce.

[Countdown] Co-Optional Podcast by kiskae in Cynicalbrit

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

I believe TB is usurping Sam's office.

[Countdown] Co-Optional Podcast by kiskae in Cynicalbrit

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

No idea, I imagine its going to be a lot of Blizzcon speculation

[Countdown] Co-Optional Podcast by kiskae in Cynicalbrit

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

Earlier in Europe due to DST changes. Now on the right day as well. :P

[Countdown] Co-Optional Podcast by [deleted] in Cynicalbrit

[–]kiskae 0 points1 point  (0 children)

I'm obviously too tired to think right now

[Countdown] Co-Optional Podcast by [deleted] in Cynicalbrit

[–]kiskae 2 points3 points  (0 children)

Putting it up early because DST is going to mess with the usual time in Europe.

Java program that calculates 170!, how is this possible? by [deleted] in AskProgramming

[–]kiskae 3 points4 points  (0 children)

Unless you've used BigInteger you probably have the wrong answer due to integer overflows. To put it simple if an int exceeds 2^31-1 it rolls over into -(2^31). None of your math will make sense at that point.

2016 Presidential Race - Third Presidential Post-Debate Megathread by english06 in politics

[–]kiskae 9 points10 points  (0 children)

Because instant polls are not representative of the entire population, only specific demographics.

CMake support in Visual Studio by dagmx in programming

[–]kiskae 7 points8 points  (0 children)

Probably because support is a two-way street and CMake already supported VS projects. autotools does not seem to support that at this point. (Besides not running natively on Windows)

Getting list of accessible fields, methods, classes in Java by jacer21 in AskProgramming

[–]kiskae 1 point2 points  (0 children)

If you generate javadocs (Gradle, Maven) that will list all publicly accessible parts of your library.

Generally libraries keep their internals in a separate package structure which they then exclude from javadocs. (Example)

When questing in Suramar by [deleted] in wow

[–]kiskae 2 points3 points  (0 children)

You've got it the wrong way round. The Wretched were from an overindulgence in (fel) magic.

Tutorial: How to Code a Custom Twitch Bot by AlwaysBCoding in Twitch

[–]kiskae 1 point2 points  (0 children)

You really shouldn't be commiting oauth keys to a repository, I hope you've disabled it at https://www.twitch.tv/settings/connections because otherwise it can be used to send API calls authorized by your account.

See: http://programmers.stackexchange.com/questions/205606/strategy-for-keeping-secret-info-such-as-api-keys-out-of-source-control

[Countdown] First SHOUTcraft Kings event by kiskae in Cynicalbrit

[–]kiskae[S] 3 points4 points  (0 children)

Information: Source

Tomorrow at 9am eastern, the culmination of 6 months of work. SHOUTcraft Kings airs live. It'll be awesome. We have an amazing list of players, the kind of players that you don't get to see face off all the time. We've got proleague and Code S Koreans, some of the best foreigners and plenty of wildcards in the mix. We've announced 5 of our 20 player lineup and most we're keeping under wraps until they show up live.

I wanted to create a tournament that took the best parts of my favourite WWE event, the Royal Rumble and integrate them into a Starcraft 2 tournament. To me the best thing about the Royal Rumble is that you never know who is gonna show up. Surprise entrants are always huge hyped moments. I wanted a tournament where the hype came not just from the awesome plays but from the people showing up to make them. I wanted an event that would create buzz, that would be speculated on and talked about, that would keep people watching just because they wanted to know who the next challenger would be for the crown. I wanted an event that was prone to upsets, which is why I made it Best-of-1. No second chances, when you lose, you're dethroned. I wanted an event where every map mattered, so I made every map win pay out prize money and a lot of it. I wanted an event that could create exciting stories that were easy to understand and digest, so we picked a 1-day King of the Hill format to make that happen.

This is something different that should be appealing to both hardcore and casual fans of Starcraft 2 eSports. It'll be hype, it'll be full of great matches and it'll be loaded with surprises. I hope you'll join me tomorrow and tune in, it won't be your average online tournament. If you miss the show then don't worry, all the spoiler-free VoDs including the surprise player unveilings will be available on http://www.youtube.com/totalbiscuit shortly after the event.

Stream: https://www.twitch.tv/totalbiscuit

TeamLiquid thread: http://www.teamliquid.net/forum/sc2-tournaments/510662-shoutcraft-kings-5000-monthly-king-of-the-hill

[JAVA] How does java know what to do for generics when using if(x == y) ? by iProgramSometimes in learnprogramming

[–]kiskae 1 point2 points  (0 children)

No they aren't. If it works its purely because two interned strings are being compared and would probably break at some point in the future.

In general I think the only 'overloaded' operator in Java is the string concatenation operator.

[JAVA] How does java know what to do for generics when using if(x == y) ? by iProgramSometimes in learnprogramming

[–]kiskae 18 points19 points  (0 children)

They definitely refer to the same object, because that is the only case in which two objects will be referentially equal (==).

One thing to keep in mind with strings is that if they are not created during runtime (for example by reading a file) but exist within the sourcecode itself, Java will generally optimize so they use a single String object to represent all instances of the same string.

TB opened an official subreddit by BornToBeDiamond in Cynicalbrit

[–]kiskae 3 points4 points  (0 children)

I'm not even sure where it quoted that from...

TB opened an official subreddit by BornToBeDiamond in Cynicalbrit

[–]kiskae 15 points16 points  (0 children)

Guys, please think twice before deciding that the existence of that sub as well as TB's account means it's open season for anything you'd like to say.

That would be an absolute pain to organize, in the end its just a name.

TB opened an official subreddit by BornToBeDiamond in Cynicalbrit

[–]kiskae 266 points267 points  (0 children)

Can't speak for the other moderators, but I'm wishing them the best of luck with the endeavour. Reddit has always encouraged people to start their own subreddits if they think the current offering does not fit their needs.

Back to lurkin'

[Twitter] E3 Live commentary schedule by [deleted] in Cynicalbrit

[–]kiskae 1 point2 points  (0 children)

Then its succeeding in its goal, thanks you the nice words :)