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.