iOS 5 design template for iphone 4s

http://www.teehanlax.com/downloads/ios-5-gui-psd-iphone-4s/

Posted in iPhone | Leave a comment

Casio PX-830

So I finally went ahead and bought a keyboard. It really has everything I want. Small profile, weighted keys, very few features. I can’t wait!
http://www.casio.com/products/Digital_Pianos_%26_Keyboards/Privia_Digital_Pianos/PX-830BK/

I bought the BK model and not the BP model. The difference is in the polished wood. I just couldn’t justify the extra $500 for the polished finish. I hope I don’t regret not spending the extra dough.

Posted in Piano | Tagged , , | Leave a comment

XCode 4 Storyboarding

Here are a couple of storyboarding tutorials:

http://kurrytran.blogspot.com/2011/07/simple-ios-5-tutorial-using-storyboard.html

http://codingandcoffee.wordpress.com/2011/10/12/iphone-tutorial-one-introduction-to-storyboarding/

Here is a nice video presentation:

http://vimeo.com/30242279

Posted in iPhone | Tagged , | Leave a comment

Father of C and Unix died

Dennis Ritchie, dmr, died. He co-created UNIX and C. He was 70 years old.

So, Steve Jobs, Dennis Ritchie, who’s next?

Posted in News | Tagged , | Leave a comment

WYSIWYG Editor for your custom box

If you have a custom text box in the edit post page, and you want to have the built-in editor, it’s quite easy to do. the_editor($content,'id');
?>

Posted in Wordpress | Tagged , , , | Leave a comment

Creating a custom widget

Here is the basic code to use to create a widget.

class myWidget extends WP_Widget {
function myWidget() {
// widget actual processes
parent::WP_Widget(false, $name = ‘myWidget’);
}

function form($instance) {
// outputs the options form on admin
}

function update($new_instance, $old_instance) {
// processes widget options to be saved
}

function widget($args, $instance) {
// outputs the content of the widget
?>
<li> …
</li>
<?
}

}
register_widget(‘myWidget’);

Posted in Wordpress | Tagged , , | Leave a comment