mqt | 15 years ago | on: The Verizon iPhone 4
mqt's comments
mqt | 15 years ago | on: The Verizon iPhone 4
It's not often that you see two reviews for essentially identical products from the same source. This was a pretty smart move by Apple.
http://techcrunch.com/2011/02/02/verizon-iphone-review/
http://www.nytimes.com/2011/02/03/technology/personaltech/03...
mqt | 15 years ago | on: Demystifying Amazon Prime
mqt | 15 years ago | on: Gift HN: Anybody want a subdomain of ww.com?
mark.ww.com CNAME mark.nirv.net
thanks
mqt | 16 years ago | on: NPR's 404 Page
mqt | 16 years ago | on: Mapping Out Your Web Startup
mqt | 16 years ago | on: World of Goo Pay-What-You-Want Sale Results
- Allan Blomquist (Wii port)
- Paul Hubans (QA and Production associate)
- Maks Verver (Linux port)
http://goofans.com/world-of-goo/about-2d-boymqt | 16 years ago | on: Python vs Clojure
http://gnuemacscolorthemetest.googlecode.com/svn/html/charco...
mqt | 16 years ago | on: Common Bash Pitfalls
mqt | 17 years ago | on: IPhone Dev Team releases 3.0 Jailbreak and more.
curl -s -L http://phobos.apple.com/version | grep Restore | grep '_3.'
Note the beginning of the filename: iPhone1,1_ = 2G
iPhone1,2_ = 3G
iPhone2,1_ = 3G Smqt | 17 years ago | on: Opera Unite reinvents the Web: a Web server on the Web browser
You can use your own domain since Unite listens on port 8840.
mqt | 17 years ago | on: Opera Unite reinvents the Web: a Web server on the Web browser
mqt | 17 years ago | on: Non-google sites send cookie requests through google search
<link rel="prefetch" href="http://example.com">
for links they think you'll visit.http://tr.ashcan.org/2008/12/keeping-tabs-on-googles-confide...
mqt | 17 years ago | on: Non-google sites send cookie requests through google search
mqt | 17 years ago | on: Experiments Bring Internet to Remote African Villages
We don't know what the latency will be until they launch but, theoretically, since they're launching the satellites into Middle Earth Orbit, the signal only has to travel half as far as the current satellites up in Geostationary Orbit. Google is also offering Google Apps and perhaps the caching servers we've heard in recent news to the local ISPs.
mqt | 17 years ago | on: Experiments Bring Internet to Remote African Villages
http://en.wikipedia.org/wiki/O3b_Networks,_Ltd.
http://gigaom.com/2008/09/09/google-invests-in-satellite-bas...
mqt | 17 years ago | on: That Buzzing Sound
On-Topic: Anything that good hackers would find interesting. That includes more than
hacking and startups. If you had to reduce it to a sentence, the answer might be:
anything that gratifies one's intellectual curiosity.
http://ycombinator.com/newsguidelines.htmlmqt | 17 years ago | on: Hello World Executable Sizes in 18 Languages
There are different strategies to create CL applications.
- save an executable image. This will mostly dump the Lisp system and
when you start it up, you have mostly everything back. The size
of the dumped image depends on the size of your Lisp system. SBCL
is already large and does not have any special features to make
it smaller. CLISP for example writes much smaller images than
SBCL. Clozure CL is also smaller. Here also is important with how
much debug information the original Lisp image was created. The
saved image typically will include all that. Corman CL on Windows
compresses the Lisp data to save space.
- deliver an application. That's for example what LispWorks and
Allegro CL can do. They allow functionality and
information (debug info, documentation strings, arglists, source
locations, symbols, caches, ...) to be removed (for example by
treeshaking, or by removing whole functionality groups). The size
of the generated application will depend on what you leave out
and which delivery level you are choosing. Stuff that might not
be needed: compiler, debugger, disassembler, editor, inspector,
REPL, ...
- deliver a static application. I don't know which currently
maintained CL implementation does that. There were several Common
Lisp implementations that generate 'small' and static C code from
Lisp. CLICC, Ibuki's CONS, WCL, Lisp-to-C, ThinLisp were in that
league. They were used for application delivery, where the
application might be really small and does not have any large
runtime or development environment.
There are also some other options. Probably ABCL could generate a
JAR file that could be started with an installed JVM. Often Lisp
compilers can compile code to native code compiled files (fasls)
and even can append several fasls into one. Then one does need
only to ship the fasl file, given that the user has the a Lisp
installed that can load the fasl.
http://www.reddit.com/r/programming/comments/7swzs/hello_wor...mqt | 17 years ago | on: Dean Kamen's 'LED Nation'
http://www.longislandlighthouses.com/ndpics.htm
http://flickr.com/photos/timoreilly/2892279349/
mqt | 17 years ago | on: The case of the 500-mile email
If you're curious about where to start debugging, this blog post gives a good rundown:
http://sysadvent.blogspot.com/2008/12/sysadmin-advent-day-1....