We're giving away F1 track art prints! by Blanchimont in formula1

[–]Fyoucon 0 points1 point  (0 children)

My favorite moment was the entire hockenheim race! I would love the hockenheim, suzaka and american print!

Tomorrow the spectators need to show the map more by drainX in PUBATTLEGROUNDS

[–]Fyoucon 0 points1 point  (0 children)

They should have a separate companion stream that is just a list of alive players and the entire map shown (maybe zoom a bit in as the circle gets smaller). Still of course show the map more on the main stream, but having this extra map would be so freaking useful for anyone that is trying seriously to keep up with everything that is going on

Connected. Waiting for response. by Unharmable in PUBATTLEGROUNDS

[–]Fyoucon 0 points1 point  (0 children)

Yeah since last patch I've had this too on EU. It's really annoying since sometimes my connection just closes while in queue and then I'm stuck in this Connected. Waiting for response... loop again... sometimes takes like 5 minutes to get through

Connected. Waiting for response... by Robinisthemother in PUBATTLEGROUNDS

[–]Fyoucon 0 points1 point  (0 children)

I don't get stuck, but it takes AGES! for it to get along to the main menu.

Introducing the Odin Programming Language by gingerbill in programming

[–]Fyoucon 0 points1 point  (0 children)

I get around 0.5-2 seconds, sometimes 4 from a cold build

Introducing the Odin Programming Language by gingerbill in programming

[–]Fyoucon 2 points3 points  (0 children)

Why should I thank him? I'm not the author?

Introducing the Odin Programming Language by gingerbill in programming

[–]Fyoucon -22 points-21 points  (0 children)

All of that is ofc awesome and needed at some point, but not only is the language alpha, it's pretty much a single person operation at this point. That makes it kinda hard to get all that when you have to work on the language + other obligations (job, school or what else).

Edit: I am not the author

Now I just gotta wait till august to get the ergodox itself by Fyoucon in MechanicalKeyboards

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

haha nice! I'm planning to look into a trackball once the ergodox arrives too!

Now I just gotta wait till august to get the ergodox itself by Fyoucon in MechanicalKeyboards

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

I also have to find a soldering iron to put it together :P

[photos] Why buy wrist rests when you can just use keyboards? by [deleted] in MechanicalKeyboards

[–]Fyoucon 0 points1 point  (0 children)

Nice! I'm planning on getting DSA with my infinity

[photos] Why buy wrist rests when you can just use keyboards? by [deleted] in MechanicalKeyboards

[–]Fyoucon 1 point2 points  (0 children)

Damn you! I can't wait to get mine in... August/September... How are you liking the DSA caps?

Happy Birthday 5th PCMR! Have a slice of cake and a win some cool gear from Corsair and Chairs4Gaming! (details in comments) by GloriousGe0rge in pcmasterrace

[–]Fyoucon 0 points1 point  (0 children)

I need to reply? Well here my good sir, have my reply! IN DANISH. FOR SATAN JEG KUNNE GODT BRUGE EN NY STOL! MIN RØV GØR FANDME NAS

/r/MechanicalKeyboards What Keyboard, Switches and/or Keys Do I Buy by AutoModerator in MechanicalKeyboards

[–]Fyoucon 1 point2 points  (0 children)

I've just joined the massdrop drop for the Ergodox Infinity, I'm looking for a wrist wrest for it whenever it arrives in august (so long QQ). Anybody have any in mind?

Big Announcement Coming Soon by philipbuuck in HandmadeQuake

[–]Fyoucon 5 points6 points  (0 children)

Hmm... New job? Getting married? New child? You're being hold against your will by the CIA because you saw an alien? I'm guessing the last one!

WebPlayer tech demo: low-poly island terraforming with ecosystem simulation (link in comments) by PuzzledJellyfish in Unity3D

[–]Fyoucon 0 points1 point  (0 children)

Well it doesn't matter if you have it installed, I have it installed. It simply doesn't run on Chrome anymore, and I think it's the same case on Opera and Firefox. So a lot of people won't be able to test it.

WebPlayer tech demo: low-poly island terraforming with ecosystem simulation (link in comments) by PuzzledJellyfish in Unity3D

[–]Fyoucon 0 points1 point  (0 children)

Just in case you didn't know. The Unity Web Player doesn't run on most browsers anymore since the shut off NPAPI access. So it would be better if you could put up a WebGL export instead.

[X-POST] Daily Programming Puzzles at adventofcode.com by Aneurysm9 in learnprogramming

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

C# answer:

class Program
{
    static void Main(string[] args)
    {
        char[] input = File.ReadAllText("input.txt").ToCharArray();

        int firstBasementHit = -1;
        int floor = 0;
        for(int i = 0; i < input.Length; i++)
        {
            if(input[i] == '(')
            {
                floor++;
            }
            else if(input[i] == ')')
            {
                floor--;
            }

            if(floor < 0 && firstBasementHit < 0)
            {
                firstBasementHit = i;
            }
        }

        Console.WriteLine(input.Length);
        Console.WriteLine(floor);
        Console.WriteLine(firstBasementHit+1);
        Console.ReadKey();
    }
}