An interview with 280 North on Objective-J and Cappuccino
1–10 of 17 posts
Re: An interview with 280 North on Objective-J and Cappuccino
#2I can see a lot more being done in this direction, but I am just in awe in how well this was done so far in the time they had.
Re: An interview with 280 North on Objective-J and Cappuccino
#3This sounds pretty impressive so far ..
Re: An interview with 280 North on Objective-J and Cappuccino
#4Re: An interview with 280 North on Objective-J and Cappuccino
#5Why did you chose to do Objective-J -> JS processing in the browers? For sake of speed, wouldn't it be a good idea to do it server-side and then just serve the JS?
Re: An interview with 280 North on Objective-J and Cappuccino
#6Why did you chose to do Objective-J -> JS processing in the browers? For sake of speed, wouldn't it be a good idea to do it server-side and then just serve the JS?
That said, the nice thing about writing the preprocessor in JavaScript was we can do preprocessing ahead of time on the server, if we need to. However, doing it client-side is not as slow as you would expect.
edit: Ross beat me to it, but we said basically the same thing
Re: An interview with 280 North on Objective-J and Cappuccino
#7Why did you chose to do Objective-J -> JS processing in the browers? For sake of speed, wouldn't it be a good idea to do it server-side and then just serve the JS?
Actually, we use both methods. You can preprocess the code ahead of time if you want, and serve content that way. We do this for our core frameworks (AppKit and Foundation). Most of our application code is not preprocessed though. One of the benefits of being able to run without having to "compile" (which is essentially what having to preprocess ahead of time is) is that you have a much more dynamic development envir…
Re: An interview with 280 North on Objective-J and Cappuccino
#8Does anyone know where I can read more technical details about Objective-J or Cappuccino? This sounds pretty impressive so far ..
Re: An interview with 280 North on Objective-J and Cappuccino
#9Re: An interview with 280 North on Objective-J and Cappuccino
#10I have a question about timelines... how long was Obj-J in development and how long did it take you to develop 280slides? I remember reading that you started in 2005...