Sunday, September 16, 2012
Android backup
http://www.android.gs/how-to-update-the-lg-optimus-one-p500-with-cyanogen-mod-9-firmware/
http://www.android.gs/download-call-logs-backup-restore-app-for-android/
http://www.android.gs/download-sms-backup-restore-app-for-android/
Friday, September 7, 2012
Friday, August 31, 2012
Monday, August 27, 2012
Lock-free, wait-free, hazard pointers
Articles on the topic:
http://www.drdobbs.com/lock-free-data-structures-with-hazard-po/184401890
http://www.research.ibm.com/people/m/michael/ieeetpds-2004.pdf
http://www.ibm.com/developerworks/java/library/j-jtp10264/
Tuesday, August 14, 2012
Useful links
http://graphics.stanford.edu/~seander/bithacks.html
http://fgiesen.wordpress.com/2011/01/17/texture-tiling-and-swizzling/
http://fgiesen.wordpress.com/2009/12/13/decoding-morton-codes/
Useful geometry functions -)
void ProjectPointOnPlane(const Vector3 & p, const Plane & plane, Vector3 & projected)
{
float d = plane.DistanceToPoint(p);
projected = p - d*plane.n;
}
float CalcVectorAngle(const Vector2 & a, const Vector2 & b)
{
float c = atan2f(b.y,b.x) - atan2f(a.y,a.x);
if (c < -PI)
c += 2.f*PI;
else
if (c > PI)
c -= 2.f*PI;
return c;
}
Saturday, July 14, 2012
Thinkpad x220
Bought Lenovo Thinkpad x220 (with core i5, tn-film display, no ips configurations where available for less than $2000), installed xubuntu. Everything works out of the box, had to tune hdd power management:
hdparm -B 254 /dev/sda to extend hdd's live. Also installed hdapsd for active shock protection and tp-smapi-dkms.
Really good device for work and hobby.
Subscribe to:
Posts (Atom)