My standing is very simple and clear: I hate Java. I think it's an oversimplified language that takes away power of expression just so that it's accessible to idiots. And more idiots coding means more crappy applications / libraries / designs that I have to live with.
I know how Java started. It's scary to think of it, but I was already able to understand programming things around me. I think the binary-level portability idea is cool, and producing verifiable software is interesting, even though useless until someone solves the halting problem. However, Java apps (think Eclipse) aren't portable across OS versions, and variants, let alone processor types!! And don't get me started on J2ME -- write once, test on every phone model. So what we ended up getting is pretty much the same deployment we had with C++, except the language is idiot-proof at the expense of being much less powerful.
So, I don't think Java should exist. High-performance components should be written in C++, and non-CPU intensive work should be moved to ruby. Of course, this leaves out the poor retards who can't understand either (note that I'm asking for more than the ability to crank out code in a language) . And by God, they should stay out. Software teams will be more productive with fewer people that can actually code.
Ideals aside, I use Java. I use it because I have to, in class projects -- everyone knows Java, so classes ask for Java code in order to avoid having to teach people another language. I also use it because sometimes it's the easiest way to get the job done:
* phones only take user applications in Java form
* the only reasonable way of getting my code running on a smart card is the JavaCard platform
* the quickest way to get coding on Windows is installing Eclipse with its Java tools
When I start coding something, I'm thinking "it'd be really easy to do on ruby if I had this and that". But _this and that_ aren't there yet, and it'd take a lot of time to do them. And, despite my wish to make a contribution to the community, I don't have the time, because it's all supposed to be done yesterday. So all I do is start coding Java, and hope JRuby happens sooner rather than later.
Yay, obvious stuff top to bottom. Why do I bother to write this? I'm in an info-session, and I'm kindof bored.
Monday, October 15, 2007
Thursday, September 27, 2007
Miro: offline Youtube application for Mac
I've been looking for a YouTube front-end application forever, for three reasons:

It does concurrent downloads, and tags the unseen videos. This is convenient because I can get multiple variants of the same video, and see / delete the bad dupes. Unfortunately, it doesn't meet my main request -- no integration with the keyboard or apple remote.
Hope this helps people looking for something similar! Please comment if you find something better.
Happy watching,
Victor
- the browser isn't integrated with my keyboard's Play / Stop buttons and my apple remote
- YouTube history sucks, as it gets wiped every session
- I want to watch all those
illegal music videoswonderful user-generated movies offline

It does concurrent downloads, and tags the unseen videos. This is convenient because I can get multiple variants of the same video, and see / delete the bad dupes. Unfortunately, it doesn't meet my main request -- no integration with the keyboard or apple remote.
Hope this helps people looking for something similar! Please comment if you find something better.
Happy watching,
Victor
Wednesday, September 26, 2007
BSD Sockets in Ruby
I love Ruby. Completely. I don't want to write in anything else. However, meeting with the BSD sockets interface left me with a sour taste. Here's what I learned. Hopefully, you'll find this post and won't waste time if you have to work with Ruby's sockets.
You can send packets with send
The method name is good for consistency, but a horrible choice in general, if you ask me, because it overrides send in Object (used to send a message to an object, same thing as calling a method).
send's parameters are a string representing the data (same encoding as in recv), and a number for flags. The number is NOT optional (messed up choice, in my opinion), so my sockets code always has send data, 0 in it.
send fails oddly
If you're seeeing in `send': symbol string may not contain `\0' (ArgumentError) then your socket is object is null. This happens because nil uses Object's send, so it thinks you're passing it a method name.
pack_sockaddr_in doesn't like localhost
Silly me, I looked the example using www.google.com and I thought I can give pack_sockaddr_in any address. If I give it localhost, I get in `connect': Invalid argument - connect(2) (Errno::EINVAL).
Solution: use 127.0.0.1
Using strings for send / recv is annoying
If I'm using sockets, I'm working at the byte level. Using Fixnum arrays to represent bytes in a packet is a lot more convenient than using strings. Here are snippers for converting between the two formats. (I did Scheme at MIT, so I love map-reduce... I meant, collect-inject).
bytes > string:
string > bytes:
That's about it. Hope this helps someone!
Victor
You can send packets with send
The method name is good for consistency, but a horrible choice in general, if you ask me, because it overrides send in Object (used to send a message to an object, same thing as calling a method).
send's parameters are a string representing the data (same encoding as in recv), and a number for flags. The number is NOT optional (messed up choice, in my opinion), so my sockets code always has send data, 0 in it.
send fails oddly
If you're seeeing in `send': symbol string may not contain `\0' (ArgumentError) then your socket is object is null. This happens because nil uses Object's send, so it thinks you're passing it a method name.
pack_sockaddr_in doesn't like localhost
Silly me, I looked the example using www.google.com and I thought I can give pack_sockaddr_in any address. If I give it localhost, I get in `connect': Invalid argument - connect(2) (Errno::EINVAL).
Solution: use 127.0.0.1
Using strings for send / recv is annoying
If I'm using sockets, I'm working at the byte level. Using Fixnum arrays to represent bytes in a packet is a lot more convenient than using strings. Here are snippers for converting between the two formats. (I did Scheme at MIT, so I love map-reduce... I meant, collect-inject).
bytes > string:
block_string = block.flatten.map { |value| value.chr }.join('')
string > bytes:
block = (0...block_string.length).map { |i| block_string[i] }
That's about it. Hope this helps someone!
Victor
Subscribe to:
Posts (Atom)