HN user

nopal

913 karma
Posts30
Comments281
View on HN
arstechnica.com 2y ago

New material provides clean water and electricity using nothing but the Sun

nopal
9pts1
medium.com 9y ago

Flexport: Building Accurate Shipment Timelines: A Sorted Affair

nopal
2pts0
phys.org 11y ago

Hacking Gmail with 92 percent success

nopal
2pts0
news.ycombinator.com 12y ago

Ask HN: ISPs with alternative business models

nopal
2pts3
news.ycombinator.com 12y ago

Ask HN: How does Google measure programmer productivity?

nopal
15pts6
news.ycombinator.com 13y ago

Show HN: My 2 evening project - Twitter Playback

nopal
29pts18
news.ycombinator.com 13y ago

Ask HN: Why do companies not pay market when promoting from within?

nopal
8pts4
news.ycombinator.com 13y ago

I think Apple deleted a HTML page and messed up WiFi

nopal
3pts2
www.awesomize.com 14y ago

SmugMug releases Camera Awesome

nopal
1pts0
weblogs.asp.net 14y ago

ASP.NET MVC 4 Beta (feature list and video)

nopal
2pts0
news.ycombinator.com 14y ago

Ask HN: Interested in buying my site?

nopal
9pts4
news.ycombinator.com 14y ago

Ask HN: What will Code Year cover?

nopal
3pts2
www.certician.com 14y ago

Show HN: My first startup - SSL certificate monitoring/alerts

nopal
2pts3
news.ycombinator.com 15y ago

Ask HN: Niche app customer acquisition?

nopal
1pts0
news.ycombinator.com 15y ago

Show HN: My new service - Certician, a tool for monitoring your SSL certificates

nopal
7pts8
news.ycombinator.com 15y ago

Ask HN: Starting up on AWS?

nopal
2pts5
www.creativeapplications.net 15y ago

MIT Media Lab identity - 480,000 logos created in Processing

nopal
2pts2
uncard.me 15y ago

Uncard.me: mobile HTML5 app for sharing contact info on the go

nopal
2pts0
news.ycombinator.com 15y ago

Ajax URLs and breaking the back button

nopal
5pts4
www.sophiestication.com 15y ago

App dev defies letter of license agreement, angers users by going AppStore-only

nopal
2pts4
www.ngenworks.com 15y ago

NGen Express: Paring quality designers with simple/low budget projects

nopal
1pts1
news.ycombinator.com 15y ago

Ask HN: A service to monitor SSL expiration?

nopal
2pts2
news.ycombinator.com 16y ago

Ask HN: Require governments to open source their code?

nopal
2pts2
news.ycombinator.com 16y ago

Ask HN: Dumbing down the Web with frameworks and abstractions

nopal
7pts2
news.ycombinator.com 16y ago

High schoolers, advanced placement and Java

nopal
10pts11
news.ycombinator.com 16y ago

Ask HN: Financial data and rounding

nopal
4pts1
news.ycombinator.com 16y ago

Ask HN: What do you use for personal, offsite backup?

nopal
19pts37
xval.codeplex.com 17y ago

XVal - Framework for ASP.NET MVC produces JS validation from server-side rules

nopal
2pts0
nyquistrate.com 17y ago

Using generic delegates in C# to create reusable methods

nopal
1pts0
www.howmuchdoyoumake.net 18y ago

User-contributed job info database. Help fill it up for your next job hunt.

nopal
2pts0

That's a great answer, and it's encouraging.

Yes, I'm talking about the US. Louisville, Ky., to be specific.

I haven't been blown away by what I've read in the RFI responses, but, then again, they're pretty high-level. http://www.louisvilleky.gov/economicdevelopment/OfficeofInno...

The city does seem to be doing what it can to encourage and help providers, but I don't think they are willing to invest capital. Not sure whether or not that is a dealbreaker.

I'm not sure that same == fair.

If a worker is going to work remotely, is it a better evaluation of her skill to have her do her coding test remotely or have her do it in the office? Likewise, is it fair to ask a potential remote worker to take on an endeavor that's much more cumbersome than it would be for an in-office worker.

The other part of the argument is that the hiring company may be affecting its ability to evaluate a candidate by subjecting him to a situation that's pretty different from the job's reality. Ostensibly, the point of having someone work out of the office is to see how well he'll do if he gets the job, but in the case of a remote worker, this may not be a good indicator.

I think all of this is highly debatable, and there's probably no right answer, but there is lots of food for thought!

I think your twisting his words about C-level executives. The point of that section was the value of time, and was using his experience with executives to illustrate that point, not to insinuate that he deserves to bypass lower-level employees.

I really wish the mother would have contacted the teacher, even if her daughter had decided "to plow through."

I'd like to give the teacher the benefit of the doubt and assume that he didn't knowingly let a student endure a semester of harassment. He probably didn't see or recognize the issue.

Open communication from the mother could have helped the teacher recognize the problem and deal with it.

I'm genuinely curious. Core premise of the article is that Google is abandoning 20% time because they have these metrics in place and management places so much value in them. If the articles correct, the measurement they're using is having a huge financial and technological impact on one of the most successful software companies around.

Why Ruby rocks 13 years ago

I'm sure it does, but I can write the same class in C# just as easily:

    class Person
    {
        public int Sanity { get; set; }
    
        public Person()
        {
            Sanity = 50;
        }
    }
And to call it:
    var programmer = new Person();
    programmer.Sanity += 1000000;
    Console.WriteLine(programmer.Sanity);
I don't see much difference between Person.new and new Person();.

What are the real ways in which it will knock my socks off? I'm honestly asking. Even though I program C# at work, I'm very interested in the advantages of other languages.

I'm very eager to see how they handle the actual exchange code.

Jekyll and static HTML make a lot of sense for a marketing/informational site (which this appears to be right now), but at some point, they're going to need a dynamic backend (right?). These exchanges will need to aggregate plan info from lots of different insurance carriers and display plans to people based on various bits of user-specific info. Perhaps they can generate static info pages for all of the plans and redirect people to these pages via JavaScript and then pass the actual enrollment off to the insurance companies.

If they have to support enrollment and dynamic content, it will be interesting to see how they do so while adhering to their principles of simplicity.

If they don't, it will be an interesting example of how to embrace simple solutions where possible while preventing scope creep.

Either way, I'm glad to see this type of innovative development happening.

Very useful. It's not a super hard problem to solve, but I did think it provided enough value that companies would be willing to pay for it. SSL is used on the most important pieces of a business' infrastructure, I thought it'd be a simple sell.

I also can't tell if certalert.me checks for hostname mismatches. That was another part of my service, because a misconfiguration is just as fatal as an expired certificate.