Live data from Hacker News

Viewing profile — glimcat

glimcat

HN member
Joined
Fri, Jul 15, 2011, 11:20 PM UTC
HN karma
1,720
Public activity
894 items

About glimcat

No profile information was provided.

Recent public activity

  1. comment
    Comment #8586450

    * Ever notice how people who make claims about why they got banned never provide links to the posts in question? That's because their claims are nearly always false. If users could…

  2. comment
    Comment #8575125

    At a minimum, one could start an American company, which could at some point start a Japanese office (with all the accordant overhead in terms of paperwork and politicking, includi…

  3. comment
    Comment #8570138

    It's easyish to derive to good accuracy from the accelerometer signal alone (which I believe is always available).

  4. comment
    Comment #8532803

    Great example of issues I would probably never catch if I tried to implement all of this in-house. It just wouldn't get that level of attention once it was already working. "Oh, th…

  5. comment
  6. comment
    Comment #8424356

    Archive it and move on with my life. The work is generally entangled per the terms of your contract. If you want to do anything particular with it, the contract needs to cover that…

  7. comment
    Comment #8384800

    Well here's the essential bits in Python. I leave turning this into an actual CLI as an exercise for the interested reader. from requests_oauthlib import OAuth1Session import json …

  8. comment
    Comment #8290064

    Optimizely takes minutes to sign up for - and they're always looking to make that easier, and to make more people aware of the value they provide. In contrast, the expertise to con…

  9. comment
    Comment #8286036

    The fundamental error with trying to fix such marketplaces via another marketplace is that contractors are typically far better off relying on repeat business and some elementary l…

  10. comment
    Comment #8278088

    Exactly. Server-side vs. client-side rendering of HTML is just another optimization choice. Is it more important to shorten the time to display the current request, or to shorten t…

  11. comment
    Comment #8272899

    I do programming like I do algebra. It's a tool I use to solve problems. Mind you, it's a tool I'm very good with, and that I get intrinsic enjoyment from when using it. But I don'…

  12. comment
    Comment #8251826

    I routinely do machine learning and computer vision, and have used a number of languages for them. The main issue, irrespective of language, is that the implementation of your fina…

  13. comment
    Comment #8251006

    The only reason Python should ever be problematically slow is if you're writing bad Python. (Well, almost ever.) What you have to understand is that pythonic Python is largely a ma…

  14. comment
    Comment #8249690

    Python is the best at quite a few things these days, particularly if you need to accommodate projects (or developers) that require top-caliber tools for getting work done in severa…

  15. comment
    Comment #8249387

    "Why an “Unlimited” Plan is Toxic for Your SaaS" -- Josh Pigford, Baremetrics https://baremetrics.io/blog/never-offer-unlimited

  16. comment
    Comment #8237193

    "Okay, how do you determine what portion of revenues are profit?" ( crickets ) Seriously, I've heard this one waaaay too many times. It's right up there with "you'll work for equit…

  17. comment
    Comment #8230835

    Not implicitly, although people are free to use that as a negotiation tactic. If people try to negotiate you down, you negotiate them right back.

  18. comment
    Comment #8205743

    You are probably drastically underestimating the marketability of "can write production-ready JavaScript given sufficient time browsing docs & without copying it directly from Stac…

  19. comment
  20. comment
    Comment #8124264

    People with networks of fake accounts routinely set them up in advance & run simulated activity. This is normally used for e.g. selling fake likes. It's taken as a given that you w…

  21. comment
    Comment #8124175

    Let's just say, it's a fairly trivial exercise if you have access to a botnet.

  22. comment
    Comment #8083653

    Here's an option for organizing a "bunch of scripts" app that might be less intimidating to maintain. foo_script.py from flask import render_template from flask_wtf import Form fro…

  23. comment
    Comment #8083583

    That depends on your resources & priorities. Internal if you have the IT resources & infrastructure for that to be reasonably painless. VPS if you need to access it from multiple p…

  24. comment
    Comment #8083136

    You'd use Flask-WTF for forms. https://flask-wtf.readthedocs.org/en/latest/ It can also handle file uploads. https://flask-wtf.readthedocs.org/en/latest/form.html You'd need to def…

  25. comment
    Comment #8078585

    Set up a lightweight web interface using Flask. When people log in and submit a job, it gets added to an RQ task queue for asynchronous execution. If they need anything back at the…