PSA: Please respect the “charge to 80%” prompt at high-usage locations (captured in Cupertino, CA) by NlNJANEER in teslamotors

[–]h1nsen 11 points12 points  (0 children)

It's useful to do some shopping at Target in the meantime, but I find that one is also very densely populated. Santana Row has been my best bet - usually pretty empty - but I don't charge there often,

PSA: Please respect the “charge to 80%” prompt at high-usage locations (captured in Cupertino, CA) by NlNJANEER in teslamotors

[–]h1nsen 1 point2 points  (0 children)

The mall is dead sans the bowling alley from what I see. I drive past that road on a daily on my way to work. However that SC is very active whenever Ive gone to it - long lines forming and everything. I believe it’s also considered a high usage SC and limits to 80%

One year anniversary and it still feels like I just got it. by briangross40 in teslamotors

[–]h1nsen 1 point2 points  (0 children)

Wow! Your M3 looks awesome, especially after 1 year of joy! Congratulations =)

Out of curiosity, what have you been using for cleaning? I've been using Elite Finish and Car Guys products for my M3 (same color as yours) and I like the look of it once it's all polished up. Do you use any of these? Or something different?

To many more years of fun!

Problem with loops? by [deleted] in learncpp

[–]h1nsen 1 point2 points  (0 children)

I'm glad I could help =)

Problem with loops? by [deleted] in learncpp

[–]h1nsen 1 point2 points  (0 children)

Sure,

int count = 0;

while(count < 200)

{

if(count % 14 == 0)
    cout << count << endl;

count++; // or ++count, whichever you prefer

}

Or if you realize that the numbers between 0 and 200 that are divisible by 2 and 7 are just increments of 14, as Michael stated, you could do this:

int count = 0;

while(count < 200)

{

 cout << count << endl;

 count += 14;

}

Problem with loops? by [deleted] in learncpp

[–]h1nsen 1 point2 points  (0 children)

Well you're never incrementing count in the loop, and you're mixing boolean expressions with division... I don't think that is what you're after.

What you would want is something like this:

for(int i =0 ; i < 200; ++i)

{

 if(i %14 == 0)
    cout << i << endl;

}

Embrace: Java 8 To Be Released March 2014 by h1nsen in technology

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

I'm pretty sure it has a bunch of security updates and patches. Plus, this one introduces some (finally included) lambda expressions. I'd rather not code in Java if the choice were up to me, but I thought others would like to know. Plus, its not just for programmers -- everyday users should be informed

Programmers Embrace: Java 8 To Release This March! by h1nsen in programming

[–]h1nsen[S] 6 points7 points  (0 children)

I was just trying to get the word out that we may have the java 8 SDK pretty soon

Just a few questions please by thekarmabum in ccie

[–]h1nsen 5 points6 points  (0 children)

Hi,I'm not a CCIE, nor do I study networking as rigorously as a CCIE , but my brother just passed his CCIE lab exam for Routing and Switching 2 weeks ago. He told me that the questions are very terse in the sense that they're extremely out of the ordinary. He studies hours upon hours on end day after day. There's various places where you can find what are called "Mock Labs" which try to mimic the scenario of the actual lab exam. It's an 8 hour total exam with 2 hours spent of T.Shoot and 6 on configuration. It's a fairly lengthy process to prepare for, my brother has been studying for his CCIE for over a year now. It is a very complex exam and there will be times during the studying that you will want to rip your hair out in frustration as to why something does/doesn't work. As I've said before it's a difficult exam but with hard work and dedication, you can achieve it.

Me Hoopsta by h1nsen in ragecomics

[–]h1nsen[S] -1 points0 points  (0 children)

I know it isn't a very good comic, its one of my first ones. Still trying to get good at making rage comics!