Nov
12
2009
0

Facebook iPhone Dev Quits Project Over Apple Tyranny

Facebook iPhone Dev Quits Project Over Apple Tyranny

What a shame! Joe Hewitt was a very skilled iPhone developer and it’s a pity to see him move back to the web because of Apple’s App Store policies.

My decision to stop iPhone development has had everything to do with Apple’s policies. I respect their right to manage their platform however they want, however I am philosophically opposed to the existence of their review process. I am very concerned that they are setting a horrible precedent for other software platforms, and soon gatekeepers will start infesting the lives of every software developer.

The web is still unrestricted and free, and so I am returning to my roots as a web developer. In the long term, I would like to be able to say that I helped to make the web the best mobile platform available, rather than being part of the transition to a world where every developer must go through a middleman to get their software in the hands of users.”

via Techcrunch

Here’s quite an interesting interview with Joe Hewitt from earlier this year at the Mobile Orchard Podcast.

Written by Florian Beer in: development, mac
rel-tag , , , , ,

Sep
11
2009
0

Fix Mac Fusion for Snow Leopard

macfuseI use the really great macFUSE to mount several server directories via SSH on my work computer. One programm that makes this process really easy is Macfusion which offers a menu item and a standalone application to configure your mountpoints and mount/unmount them.

macfusionAfter upgrading to Snow Leopard recently Macfusion & macFUSE stopped working, so I was searching for a solution and luckily found one at Racker Hacker - Fix MacFusion on Snow Leopard.

Now I’m happily developing my PHP projects again in Netbeans with my remote dirs mounted via SSH :)

Written by Florian Beer in: development, mac, server
rel-tag , , , , , , , ,

Dec
23
2008
0

Facebook Connect

This Blog is now Facebook Connect enabled.
If you have a Facebook account, you can click the “Connect with Facebook” button in the comment section to tie your ramblings to your social network profile.
Awesome, isn’t it? :)

Dec
04
2008
0

Colorful make output

This handy piece of code colors errors and warnings in make output.
(put it in your .bash_profile)

make()
{
  pathpat="(/[^/]*)+:[0-9]+”
  ccred=$(echo -e “\033[0;31m"
)
  ccyellow=$(echo -e "\033[0;33m")
  ccend=$(echo -e "\033[0m")
  /usr/bin/make "$@" 2>&1 | sed -E -e "/[Ee]rror[: ]/ s%$pathpat%$ccred&$ccend%g” -e “/[Ww]arning[: ]/ s%$pathpat%$ccyellow&$ccend%g”
  return ${PIPESTATUS[0]}
}

via shawnwilsher.com

An alternative would be to install colormake and use that instead of the normal make command.

Written by Florian Beer in: development, linux, mac
rel-tag , , , , , , , ,

Oct
14
2008
0

Funny developer

I came across this ‘license agreement’ while installing the Pydev extension for Eclipse.
(click for a bigger view)

Written by Florian Beer in: development, fun
rel-tag , , , , ,

Jul
10
2008
1

Metalab Vienna promo video


Metalab Promo from kewagi on Vimeo.

I’ve been following this project from it’s start.
I guess it’s time that I pay them a visit and see for myself what’s happening there, seems to be a really creatively sparking community.

Written by Florian Beer in: development, linux, mac, private, web
rel-tag , ,