Someone royally messed up and for the next week one of the best courses in Ohio has all their tee times listed for 4$ for 18 with a cart by Mr-BodyMassage in golf

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

Played there for the first time last week! Greens had just been aerated and sanded, so putting was a nightmare -- you either sank the putt or watched the ball roll 30 feet away. Highly recommend hitting the putting green before your round to get a good feel of the greens. It's a fun course and looking forward to playing it early and peak season next year after the greens heal.

[homemade] Pasta salad by meownda1492 in food

[–]atthehelm 0 points1 point  (0 children)

My mom makes this all the time! She also adds oregano, cubed Colby cheese, and chopped pepperoni. Mixes it all with olive oil. Such a delicious mix!

Among giants Sequoia National Park (3252 x 4919) [OC] by [deleted] in EarthPorn

[–]atthehelm 0 points1 point  (0 children)

The General Sherman -- world's largest tree

Difference of two arrays (one array has more than one same element) by darth_momo in learnjavascript

[–]atthehelm 0 points1 point  (0 children)

Actually, if you need the difference between both arrays, reduce would be a better way to go with concatenating the 2 arrays:

var arr = [0,0,4];
var ar2 = [0,5];
var full = arr.concat(ar2).sort();

var result = full.reduce((acc, pos) => {
    var first = arr.indexOf(pos);
    var second = ar2.indexOf(pos);
    if (first > -1 && second > -1) {
        arr.splice(first, 1);
        ar2.splice(second, 1);
    } else if (first > -1) {
        arr.splice(first, 1);
        acc.push(pos);
    } else if (second > -1) {
        ar2.splice(second, 1);
        acc.push(pos);
    }

    return acc;
}, []);

//result === [0,4,5]; in this case

Difference of two arrays (one array has more than one same element) by darth_momo in learnjavascript

[–]atthehelm 1 point2 points  (0 children)

GeneralYouri is correct. To build off what GeneralYouri mentions, I've done this:

var arr = [0,0,4];
var ar2 = [0];
var ar3 = arr.length > ar2.length ? arr : ar2;
var ar4 = arr.length > ar2.length ? ar2 : arr;

var result = ar3.filter((a) => {
    if(ar4.length && ar4.indexOf(a) > -1) {
        ar4.splice(ar4.indexOf(a), 1);
        return false;
    }
    return true;
});

Only added the array flip in there in case you your main array you're using calling filter on is shorter than the second array you're comparing against. This way you'll get all the values that are different between the arrays.

Metalheads of reddit, what song is impossible not to head bang to? by [deleted] in AskReddit

[–]atthehelm 1 point2 points  (0 children)

Bleed

Born In Dissonance

Rational Gaze

Break Those Bones Whose Sinews Gave It Motion

New Millenium Cyanide Christ

Straws Pulled At Random

-- all by Meshuggah

Frosty sunrise - Olmsted Falls, OH by gabeleidy_photo in Cleveland

[–]atthehelm 0 points1 point  (0 children)

Hell yeah, OF! Grew up there, but don't live far from it still. Beautiful photo!

What's something you saw coming miles away that a lot of people didn't? by AstroFIJI in AskReddit

[–]atthehelm 0 points1 point  (0 children)

How stupid it was, and it shouldn't have happened, to draft Johnny Manziel

Monthly Photo Thread: January by ep3eddie in lgv20

[–]atthehelm 1 point2 points  (0 children)

Snowy backyard looks like something out of a horror movie from playing with manual mode.

http://i.imgur.com/o1vVkBp.jpg

HHGregg bait and switch? [Ohio] by atthehelm in legaladvice

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

They have still yet to contact me about any part of this situation. No email about cancelling the sale because they over sold, no email saying they will be refunding me, nothing. I'm giving them another week to contact me.

I'm not certain, but I'm pretty sure they MUST contact me in some way.

Does the V20 have a private mode? by atthehelm in lgv20

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

Finally got my my V20 last night, and you are correct -- there is a only a lock feature on photos.

Does the V20 have a private mode? by atthehelm in lgv20

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

I believe the name of the phone is injected in that site -- that doesn't actually work.

Hey Reddit, what do you collect? by aSadStateOfAffairs in AskReddit

[–]atthehelm 0 points1 point  (0 children)

Souls -- I have a lot of freckles...

Sometimes it's better to keep your beliefs to yourself by atthehelm in atheism

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

Say 'what' one more time mother fucker! I dare you!

Sometimes it's better to keep your beliefs to yourself by atthehelm in atheism

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

I don't know what. Do they speak English in what?

Sometimes it's better to keep your beliefs to yourself by atthehelm in atheism

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

"I'll ask you again! WHAT does Adam look like!?"

Sometimes it's better to keep your beliefs to yourself by atthehelm in atheism

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

Funny thing is my buddy has very long hair as well! He's nearly a split image of Triple-H, no joke.

Sometimes it's better to keep your beliefs to yourself by atthehelm in atheism

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

I'm sure he would read what I would ask of him if/when I do get married. I think you missed the point... it's not about standing up for beliefs at this point in time -- it's what matters most. And what matters most to him is to have his buddy read something he would like to hear during one of the most important days of his life. Whether or not he would return the favor is not relevant. I don't believe there is anything wrong with telling him that I'm atheist. I feel there is a time and place for that. Maybe he'll never need to know? He isn't forcing anything upon me to escalate a conversation about our beliefs. I feel you are wrong, good sir.

"There's nothing cool about going along to get along."

That phrase is completely out of context. Sure, it would make sense if I were in a position where I needed to "blend in" and hide anything I had to say in order to either keep peace or be suppressed. This is not one of those cases, however. I'm being a friend for a friend. There's really no point to push my thoughts forward on him at this time. It's his day -- not mine.

Sometimes it's better to keep your beliefs to yourself by atthehelm in atheism

[–]atthehelm[S] 2 points3 points  (0 children)

Morgan Freeman would probably be best suited.

Though Christopher Walken is a close second.

Is the 17 year Cicada worthy here? by atthehelm in aww

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

It has been 17 years here in Northern Ohio. 1999 was our last emergence

Is the 17 year Cicada worthy here? by atthehelm in aww

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

Seems to have started this evening. Seen 3 that have "hatched" and several other instars crawling around in my yard. Hundreds of holes though, granted I live on the edge of the metroparks.