my blog
For Form LLC-12: "California Office where records are Maintained" Jul 28, 2009
As of Tuesday July 28th, 2009 the address is:
1500 11th Street
Sacramento, CA 94244-2300
Since I don't think the State of California is in any sort of financial position to be applying SEO to their information I wanted to provide something I had to google for earlier today.
Why we are on other confusing parts of LLC-12 I guess I can mention that #2 ( File Number ) can be found on your LLC-1 Form Article of Organization.
This was kind of off topic from Software but lets face it. Business is a big part of programming.
ID3v2 -- Now there is an idea! Jul 15, 2009
In my professional life I've recently been dealing with ID3 tags in some weird ways. It really is an interesting specification. What's even more interesting is where it could be headed.
Friends, think back to the days of Napster. This is around the time that ID3v1 tags were becoming a standard. Since then, the official specification has evolved significantly, but it is still the most commonly used technique for tagging music files. MP4 is expected to be the eventual successor to those old MP3s, but interestingly, the iTunes Music Store settled on M4A. (a proprietary Apple-designed format) The closest comparison to iTunes that I've used has been rhythmbox. It is an excellent project... but not quite the experience of iTunes. Personally I love Genius -- it is Pandora for my own personal music. Especially now that Pandora is limiting the time users listen to their service.
Either way the steadily increasing grip of M4A has me worrying about the open-source communities ability to keep with up with Media Software. With the increased number of podcasts and videos being available on iTunes how long before I am Genius'ing Video's on iTunes? iTunes already forces videos on me when I am buying from the iTunes store. ( With Gift Cards -- not my own money -_- ) How long before they are forcing Video/Audio advertisements in that bundle? It has worked pretty well for the movie industry.
Just as great as MP4 is though, it has its proprietary restrictions. The open-source community's answer has been OGG, a free format that anyone can use! "Well," you may ask, "if it is free why isn't anyone using it?" I believe the main reason is that companies can't capitalize on open-source software.
Easy to Remember External IP to ping -- 4.2.2.2 Jul 13, 2009
If you are troubleshooting a home network ( or parent's network, girlfriend's network, etc ) and need to ping an external IP to test DNS you can use 4.2.2.2, which is a free DNS Server hosted by GTE / Verizon. Thanks guys!
Simple Java servlet getInputStream() Jul 01, 2009
If you need a simple proof of concept to display the body of a HTTP Post from a Java Servlet you can use the following code:
while (in.ready()) {
System.out.println(in.readLine());
}
This will print out the body of a request to your standard output. Please note that this is _NOT_ the best way to do this. This is just a quick way to get at a HTTPRequest object's body tag.. Java can be complex but it doesn't need to be.
