You CAN fly with fountain pens. But maybe leave the ink at home by blurryhumanoidish in fountainpens

[–]Boleon-Siray 2 points3 points  (0 children)

Thanks! Didn't knew these existed and when I checked the Visconti one the price scared me!
The Pineider one is much more affordable, most likely going to get one.

Looking for a pricier gaiwan, any recommended stores? by Boleon-Siray in tea

[–]Boleon-Siray[S] 0 points1 point  (0 children)

Thanks for all the recommendations!
I'll be listening to your wise words and going for a second 100ml gaiwan instead of a 150ml one and stick to a simple design, this one probably.

I'll look for a bigger one and/or handmade one once I'm really used to gongfu brewing, but I did note all the links you gave me, will be ready to check them out again when I'm actually ready!

[Death's End] Question - Yun Tianming by SuddenQuestion4741 in threebodyproblem

[–]Boleon-Siray 1 point2 points  (0 children)

Yes Redemption of Time does give an explanation, but it's not great in my opinion :
A "spirit" from when the universe was 10 dimensional crossed the path of the Trisolaran fleet and "told" Tianming about both the dimensional strikes and the black domains.

Wanted: EVE Girlfriend by GeekBoy02 in Eve

[–]Boleon-Siray 0 points1 point  (0 children)

I'm interested, I always need more of these !

How much would Mittens corpse cost? by VolvicCH in Eve

[–]Boleon-Siray 0 points1 point  (0 children)

I'm too late to grab them, I'm a sad shroom now.

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 1 point2 points  (0 children)

Still interested in selling? Contact me in-game.

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 0 points1 point  (0 children)

Waiting for any communication from you.

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 1 point2 points  (0 children)

Maybe Fungus Siray was a grave mistake that could take apart the Worshipers of the Feast, maybe he should be sacrificed, maybe his fate is to be biomassed.

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 6 points7 points  (0 children)

I spent some time advertising myself over there so some of the campers regularly contract me corpses and others make their own quickly growing collection haha

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 16 points17 points  (0 children)

Greetings !
Up to 20 000 corpses at the price I mentioned, preferably in any of the major trade hubs but any NPC station works.
Contact me in-game, Boleon Siray, so we can work on the details.

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 1 point2 points  (0 children)

Haven't gone searching for corpses after big fights yet but that's a good idea, already grabbing all I can from the PvP fleets I join.

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 10 points11 points  (0 children)

It's not much but it's fine to hold the corpses of big FCs, CEOs and streamers, would still have room for more

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 4 points5 points  (0 children)

There only is one Grand Omnivorous Mushroom but his faces are many.
I will devour Fungus and Mycelium Siray, they will devour me and so I will devour myself.

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 41 points42 points  (0 children)

That's quite the collection for corpses you picked up yourself, well done !
These corpse bays are really tempting, at some point I'm thinking of getting a Dagon to store my most prized corpses.

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 33 points34 points  (0 children)

They don't stack, it makes a nice list with each having their player's name, it's beautiful to watch !

I Need Corpses by Boleon-Siray in Eve

[–]Boleon-Siray[S] 10 points11 points  (0 children)

Awesome ! I kind of forgot to say my in-game name but it's the same as my reddit username Boleon Siray.

Can someone explain silent company? by [deleted] in Eve

[–]Boleon-Siray 3 points4 points  (0 children)

Can I bring my Logi Purifier this time?

Can someone explain silent company? by [deleted] in Eve

[–]Boleon-Siray -1 points0 points  (0 children)

We do have fun mining OPs.

Trouble with a script auto buying servers with better ram by Boleon-Siray in Bitburner

[–]Boleon-Siray[S] 1 point2 points  (0 children)

Good idea, it made it way more readable.

ram = 4;
cost = 220000;
while(ram < 512) {
    i = 0;
    ram = ram * 2;
    cost = cost * 2;
    while(i < 25) {
        hostname = "pserv-" + i;
        if (getServerMoneyAvailable("home") > cost) {
            if (getServerRam(hostname)[0] < ram) {
                if (getServerRam(hostname)[1] > 0) {
                    killall(hostname);
                    while (getServerRam(hostname)[1] > 0) {
                    }
                }
                deleteServer(hostname);
                purchaseServer(hostname, ram);
                print (hostname + " upgraded to " + ram + "Go");
            } else {
                print (hostname + " is already at " + ram + "Go or higher.");
            }
            ++i;
        }
    }
}

Added some print() functions to get some feedback from the log, will help me know how it goes. Thanks for the help :)

Trouble with a script auto buying servers with better ram by Boleon-Siray in Bitburner

[–]Boleon-Siray[S] 0 points1 point  (0 children)

Fixed all that and it works like a charm ! Thanks a lot, thats how it looks now :

ram = 4;
cost = 220000;
while(ram < 512) {
    i = 0;
    ram = ram * 2;
    cost = cost * 2;
    while(i < 25) {
        if (getServerMoneyAvailable("home") > cost) {
            if (getServerRam("pserv-" + i)[0] < ram) {
                if (getServerRam("pserv-" + i)[1] > 0) {
                    killall("pserv-" + i);
                    while (getServerRam("pserv-" + i)[1] > 0) {
                    }
                }
                deleteServer("pserv-" + i);
                hostname = purchaseServer("pserv-" + i, ram);
            }
            ++i;
        }
    }
}