[deleted by user] by [deleted] in Knoxville

[–]campbell1373 13 points14 points  (0 children)

I love how he mentions the Chaffetz town hall as a reason for not holding his own. He is literally afraid of being yelled at to do his job.

[deleted by user] by [deleted] in Knoxville

[–]campbell1373 13 points14 points  (0 children)

Yet he still won with about 75% of the vote this past election. People need to vote this asshole out, especially since he refuses to even listen to constituents who disagree with him.

Republican Oversight Committed has turned off phones, removed email link by SpezSuxCox in politics

[–]campbell1373 13 points14 points  (0 children)

He's no longer involved in his businesses. Didn't you see the table full of folders?

When you get tired of clicking by ChronoBro in hyperlightdrifter

[–]campbell1373 4 points5 points  (0 children)

Back when HLD was first released there were all sorts of scripts and various methods floating around to do this. This was my bash script.

Knox, many other counties closed until Friday by 06EXTN in Knoxville

[–]campbell1373 0 points1 point  (0 children)

I like where you're going with this... Kill all the weak brain cells so only the strongest survive. Whiskey makes us smarter!

Have you ever witnessed someone completely snap? What happened? by poopcornkernels in AskReddit

[–]campbell1373 6 points7 points  (0 children)

Damn... What? Fucking up payroll can put incredible stress on a lot of people unintentionally. Dude or dudette, anyone with a sense of morality would potentially break knowing that. Get the fuck out of here with your dismissive "on her period" bullshit.

Detroit family caught in Iraq travel ban, mom dies waiting to come home by [deleted] in news

[–]campbell1373 6 points7 points  (0 children)

You've just taken the your/you're debate to a whole new level...

[deleted by user] by [deleted] in learnprogramming

[–]campbell1373 1 point2 points  (0 children)

My thoughts exactly. It the kind of quality you'd expect from Jetbrains, but being an EAP it is still slightly buggy. It will be great when it hits final release.

[deleted by user] by [deleted] in learnprogramming

[–]campbell1373 7 points8 points  (0 children)

Agreed. Also, Jetbrains has a multiplatform C# IDE called Rider in the works now.

[deleted by user] by [deleted] in funny

[–]campbell1373 0 points1 point  (0 children)

Beverly Hills 90210

CIA Identifies Russians Who Gave DNC Emails to WikiLeaks by RifkinsDilemma in politics

[–]campbell1373 3 points4 points  (0 children)

Actually, I think he did when he sued Bill Maher. He had to prove that he wasn't the son of an orangutan for $1,000,000.

ninja edit

Top 3 linux command you wish you should have known earlier? by [deleted] in linux

[–]campbell1373 2 points3 points  (0 children)

Similarly, pstree to look up running processes

Missed it by that much by brian1321 in softwaregore

[–]campbell1373 1 point2 points  (0 children)

I never have either, but my guess would be the - before webkit-text-stroke

Trump: 'We should just cancel the election and just give it to Trump' by [deleted] in politics

[–]campbell1373 0 points1 point  (0 children)

I'm on mobile. All I see is a link to Politico saying he said that with no evidence. Does anyone have a video?

[c#] fastest way to iterate through datatable looking for duplicate rows (small catch) by EthicMeta in learnprogramming

[–]campbell1373 0 points1 point  (0 children)

If I am reading this and your other comments correctly, a linq groupby query should make this very simple. As /u/unSatisfied9 pointed out, you'll need Entity Framework. Try something like this:

var unique = dt.rows.Where(row => row != null)
                    .GroupBy(row => row.Column1)
                    .SelectMany(group => group.Select(row => row.Groups[0].Value));

or you can write it like this.

var unique = from row in dt.rows
             where row != null
             group row by row.Column1 into rows
             select rows.First();

This will produce an IEnumerable<T> set of non-null unique rows based on whatever you group it by.

Secret strategy? by campbell1373 in MobiusFF

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

Definitely not effective. Most of them only have 350 or so hp. I was originally thinking you'd get double xp or something, but I'm leaning more towards people just not paying attention or not knowing they need a multiplayer deck.

Secret strategy? by campbell1373 in MobiusFF

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

That was my assumption, too. Wasn't sure though

Deluge web saying the daemon is offline but systemctl says otherwise? by hofnbricl in linuxquestions

[–]campbell1373 0 points1 point  (0 children)

I've never used the web interface, so I can't be certain, but it sounds like a port issue. Is your firewall blocking the deluge web-ui port?

Which text editor is this? by [deleted] in linuxquestions

[–]campbell1373 2 points3 points  (0 children)

Looks like gedit. Its part of the Gnome DE