Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ruckusing
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
ruckusing
2y ago
Good on you to build a tool to scratch your itch! As another poster highlighted, hosting other people's content is tricky. Its certainly not a business I would rather be in. I bet the management of this SaaS service is going to quickly
2.
▲
by
ruckusing
7y ago
Mind sharing your secret chicken adobo recipe?
3.
▲
by
ruckusing
8y ago
Yeah I'd grab the URL and feed it to curl on the command line to start inspecting the HTTP traffic and start from there.
4.
▲
by
ruckusing
11y ago
Great points. I did have the thought about attending meetups - which is a good approach. My first reaction was just that I dont want people to think I'm leaching off of them - I want to give back (assuming they want what I have to offe
5.
▲
Ask HN: Is there a place for professionals to trade skills
3 points
by
ruckusing
11y ago
|
3 comments
6.
▲
by
ruckusing
12y ago
Another solution is wal-e[1] which handles continuous archiving. It was built by the Heroku guys and as such is battle-tested. I use wal-e myself and its indispensable and easy to use. https://github.com/wal-e/wal-e
7.
▲
by
ruckusing
13y ago
I wish I could +1 this a million times. I develop a Ruby gem for the QB API (Online & Desktop)[1] and I've come to realize their whole API is a mess. I've also worked with the Xero API and its much simpler but still lacks so
8.
▲
by
ruckusing
13y ago
Check out imgix.com
9.
▲
by
ruckusing
13y ago
how does this compare with 0mq?
10.
▲
by
ruckusing
14y ago
Did you look at beanstalk? It has both of the features you're looking for: the ability to set a delay and when a job experiences an error it will be placed in the "buried" queue (which is like your Dead Letter Queue) http://kr.github.com/b
11.
▲
by
ruckusing
14y ago
This looks great but how does it compare to FullCalendar? [1] From what I can see there is zero documentation, an area which FullCalendar excels at. It will be hard to use this plugin without any documentation, certainly in the areas of eve
12.
▲
by
ruckusing
14y ago
I encountered this very issue a few years ago, basically your queue picking up jobs before the database commits. I solved this by actually queuing up my jobs to a thread-local queue and then firing the whole spool at the end of the request
13.
▲
by
ruckusing
14y ago
By traditional I assume you mean the setup where you have an HTTP server which reverse proxies (either doing it itself) or to HAProxy which in turn proxies to the actual Ruby application server (e.g. Mongrel, Unicorn). In the above scenario
14.
▲
by
ruckusing
14y ago
This is a good post all about using PG Schemas and Rails/ActiveRecord. Ideas could be adapted for Django, etc. http://blog.jerodsanto.net/2011/07/building-multi-tenant-rai...
15.
▲
by
ruckusing
14y ago
I love this method and have almost the exact setup. I do the same for JS too. In the footer of every page: $(document).ready(function() { if (V.Views.orders_index) { V.Views.orders_index(); } } Where "V.Views.orders_index
16.
▲
by
ruckusing
14y ago
cache-money is probably the most full-featured and battle-tested (coming from Twitter and now taken over by ngmoco). However its biggest drawback is that its hard-wired to use memcached. It would be great if the actual cache backend was plu
17.
▲
by
ruckusing
14y ago
Thankfully the Heroku guys have open sourced WAL-E which manages all the tedious parts of setting this up and keeping it running. https://github.com/heroku/WAL-E
18.
▲
by
ruckusing
14y ago
Well said. Both of these are spot on and are our main gripes as well.
19.
▲
by
ruckusing
14y ago
Also the MySQL query cache is not very granular, it gets cleared on every write to that table. Thus, we've seen in practice that with it enabled MySQL has poorer performance as its constantly being flushed. The overhead of maintaining it do
20.
▲
by
ruckusing
15y ago
In 1998 "The Atlantic" magazine wrote a great article about the relationship of Big Business and Prisons, known as the "Prison-Industrial Complex"[1]. Its a sobering read and really brings home the fact that incarceration is indeed big busi
21.
▲
by
ruckusing
15y ago
I live in Lower Haight and recently joined our neighborhood block on NextDoor.com [1] A lot of my neighbors have been posting about recent break-ins. There has been a good number of break-ins recently and people are chiming in with historic
22.
▲
by
ruckusing
15y ago
I'd be very interested in purchasing this book. Please keep us updated when its available.
23.
▲
by
ruckusing
15y ago
Navicat is pretty good. http://www.navicat.com/en/products/navicat_pgsql/pgsql_overv...
24.
▲
by
ruckusing
15y ago
Notifo is shutting down: http://blog.notifo.com/notifo
25.
▲
by
ruckusing
15y ago
We have the same setup, use local ephemeral disks on EC2 with Postgres. We never even tried EBS as we just heard too much negative things about it, namely its variance in performance. So our approach is to RAID-10 (4) local volumes together
26.
▲
by
ruckusing
15y ago
Uber should consider implementing an app feature where I can enter my destination address and it calculates the price of that route AT THAT moment: "If you were to book a car now it would be $X" not just "hey its 6.25x". The UI is terrible.
27.
▲
by
ruckusing
15y ago
This book is fantastic.
28.
▲
by
ruckusing
15y ago
I've noticed that using Passenger Standalone is faster than webrick / mongrel in dev mode using Asset Pipeline. Give it a shot.
29.
▲
by
ruckusing
15y ago
I built this gem for ActiveRecord hstore serialization. Uses ActiveRecord 3.1+ custom serializer hooks. https://github.com/ruckus/active_record_hstore_serializer
30.
▲
by
ruckusing
15y ago
Surprising that SQL Server beats out Postgres, especially considering these are developers in companies <100 people.
More ›