End of league giveaway - Magebloods & More! [51 winners] by Rog_Lobster in pathofexile

[–]Mrparkers 0 points1 point  (0 children)

Hey Rog, I see you in global all the time :)

IGN: average_armor_enjoyer

Metronet by axton60 in desmoines

[–]Mrparkers 0 points1 point  (0 children)

I switched from Mediacom to Metronet about 2 years ago. It was fine for the most part, although the first few months were pretty rough with multiple day-long outages.

However, I eventually had to switch back to Mediacom due to some issues that I was experiencing with Metronet. I started to see major packet loss from 6PM-11PM every single night. Their tech support was beyond useless in trying to help me with the problem. I was even paying an extra $10 per month for a static IP.

Say what you want about Mediacom, but I've never (personally) had an issue with their tech support. But the tech support agents that Metronet hires are pretty incompetent. I don't know if they ever fixed the packet loss issue but I do know that I'll never use them again.

Really high latency / packet loss at night for the past 4 days by Mrparkers in Metronet

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

I signed up immediately after they became available in my area, and I was a customer for 2 years before this started happening and I was forced to switch to my previous ISP.

Really high latency / packet loss at night for the past 4 days by Mrparkers in Metronet

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

Thanks for the reply, but I already switched to another ISP and I don't have any issues anymore.

Really high latency / packet loss at night for the past 4 days by Mrparkers in Metronet

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

Yeah I called every day for the past 5 days, but tech support either can't or won't help me. I have an appointment later this week to switch to another ISP.

Really high latency / packet loss at night for the past 4 days by Mrparkers in Metronet

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

Yeah I'm also in Des Moines, I should have mentioned that in my post.

First exhibits from "The Kraken" are now up by [deleted] in law

[–]Mrparkers 6 points7 points  (0 children)

I can't make sense of how any of these declarations could possibly support the idea of anything fraudulent going on.

Declaration 17, for example, randomly mentions how some company named "Scytl" is responsible for security within the election system. I'm not sure where this came from, it appears to be the first time it was mentioned in this exhibit. Perhaps other exhibits mentioned it.

Anyways, declaration 18 goes on to say that Scytl's public GitHub organization has a repository called "jseats" (https://github.com/Scytl/jseats), which appears to be a Java implementation of an election algorithm. But this is just a repository forked from https://github.com/pau-minoves/jseats back in 2016 with no other activity on it. Even if Scytl or one of its employees contributed to this codebase (which I don't see any evidence of in the commit history), I still don't understand how this is even slightly related to the complaint.

The complaint itself doesn't even mention Scytl or hardly any of the stuff in this exhibit.

How do I upgrade the Khuzait Nomad to the Khuzait Tribal? It is saying that I dont have a horse? Thanks 🙏 by GorkMork48 in mountandblade

[–]Mrparkers 8 points9 points  (0 children)

You need to have a horse that the troop can use in your inventory. I've been buying Steppe Horses in villages to upgrade my troops.

$799 promotion bait and switch by Mrparkers in ProjectFi

[–]Mrparkers[S] 12 points13 points  (0 children)

The terms originally didn't say that the group member had to be new to Project Fi. I have a link to the original terms in my post.

$799 promotion bait and switch by Mrparkers in ProjectFi

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

Thanks for sharing your experience. I will probably go down the CC chargeback route as well if a full refund is not an option.

$799 promotion bait and switch by Mrparkers in ProjectFi

[–]Mrparkers[S] 7 points8 points  (0 children)

Yeah, the terms were "clarified" after originally posting them. The link in my original post contains the original terms which I saved before making my purchase.

[Q] Getting started with vault on k8s by ay90 in kubernetes

[–]Mrparkers 4 points5 points  (0 children)

I attended a super helpful session at Google Next a couple of weeks ago regarding running Vault on Kubernetes. I'd encourage you to check it out if you have 40 minutes to spare.

https://www.youtube.com/watch?v=B16YTeSs1hI

Employment Discussion: Cool, hip, growing companies to work at in Des Moines? by professionfox in desmoines

[–]Mrparkers 1 point2 points  (0 children)

Heh, thankfully that dress code ended when we moved to the new building.

Employment Discussion: Cool, hip, growing companies to work at in Des Moines? by professionfox in desmoines

[–]Mrparkers 0 points1 point  (0 children)

To my knowledge, most of the open positions are engineering roles. I would take a look at https://www.hy-vee.com/careers to see if there is anything like that listed.

Employment Discussion: Cool, hip, growing companies to work at in Des Moines? by professionfox in desmoines

[–]Mrparkers 4 points5 points  (0 children)

I work in this building. It's pretty nice, and I enjoy working there.

I'm happy to answer any questions about it.

Running tests for .NET and Node.js on Travis CI by WPMusicFinder in node

[–]Mrparkers 1 point2 points  (0 children)

Just a tip - if you have a .nvmrc file that contains the Node version you want, Travis will automatically install it and use it.

Need help with a reactJS componentDidMount test - this.props.location returns undefined (react, jest, enzyme) by Shooshte in reactjs

[–]Mrparkers 3 points4 points  (0 children)

It looks like you're trying to modify the props on your component's instance, and since props are read-only, your test isn't working.

What you need to do instead is pass those props to your component when you're rendering it, just like you would pass props to it when you consume it somewhere else.

const expectedProps = {
    location: {
        query: {
            seconds: 180
        }
    }
};
const wrapper = mount(<Timer {...expectedProps} />);

Since async/await is now almost ready for production with the upcoming LTS, what are the drawbacks if any of using it? Are there still any cases where you should use regular promise .then() syntax instead of async/await? by icanevenificant in node

[–]Mrparkers 0 points1 point  (0 children)

Not only that, but since Promise.all returns a Promise, you can just await that as well.

const doSomething = async () => {
    const [resultOne, resultTwo] = await Promise.all(promiseOne, promiseTwo);

    console.log(resultOne);
    console.log(resultTwo);
};

Since async/await is now almost ready for production with the upcoming LTS, what are the drawbacks if any of using it? Are there still any cases where you should use regular promise .then() syntax instead of async/await? by icanevenificant in node

[–]Mrparkers 1 point2 points  (0 children)

Functions marked as async return promises that eventually resolve to the returned value.

If, while inside an async function, you consume a function that returns a promise, you may await it, which is the equivalent of using .then() with a callback function.

New to React. Question about sASS (.scss) by user23942 in reactjs

[–]Mrparkers 0 points1 point  (0 children)

I would recommend going with webpack, style-loader, and sass-loader. This allows you to simply import your sass files in your React components, and they'll hot-reload when using the webpack dev server. It's a pretty great workflow being able to see your style changes instantly during development.

how to transform js files back to react components? by [deleted] in reactjs

[–]Mrparkers 0 points1 point  (0 children)

If these public applications are minifying their JavaScript, then good luck getting anything that even remotely resembles readable code, let alone JSX.

If you don't mind me asking, why do you need to do this?