Tutorial: FreeBSD Ports

FreeBSD port manual Use pkg_info to list all installed packages: Code: pkg_info pkg_info | less To delete or uninstall packages / apps use pkg_delete command: Code: pkg_delete pkgname pkg_delete screen-4.0.3_6 pkg_delete ‘screen*’ 2nd one will delete package called screen-4.0.3_6 and…

Howto: Fix Battery Life on HTC Aria

When I first got my Aria i was appalled by the battery life… this is how i fixed it Download and use “Advanced Task Killer” app to kill background programs Modify/disable how frequently apps are updating: Menu -> Settings ->…

Howto: Make A pre Tag Wrap

Here’s how to make a pre tag wrap and have a nice grey background: pre {font-family: consolas, courier, monospace; font-size: 8pt; background:#cccccc; white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */…