zombielifestyle | 14 years ago | on: The MicroPHP Manifesto
zombielifestyle's comments
zombielifestyle | 14 years ago
zombielifestyle | 14 years ago | on: What to Look For in PHP 5.4
edit: at least they're not intended to create "binaries". you can probably mess around with APC and make php look and behave like a compiled language. but you won't gain any notable speed improvements beyond the on the fly caching.
edit2: you can store php projects in a jar like file, caller phar. http://php.net/phar
zombielifestyle | 14 years ago | on: What to Look For in PHP 5.4
zombielifestyle | 14 years ago | on: What to Look For in PHP 5.4
* array? yeah, it's called like that. it could even be named "fridge" or "smartass".
* due to the new release process php BC is guaranteed for non major versions. adaption will be fast.
* thriving ecosystems don't matter, PHP is just one possible piece in the toolchain.
zombielifestyle | 14 years ago | on: What to Look For in PHP 5.4
zombielifestyle | 14 years ago | on: Facebook machine learning technology improves; Redditors alaramed.
until someone provides a POC that states the opposite it's just YOUR data that YOU freely give to fb. no magic behind, just FUD.
responded to top post for karmawhoring. http://news.ycombinator.com/item?id=3377267
zombielifestyle | 14 years ago | on: Facebook machine learning technology improves; Redditors alaramed.
zombielifestyle | 14 years ago | on: Facebook machine learning technology improves; Redditors alaramed.
I've uploaded 4 screenshot-ed landscape (including one building) pics from flicker with absolutely no metadata. at least 2 of them should be very recognizable. the only thing that fb suggested was the single check-in that i had, minimum of 500km off.
i'm pretty sure that there is only minimal (if any) intelligence on image recognition and that they guess locations by information that "leak" from you and your hardware.
zombielifestyle | 14 years ago | on: I know the websites you visited
zombielifestyle | 14 years ago | on: I know the websites you visited
The idea is interesting but, considering that the performance of the client (-box) can affect the results, it doesn't feel very viable.
What about DNS cache probing? Is it possible? I guess it will suffer from similar results but at smaller scale.
zombielifestyle | 14 years ago | on: Carrier IQ Detector is available on the Android Market - find out if you have it
Why? Configuration/Bootstrapping is needed, with simple, small and loosely coupled components even more, because you don't want to tie a some configuration monster to it. But it would indeed turn out to be a simpler configuration, usually a nice little array with few keys bootstraps any simple component nicely. On framework level it can be more DRY. Downside, every "framework" solves bootstrapping and configuration on it's own. Which would me make always feel bad about running multiple frameworks side by side.
For components (objects) configuration we could solve a lot of problems if the php community could agree about an plain array configuration protocol to set them up. At least it would be interesting if it's doable.