Viewing profile — monkeydata
monkeydata
HN member- Joined
- Thu, Jan 17, 2019, 10:10 PM UTC
- HN karma
- 3
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About monkeydata
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #28338850
amavis All email is perl.
-
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 ...
-
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;
-
comment
Comment #27080897
rfc2822
-
comment
Comment #24119691
sql is the language of the gods
-
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
-
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…
-
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.
-
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…
-
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.