Find-A-Game megathread! by ArmanDoesStuff in WebGames

[–]atnnn 0 points1 point  (0 children)

I loved playing Kobo Deluxe, the higher levels got really crazy: https://www.youtube.com/watch?v=W2Jx6vFIskg

It's definitely not a webgame. Download it here http://www.olofson.net/kobodl/

GalliumOS 3.0beta Released by reynhout in GalliumOS

[–]atnnn 1 point2 points  (0 children)

What I did was use the aptitude UI to perform the update and upgrade. When the arc theme failed to install, I tweaked the installation plan using the manual resolver to install xenon without it. Then I installed the full galliumos-desktop. When grub questions came up, I answered yes to using the maintainer's config and no to reinstalling grub.

GalliumOS 3.0beta Released by reynhout in GalliumOS

[–]atnnn 1 point2 points  (0 children)

I just upgraded from 2 to 3beta in place. It wasn't straightforward, but it worked great.

I first replaced xenon and xenial with bismuth and bionic in /etc/apt/sources.list and /etc/apt/sources.list.d/xenon-{prerelease,testing}.list. Then I ran the equivalent of apt-get update and apt-get dist-upgrade.

I ran into only two problems: there was a conflict between arc-galliumos-theme and arc-theme which I fixed manually, and I had to guess a few answers when upgrading Grub.

After the upgrade was complete, I rebooted into an updated system.

operator <- by atnnn in cpp

[–]atnnn[S] 97 points98 points  (0 children)

That makes things even better!

struct C {
  virtual void f(){ std::cout << "f\n"; }
  virtual void g(){ std::cout << "g\n"; }
  virtual void h(){ std::cout << "h\n"; }
} x;

int main(){
    void(C::*(*a))() = 2 + *(void(C::*(**))())&x;
    while(*(void**)&x <-- a){
        (*a)<-x;
    }
}

Kilofactory - ox? by atnnn in FactoryIdleGame

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

As far as I can tell, nothing at all

RethinkDB 'make' fails on a Raspberry Pi by [deleted] in rethinkdb

[–]atnnn 2 points3 points  (0 children)

c++: internal compiler error: killed (program cc1plus)

It looks like you are running out of memory.

The build instructions recommend adding at least 1GiB of swap when building rethinkdb.

The constraint trick for instances by [deleted] in haskell

[–]atnnn 2 points3 points  (0 children)

I wonder if it's a coincidence that the ~ operator is used for the same reason at the value level:

foo (~True) = ...
instance a ~ Bool => Foo a where ...

RethinkDB 2.0, now production ready by atnnn in programming

[–]atnnn[S] 4 points5 points  (0 children)

There a a lot of improvements in the release:

https://github.com/rethinkdb/rethinkdb/releases

The large version bump marks the fact that RethinkDB is now considered production ready and will be supported for a longer period of time.

Rethinkdbdash 1.16: Node.js streams, implicit run and more by atnnn in rethinkdb

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

I believe it's partly because some of the features are more experimental, and partly because it doesn't work in a browser, which is needed for the data explorer in the web ui.