Currently Browsing Programming
Rendering to a texture with iOS 5 texture cache api.
There are a couple examples of how to take image input, perhaps from the iPhone camera, or from your own image, fast map those image to an OpenGl texture, and then render them with an OpenGL shader. This post is for those of you who don’t necessarily want to render the image on the screen, [...]
- Share this:
- Share
How to fix that mistake commit you just pushed to your git repository
I’ve already written a time or two how you can use git rebase to change your commit history as you work. Handy handy.. I think everyone should know how to do that. Next up.. what if you pushed a commit and realize it’s not so great. First of all, everyone discourages this of course. The [...]
- Share this:
- Share
Pulling libraries off Android phones
Well, have you ever wanted to pull a bunch of libraries off an Android phone? I bet you wish you could execute the command like this: > adb pull /system/lib/*.so Sorry. A no go. What about this then: > for file in `adb ls /system/lib/`; do adb pull /system/lib/$file; done Well, [...]
- Share this:
- Share
YUI Image Uploader works with YUI 2.8.1
I thought I’d better double check that the image upload still works fine with YUI 2.8.1 If you haven’t read the original YUI Image Uploader page, start there. After that, you can use this page for an example getting the script to work with the latest YUI.
- Share this:
- Share
Debugging Linux Kernel Modules with VirtualBox and KGDB
I found a few different pages with information on debugging a Linux kernel with kgdb. There wasn’t a single source with all the information I needed to get set up and working though. So here is how I set things up on my Linux host machine to debug a target Linux kernel running in a [...]
- Share this:
- Share
ASP.net backend implementation of YUI Image Uploader
Tom from mostynwebsolutions.com has created an ASP YUI Image Uploader backend. Direct Download: YuiExample.zip. The YUI Image Upload posts on this site contain details on implementing the front end and editor if you’re just getting into this. Thanks Tom.
- Share this:
- Share