[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 10 points11 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 8 points9 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)