May
16
2009
Éverton Arruda
Soon I’ll be studying Qt, a cross-platform application and UI framework, owned by Nokia.
With Qt, you can write applications once and deploy them across many desktop and embedded operating systems without rewriting the source code.
Here is the source from where I’ll beggin my studies:
http://doc.trolltech.com/4.4/tutorials-tutorial.html
See more about Qt in http://www.qtsoftware.com/
:wq
no comments | tags: HowTo, Qt, Study | posted in Etc, HowTo
Apr
30
2009
Éverton Arruda
Adding a codebox to your wordpress blog is really simple, all you have to do is download the one you want, upload it to wp-content/plugins directory in your blog, then you’ll have to access the admin page of your blog and activate it in the plugins section. Just as any other plugin.
I recommend CodeColorer plugin, the one i use here in my blog. CodeColorer is developed by Dmytro Shteflyuk, you can find it at it’s homepage: http://kpumuk.info/projects/wordpress-plugins/codecolorer. This plugins supports more than 100 languages.
After some customizations, my codebox is like this:
1 2 3 4 5 6 7
| #include <stdio.h>
/* Hello World in C */
int main ()
{
printf("Hello World!\n");
return 0;
} |
If you want to look for other highlight plugins you can find more at http://wordpress.org/extend/plugins/search.php?q=code+highlight.
:wq
2 comments | tags: code highlight, codebox, wordpress plugin | posted in Etc, Planet INdT