Live data from Hacker News

My Recent Development Stack: OS X Tools

renownedmedia.com

51–60 of 67 posts

Re: My Recent Development Stack: OS X Tools

#51

Thanks for the heads up on Jason. I work with a lot of web apis and this looks like a great tool for browsing json responses.

I use this Chrome extension to view JSON responses directly in browser https://chrome.google.com/webstore/detail/chklaanhfefbnpoihc...

Re: My Recent Development Stack: OS X Tools

#52
post #16

I agree Sequel Pro is awesome, hands down best MySql client I have used on any platform. I also love Textmate, great text editor. For CSS - CSS Edit can't be beat however the developer is no longer offering it as a standalone app. :(

If all you need is MySQL, the MySQL Workbench is pretty awesome now that it's a bit more stable:

http://mysqlworkbench.org/

Re: My Recent Development Stack: OS X Tools

#54

Earlier quoted context omitted.

Ah, macports is a bit fragile, yes :) I'm pretty happy with homebrew, however (for the most part). Plus writing formulas for homebrew is really easy.

+1 on Homebrew. I had both fink and MacPorts running at one time. Homebrew is more pleasant in every respect (my opinion, of course).

Homebrew is great, but it's quite annoying that one day Apple decides to drop straight gcc from Xcode, making many Formulae uncompilable. Yes, you can install an older Xcode first, or use a 3rd party gcc build. But in Linux distributions such as Debian, they'd just keep 'deprecated' things around for some time

Re: My Recent Development Stack: OS X Tools

#55

Earlier quoted context omitted.

I missed apt-get a teeny tiny bit but Homebrew is amazing. I'm not really into customizing my system all that much either so it wasn't that either. It's Lion that has me a little upset. First off, Lion has replaced GCC with LLVM which for the most part is fine but I was doing some work with Ruby that I started on my Linux machine then when I cloned it on my Mac (which is where I do the majority of my work) I had prob…

AFAIK Xcode still ships with gcc, even though llvm-gcc is default. I regularly use "brew install --use-gcc" for things that don't work with llvm-gcc. I believe rake should allow you to specify a C compiler on the command line. Even if it doesn't, you can temporarily change your CC environment variable to point to the gcc binary instead of llvm-gcc and things will probably work. Probably .

No, it's not included anymore, though you might still have it as a result of upgrading from an older version of Xcode.

More information is in the Homebrew issue:

https://github.com/mxcl/homebrew/issues/6852

Re: My Recent Development Stack: OS X Tools

#56
post #47

Can anyone recommend a good GUI on Mac for Postgres? Sequel Pro is amazing, but it unfortunately only supports MySQL.

There is always pgAdmin ( http://www.pgadmin.org/ ) which is very close to the Postgres core development and thus is always updated to support the latest features of Postgres. It suffers a lot from the has-to-work-on-all-platforms UI design issues though (even though it uses wxWidgets). Personally, I hardly ever use the GUI tool (the exception is explaining really big query plans) because the command line psql client…

$EMPLOYER's databases are behind a firewall, so I've never had access to a GUI tool, and learned to love psql.

When I need to pick apart a query plan, I paste it into http://explain.depesz.com.

Re: My Recent Development Stack: OS X Tools

#57
post #41

Earlier quoted context omitted.

Another great way is via the json ruby gem, which installs a prettifier which can be used from the command line, like this: curl 'http://api.twitter.com/1/statuses/user_timeline.json?screen_name=twitter&include_rts=1 | prettify_json.rb| less

Another way to do it without having to install anything extra: curl " http://api.twitter.com/1/statuses/user_timeline.json?screen_... | python -m json.tool | pbcopy

I use the Chrome extension JsonViewer. It automatically formats the json. Great for api inspection.

Re: My Recent Development Stack: OS X Tools

#59
post #25

Earlier quoted context omitted.

Awww come on, windows isn't that bad, I find VS2008 or 2010 + Kiln to be a pretty good combo.

I can't stand Windows. I don't hate it out of some fanboy fetish as that's not fair. With Linux and Mac is can do pretty much anything without jumping through any hoops. As a web developer you're basically dealing with Linux on the server in most cases and most open source tools are built with Limix in mind as the final destination. Setting up a development environment with just about anything is very consistent and…

I've never felt like I've had to jump through hoops to get things working on Windows, though I have been using it almost exclusively for 10+ years and hosting on it for 3 so maybe I've either tuned in so much that I just get it, or I just don't notice any problems I have because I'm so used to them. I'm aiming to give OSX a go soon.

Re: My Recent Development Stack: OS X Tools

#60
post #16

I agree Sequel Pro is awesome, hands down best MySql client I have used on any platform. I also love Textmate, great text editor. For CSS - CSS Edit can't be beat however the developer is no longer offering it as a standalone app. :(

If anyone's looking for something like Sequel Pro but for SQLite, I recommend Base. Sadly, not free. I only wish I could find a good Mac client for Postgres. pgAdmin III is awful.

Have you tried http://www.navicat.com/en/products/navicat_pgsql/pgsql_detai...

I haven't, but they have a full suite of tools.

Post reply on HN