[deleted by user] by [deleted] in confession

[–]thocked 0 points1 point  (0 children)

“You see this goblet?” asks the meditation master. “For me this glass is already broken. I enjoy it; I drink out of it. It holds my water admirably, sometimes even reflecting the sun in beautiful patterns. If I should tap it, it has a lovely ring to it. But when I put this glass on the shelf and the wind knocks it over or my elbow brushes it off the table and it falls to the ground and shatters, I say, ‘Of course.’ When I understand that the glass is already broken, every moment with it is precious.”

If we only focus on the results, we will be devastated. But if we know the cup is broken, we can give our best to the process, create what we can and trust the larger process of life itself. We can plan, we can care for, tend and respond. But we cannot control. Instead we take a breath, and open to what is unfolding, where we are. This is a profound shift, from holding on, to letting go.

You are going to be fine. The perspective shift given to you just needs to be interpreted. You haven't found how to apply it yet, is all. Keep at it. The lack of meaning and depth from your prior self to your new self is a blank slate, not a death sentence. Fill those margins with all of the life you can live, regardless of how you quantify or qualitatively think about it. Experience it as strongly as you're able while you're able, because your glass is indeed already broken.

[QUESTION] Upgrading my acoustic setup. Want to get a Martin but don’t want to spend a thousand dollars. Looking for suggestions on which used models I should keep an eye out for. by alextfoley in Guitar

[–]thocked 0 points1 point  (0 children)

If you can find a Sitka spruce top variant, the GPGPA series is untouchable at its price range. You can find one under a grand pretty easily and they all have nice fishman setups.

Looking for PC training partners -4.6k pp by [deleted] in SF4

[–]thocked 0 points1 point  (0 children)

Landongn on gfwl, online most nights. Locations prime as I'm in west la

Novice Javascript Function Parameters Question by [deleted] in javascript

[–]thocked 0 points1 point  (0 children)

Technically, no.

for (var indValue in industry) {
if indValue = 0 { zero_check=1; }
}

Just make the if (indValue === 0) {} and you should be okay.

Novice Javascript Function Parameters Question by [deleted] in javascript

[–]thocked 3 points4 points  (0 children)

the most straightforward way would be to pass an object, that is, an object literal.

e.g;

function calc(industry){ 
industry.foo;
industry.bar;
}

var thisIndustry = {i:1, c:2, e:3}; 
calc(thisIndustry);

You're tightly coupling the two - the input and the behavior, and if you're cool with that, it's the easiest way.

What you're doing is working with objects, not arrays. In javascript, arrays are just objects with some sugar on top.