Waaai

I’ll be missing from intertubes for a week starting tomorrow afternoon (or later). Will return at July 5 ๐Ÿ˜ฎ

Muahahahahaaaaa

This one is damn fail.

I don’t know, there’re only TWO ‘widescreen’ version of this in Tokyo Toshokan (using keyword ‘ikkitousen’). And I suspect the other one’s uploader is the same as this one. The rest are 4:3 (at least the ones that have resolution information in the filename).

and this one’s correct resolution should be 4:3 or 960×720 or sth like that

what’s more, it’s 30fps (PAL?)

LAWL.

Daily craps

  • LOL U-U-Uma Uma. Not good for health.
  • Noizi Itou drew the cover.
  • LAWL 22MB PNG. Perhaps I should mirror moe.imouto/noizi_ito…
  • a manga with nijikon main character. Recommended. LOL.
  • wat.
  • Danbooru 1.14.0 has released. I still wonder what “Final tagged version” means. And I think I’ll use tagged ones instead of trunk from now on. Why? Just because. ๐Ÿ˜›
  • ^– actually, it means less maintenance.
  • With that, I’ll also stop using -current for animu server o.o
  • Not before 4.4 released though – which means I’ll have to struggle with -current until November – or until I switch to NetBSD. The reason is simple: Danbooru requires PostgreSQL 8.3 which only available as package on -current (I forced to manually compile before using -current). – Or maybe until I switch to Shimmie (which sucks).

wait wat

$199 for an iPhone?!

3G, 8 GB of storage, multi-touch screen, Apple, thin, Safari, Wi-Fi, 3.5mm audio jack.

Good.

with about same price I got 1 GB of storage and keypad. Thank god it’s thin too (and perhaps still thinner than iPhone).

Ha.

LOL Mission-E

I just realized that there’s this animu titled “Mission-E” that’s going to be broadcasted this summer.

Sounds familiar, I checked on wikipedia and found that it really is what I thought o_O

Yea, it’s a sequel to Code-E (lol obvious).

I think I need to finish watching the first season after all…

about:code-e

Chinami Ebihara is a highschool student who emits electromagnetic waves when her emotions run wild. The waves affects electronics such as cell phones, televisions, and computers. Her ability forces her family to move from one location to another. In the year 2017, the Ebihara family moves yet again. At school, a boy named Kotaro Kannagi notices her ability and asks if he can study her. Sonomi Kujo, the daughter of a wealthy family who has loved Kotaro since they were very young reacts with jealousy to his interest, while Yuma Saihashi, a miko with powers of her own tries to guide and warn her. Soon, two foreigners arrive to spy on her.

Source: Wikipedia

FreeBSD: 0, NetBSD: 1, OpenBSD: 1

Sil3112 (SiliconImage SATALink RAID PCI Card) is not properly supported by FreeBSD. The installer halted successfully on all my three attempt at installing it. (First one even stopped when formatting – said that it can’t find the hard disk drive LOL).

OTOH, NetBSD and OpenBSD can use that piece of hardware just fine albeit the claim of the card as “crappy” on certain mailing lists.

Pure-FTPd

WTF. Pure-FTPd uses WAY TOO HIGH processor cycles. <_<

The server’s CPU usage gone like 90% just for pure-ftpd processes. So I decided to uninstall it and replace with vsftpd… and the CPU usage is now topped at 20% on vsftpd.

Conclusion: Pure-FTPd sucks (or perhaps it’s my system’s configuration. Whatever, lol).

PS: <3 Chihiro.

nginx/php 404 proper handler

If you find “No file specified” error message disturbing (as I did), here’s the configuration to remove it!

location ~ .php$ {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:55555;
fastcgi_index index.php;
fastcgi_paramย  SCRIPT_FILENAMEย ย ย  $request_filename;
}

Don’t use `if (-f $request_filename)` – it won’t work and if is evil. Also the `try_files` will ensure that the file actually exists – effectively disabling possible vulnerability with public file upload on certain conditions.

_Last update 2011-07-10 20:16: working version, markdown-fied_

nginx links

Here are the links I find useful:

* [Why nginx](http://hostingfu.com/article/nginx-vs-lighttpd-for-a-small-vps)
* [WordPress with nginx](http://elasticdog.com/2008/02/howto-install-wordpress-on-nginx/)

Note that the latter link should not be followed anymore.

_Last update 2011-07-10 20:24: markdown-fied_