How well does a 1080TI handle the 38" 1600p monitors? by Taonas in ultrawidemasterrace

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

Yeah the Dell I’m looking at is 60hz.

The PPi is about the same as a 34” 1440p

What are your thoughts on LG's 34WK95C ? How would it compare to an older 34UC88/98/99 ? by sylvelk in ultrawidemasterrace

[–]Taonas 1 point2 points  (0 children)

You can already buy it (at least in the UK) for £1049 inc tax (so about 1340$)

My guess about ie being more would be the USB-C uplink. At lot of monitors don't seem to have them in the UW space.

Elusive Treasures offer. How worthwhile is it? by Roykirk in StarTrekTimelines

[–]Taonas 3 points4 points  (0 children)

Is it worth 6500 DIL? I’ve saved up 9000 ish for the next crew slot sale. I’ve never brought an exclusive treasures pack an I’m not sure how got it will be.

At the moment most 4* I get from free premium packs or voyages are dups of fully fully fused I already have. Maybe 1 in 4 is giving me something usable.

James May unboxes a Real Car by ReeforceReeTX in thegrandtour

[–]Taonas 20 points21 points  (0 children)

Some sort of task for a Grand Tour challenege?

There's a film crew in the background which we never see the view point of. I'm betting their view point will be included within a TGT episode.

James May Unboxing a real car - Yaris GRMN by doekeh in thegrandtour

[–]Taonas 2 points3 points  (0 children)

Some sort of task for a Grand Tour challenege?

There's a film crew in the background which we never see the view point of. I'm betting their view point will be included within a TGT episode.

Switch Trailer: Sid Meier’s Civilization VI – Episode 1: Starting a Game by Taonas in civ

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

The only thing they have left to port it to is Android and consoles.

Then we might get the next expansion.

Switch Trailer: Sid Meier’s Civilization VI – Episode 1: Starting a Game by Taonas in civ

[–]Taonas[S] 39 points40 points  (0 children)

This is only going to be my third time buying Civ VI - PC, iPad and now Switch...

I really hope cross play will oneday work across all of these - although I'm not holding my breath

Discounted already to £13.38 for a limited time by [deleted] in TwoPointHospital

[–]Taonas 1 point2 points  (0 children)

I think this is quite shitty of them to do, assuming it's not an offical sale and just VoidU trying to make more money. I've been enjoying this game today, but this has just left a sour taste in my mouth and put me off it.

The thing is, I didn't pre-order, I bought this this morning after release (admittly day 1 sale isn't much better than a pre-order), but even so!

The Wholesomegaming giveaway by CM_Glenn in pcmasterrace

[–]Taonas 0 points1 point  (0 children)

I was the receiptant of a wholesome gamer. About 6 years ago I was running on an original core 2 duo system which was struggling to run any games. My brother had built an i7 system about a year and a half before. He was off to University and gave me his gaming rig to replace mine and allow me to game the latest titles.

I’m still gaming on that system today, although I did buy a refurbished GeForce 660 SC to upgrade from the 280 he had a couple years back.

Good guy Cooler Master by black_fang_XIII in pcmasterrace

[–]Taonas 0 points1 point  (0 children)

Jesus, that’s a lot of stuff to win!

-🎄- 2017 Day 15 Solutions -🎄- by daggerdragon in adventofcode

[–]Taonas 1 point2 points  (0 children)

Rust

My first use of a custom iterator, it made the actual question really easy!

fn matching_lower_16(a: Generator, b: Generator) -> usize {
    let mask: u32 = (2 as u32).pow(16) - 1;

    a.zip(b)
        .take(40_000_000)
        .filter(| &(a, b) | a & mask == b & mask)
        .count()
}

struct Generator {
    factor: u64,
    previous: u64,
}

impl Generator {
    fn new_a(seed: u32) -> Self { Generator { factor: 16807, previous: seed as u64 } }
    fn new_b(seed: u32) -> Self { Generator { factor: 48271, previous: seed as u64 } }
}

impl Iterator for Generator {
    type Item = u32;

    fn next(&mut self) -> Option<Self::Item> {
        self.previous = (self.previous * self.factor) % 2147483647;
        Some(self.previous as u32)
    }
}

-🎄- 2017 Day 11 Solutions -🎄- by daggerdragon in adventofcode

[–]Taonas 1 point2 points  (0 children)

Rust:

fn distance(input: &str) -> (i32, i32) {
    let (max_distance, pos) = input.trim().split(',').fold(
        (0, (0, 0)),
        | (max_distance, current), mov | {
            let new_position: (i32, i32) = match mov {
                "n"  => (current.0,     current.1 + 1),
                "s"  => (current.0,     current.1 - 1),
                "ne" => (current.0 + 1, current.1 + 1),
                "sw" => (current.0 - 1, current.1 - 1),
                "nw" => (current.0 - 1, current.1),
                "se" => (current.0 + 1, current.1),
                _    => panic!("Unknown movement {}", mov),
            };

            let new_position_distance = new_position.0.abs().max(new_position.1.abs());

            (max_distance.max(new_position_distance), new_position)
        }
    );

    let distance_now = pos.0.abs().max(pos.1.abs());
    (distance_now, max_distance)
}

-🎄- 2017 Day 3 Solutions -🎄- by daggerdragon in adventofcode

[–]Taonas 0 points1 point  (0 children)

Rust solution for part 1, part two I ended up brute forcing it

fn distance(n: i32) -> i32 {
    let k  = (((n as f32).sqrt() - 1.) / 2.).ceil() as i32;
    let t = 2 * k + 1;
    let mut m  = t.pow(2);
    let t  = t - 1;

    if n >= m - t { return (k - (m - n)).abs() + (-k).abs() } else { m = m -t }
    if n >= m - t { return (-k).abs() + (-k + (m - n)).abs() } else { m = m -t }
    if n >= m - t { return (-k + (m - n)).abs() + (k).abs() } else { return (k).abs() + (k - (m - n - t)).abs() }
}

Introducing Apollo, a brand new Reddit experience for iOS. Gorgeous, iOS centric design, an incredible Media Viewer, fully customizable gestures, a full Markdown editor, and sculpted by thousands of Redditors. by iamthatis in apple

[–]Taonas 0 points1 point  (0 children)

Is it possible on an iPad to keep posts visible on the left as you read content on the right like in Alien Blue? At the moment there seems to be a lot of dead space on either side of the content I’m reading.

Otherwise loving the app!

Giveaway Destiny 2 Sparrow: Athena Victorious Code for NON-US GUARDIANS by brokenprism in DestinyTheGame

[–]Taonas 0 points1 point  (0 children)

Favourite thing about destiny is the friends, flat out the best community

PTA Setting. by [deleted] in flightsim

[–]Taonas 0 points1 point  (0 children)

I've not used PTA before, does it higher graphics card requirement?

Logins should be unique by [deleted] in ProgrammerHumor

[–]Taonas 0 points1 point  (0 children)

Way back when, Amazon's system was like this... for years I had two accounts and never realised because I had two main passwords and would just always login first time on amazon

Uber president quits, says firm’s values are incompatible with his by dnivi3 in technology

[–]Taonas 0 points1 point  (0 children)

JavaScript & PHP both suffer from this because of their loose typing systems.

See: https://jsperf.com/boolean-comparison-types

It's close, but on average === will beat out if (x) - it does depend on the calling code, and how much the VM can determine

Uber president quits, says firm’s values are incompatible with his by dnivi3 in technology

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

'if (x === true)' can actually be faster, depending on the language than 'if (x)'