Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
j-kidd
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
16 ms
·
1.
▲
by
j-kidd
11y ago
Double indentation looks rather ugly though. I like the "K&R" style much better (as shown in comment from bpicolo): def some_descriptive_function_name( one_parameter, another_parameter, ): som
2.
▲
by
j-kidd
12y ago
Chomsky and Superbowl Party: http://www.thebrushback.com/Archives/noamchomsky_full.htm Perfect article for those on HN who follow pro sports ;)
3.
▲
by
j-kidd
12y ago
This shall be a great fit for the NAT/Bastion instance, since the high-availability setup has a few drawbacks: https://aws.amazon.com/articles/2781451301784570
4.
▲
by
j-kidd
12y ago
You shall read this first: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1331150 There was a rather significant change to the kernel ARP caching behavior introduced in early 2013: https:/&#x
5.
▲
by
j-kidd
12y ago
Looking at the examples from the official documentation, I agree with your sentiment. Indeed, the conciseness can cause some confusion to people familiar with the existing scoping rules. IMHO, it's a good thing if LATERAL is only added
6.
▲
by
j-kidd
12y ago
Also from http://stackoverflow.com/a/16553503 by the author of SQLAlchemy: > Do you have any estimates on how much time is wasted, compared to the rest of the application? Profiling here is extremely important befor
7.
▲
by
j-kidd
12y ago
I feel rather underwhelmed by the performance improvement touted by adequate records. Perhaps someone from the rails community can do something like this: http://techspot.zzzeek.org/2010/12/12/a-tale-of-three-
8.
▲
by
j-kidd
12y ago
So, with T2 instances and General Purpose volumes, Amazon is now officially in the overselling business. Kudos to them for finding a way to do it fairly. Looks like extra tough time ahead for lowendbox sellers.
9.
▲
by
j-kidd
12y ago
The jmespath library from boto is quite similar to this, and possibly has way more traction. Some differences: - jmespath uses `body.translations[0].language` instead of `body.translations.0.language`, and it can also do `body.translations[
10.
▲
by
j-kidd
13y ago
This is not strictly about Ruby vs Python. Having used Pyramid (+SQLAlchemy) and Rails, I think the former is plenty fast enough such that no user cares about silly optimization, while the latter is the opposite. Loading the Rails environme
11.
▲
by
j-kidd
13y ago
Here: http://trac.imagemagick.org/log/
12.
▲
by
j-kidd
13y ago
In my opinion, the full explanation is too long to be put as code comment, but is just right as the commit message. The best way is to keep the commit message, but add a short comment like: // Hack to trigger layout change i
13.
▲
by
j-kidd
13y ago
Good article, but I think it touches too little about persistence. The trade-off of EBS vs ephemeral storage, for example, is not mentioned at all. Getting your application server up and running is the easiest part in operation, whether you
14.
▲
by
j-kidd
13y ago
Here's my old school setup: Deployment: `easy_install -U` from a local pypi Packaging: `setup.py bdist_egg` and `setup.py bdist_wininst` Dependencies: declare in setup.py, fetch via yolk To test if everything works, just create a blank
15.
▲
by
j-kidd
13y ago
With SQLAlchemy, I have done similar optimizations against mssql by changing a few lines of ORM code. Without SQLAlchemy, I imagine I'd have to change dozens of hand written SQL queries. A good ORM helps you to generate the exact SQL y
16.
▲
by
j-kidd
13y ago
I am pretty sure SQLAlchemy will translate that into: UPDATE purchase SET downloads_left=%(downloads_left)s WHERE purchase.id = %(purchases_id)s; By the way, the posted code has an off-by-one error, as it should do the checking fir
17.
▲
by
j-kidd
13y ago
> I don't know if you've looked at the graph of a Git repo where people merge instead of rebase We use merge instead of rebase. Here's a snapshot of the graph: | | | | | | | | | | | | | | | * | | |
18.
▲
by
j-kidd
13y ago
Outside of US and EU, it is quite difficult to find a reputable and affordable dedicated hosting provider. We use AWS extensively in ap-southeast-1, and their new C3 Compute Optimized instances are actually very competitive in price-perfo
19.
▲
by
j-kidd
13y ago
Try replacing /etc/nginx/fastcgi_params with the one from http://wiki.nginx.org/PHPFcgiExample Also, the packaging is done differently by ubuntu and nginx upstream, so I don't think you can just replace
20.
▲
by
j-kidd
13y ago
It looks like the Multi-AZ setup is using block level replication such as DRBD instead of the built-in replication: > Database updates are made concurrently on the primary and standby resources to prevent replication lag. Makes me feels
21.
▲
by
j-kidd
13y ago
Sriracha made its debut in Malaysia approximately a month ago, being sold for MYR 21.90 (28 oz) and MYR 13.90 (17 oz) by Ben's Independent Grocer in Solaris Dutamas. Pretty nice profit margin there, now that the wholesale price is no l
22.
▲
by
j-kidd
13y ago
> I don't think you can through the postgres/mysql parser in 5ms, much less optimizer, planner, and execution stack. Yeah... except no. I just set `log_min_duration_statement` to 0, and can see that PostgreSQL typically takes l
23.
▲
by
j-kidd
13y ago
I like your comparison of SQL to JavaScript. However, personally I love SQL and always use an ORM. My vow is to never have a line of SQL in my application source code. This is perfectly doable with SQLAlchemy, though not with crappy ORM s
24.
▲
by
j-kidd
13y ago
Perhaps a more advanced camera technology that detects asshole driving behavior instead of speeding? Rich dudes pay to get ahead. Increased revenue for the police department. Improved traffic. Win-win for everyone.
25.
▲
by
j-kidd
13y ago
If HelloMcFly originates from the "open lane", I am indifferent to where he decides to merge into the "right lane", as long as he doesn't force anyone to unnecessary slam their brake. What really piss me off are dri
26.
▲
by
j-kidd
13y ago
The gist I get from the link is that the act of "smoothing the wave" will not benefit the one who performs the act, but it benefits the drivers behind the lane. You can't fix the traffic jam in front of you, but you can do yo
27.
▲
by
j-kidd
13y ago
In httpd-2.4.x (first released in Jan 2012), the event MPM is already the default on Linux: https://httpd.apache.org/docs/2.4/mpm.html#defaults In httpd-2.2.x, however, the default MPM on Linux is prefork, i.e. th
28.
▲
by
j-kidd
13y ago
Apache, while not hipster-compatible, is still very much alive. > I think it may be time Apache itself branches out to a leaner version (with the kitchen sink build available separately) that's as bare-bones as possible with basic f
29.
▲
by
j-kidd
13y ago
I think the last one is actually the most important one. The READ COMMITTED isolation level is a bad default. I have encountered many SQL Server databases that are unknowingly stuck with this default, with "WITH (NOLOCK)" added al
30.
▲
by
j-kidd
13y ago
For general computing purpose (e.g. HTPC + bittorrent + samba), there are always something missing with these small ARM computers. I am holding on to my AMD E-350, especially with the rapid improvement in the radeon driver lately. Gigabyte
More ›