Live data from Hacker News

Viewing profile — monkeydata

monkeydata

HN member
Joined
Thu, Jan 17, 2019, 10:10 PM UTC
HN karma
3
Public activity
11 items

About monkeydata

No profile information was provided.

Recent public activity

  1. comment
  2. comment
    Comment #28338850

    amavis All email is perl.

  3. comment
    Comment #28173032

    in postgres you can do SELECT a.this, b.that FROM a, b WHERE a.id = b.a_id; it just implies SELECT ... FROM a LEFT JOIN b ON(true) WHERE ...

  4. comment
    Comment #27305421

    it only matters when you quote the column name. SELECT a."This_Col" = b.this_col FROM table a JOIN "Table" b;

  5. comment
  6. comment
    Comment #24119691

    sql is the language of the gods

  7. comment
    Comment #22134432

    two things 1) leading commas in SQL 2) RAISE an EXCEPTION or RETURN --no more `else` statements in code SELECT this , that , something FROM table takes a while to get used to

  8. comment
    Comment #21535194

    yeh, it is quite a bit cheaper. However, heroku is more aggressive in throttling the cheap stuff. I still use it for ci though. AWS simply offers more granular control and a more r…

  9. comment
    Comment #21481930

    cakePHP on EC2 + postgres on RDS is nice. toss in some Redis caching and feed it traffic from a load balancer. you can get a lot done with very little effort.

  10. comment
    Comment #21438124

    to be productive, you have to minimize the need to rtfm, but you should also be cognizant of any new implementations -- a refresher may sometimes provide a better way. I recently s…

  11. comment
    Comment #20213522

    yeh... but, we sorta live and die by the evidence. We can't just blindly assume OP is correct. Thankfully, OP knew that and saved us the hassle or typing it ourselves.