November 16th, 2008
My second plugin released in one day :ohhyeahh:, it’s a small one though.. called Post Filters.
I am still working on some more plugins, this one I created out of necessity, I wanted to have my plugin pages skip the frontpage and stick to their relative category.
So why not use a page? Well the links in my navigation bar are generated by the categories I post in.. and pages don’t have categories.. so there.
Anyway, what this plugin does:
Gives you the ability to have posts skip the frontpage and to stick a post to the top of all it’s relative categories.
Hopefully some more people can find a good use for this ;)
Post Filters, skip frontpage, stick to category, sticky, wordpress plugin News, Plugins, Wordpress
November 15th, 2008
Having discovered the “remote files” feature in Komodo Edit I went on a search for methods to access remote projects through Komodo (as oppose to just one or two files).
Using Ubuntu I came to the solution of using SSHFS, it took me a while to find a good tutorial on how to auto-mount using this protocol, but in the end I found a blog by Colin M from The Spark Between on how to auto-mount sshfs on Ubuntu..
Since my wife uses Windows and I don’t feel comfortable giving her SSH access I searched a bit further and found that there is a build-in feature in Windows that will let you mount an FTP server as a network share.
Hope this info can help other people looking for similair solutions
Komodo, Linux, mount ftp, mount ssh, Ubuntu, Windows Troubleshooting, Ubuntu, Windows
November 12th, 2008
If you’ve ever tried posting source code on your blog you probably have noticed that Wordpress has the annoying habbit of stripping out multiple spaces out of your post, god knows why.
Anyway, I was not the only one getting annoyed by this and so a plugin already exists to fix this behaviour, only this plugin will make ugly nbsp’s appear in your post when editing it, to fix this, simply replace line 39 with the following
$text = str_replace(' ',' ',$text); // Allow NBSP's
That’s it, you should now be able to use multiple spaces in your posts.
Wordpress, Wordpress Snippets
November 11th, 2008
Whilst monitoring the #wordpress irc channel on irc.freenode.net I came across a question by “erchik” asking how to add smilies to his widgets.
After some researching I found this to be quite simple, of course there is unfortunately no global way of doing this for all your widgets at once, since every widget has it’s own backend, but it’s quite easy to achieve and is not limited to widgets, you can use it in plugins and templates all the same.
Simply add the following lines to your code right before you are outputting the string that you want to contain smilies
global $wp_smiliessearch, $wp_smiliesreplace;
$content = preg_replace($wp_smiliessearch, $wp_smiliesreplace, $content);
Replace $content with the name of your string containing the content.
Read the rest of this entry »
Snippets, Wordpress, Wordpress Snippets
November 11th, 2008
Having had some issues with the current version of the Pidgin Plugin Pack available from the Ubuntu repositories I decided to give the latest source a try.
I ran into the following error while trying to get do the make
switchspell.c:43:31: error: gtkspell/gtkspell.h: No such file or directory
switchspell.c: In function ‘menu_conv_use_dict_cb’:
switchspell.c:77: error: ‘GtkSpell’ undeclared (first use in this function)
switchspell.c:77: error: (Each undeclared identifier is reported only once
switchspell.c:77: error: for each function it appears in.)
switchspell.c:77: error: ‘spell’ undeclared (first use in this function)
switchspell.c:87: warning: implicit declaration of function ‘gtkspell_get_from_text_view’
switchspell.c:89: warning: implicit declaration of function ‘gtkspell_set_language’
make[2]: *** [switchspell.lo] Error 1
make[2]: Leaving directory `/home/nathan/Downloads/purple-plugin_pack-2.4.0/switchspell’
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/nathan/Downloads/purple-plugin_pack-2.4.0′
make: *** [all] Error 2
The solution is quite simple, make sure you have libgtkspell0 and libgtkspell-dev installed and then execute the following commands
sudo mkdir /usr/include/pidgin/gtkspell
sudo ln -s /usr/include/gtkspell-2.0/gtkspell/gtkspell.h /usr/include/pidgin/gtkspell/gtkspell.h
Now the make should finnish properly (assuming you have all the required deps installed).
Linux, Troubleshooting, Ubuntu
November 10th, 2008
If you’ve ever visited my blog before you’ll see that I’ve made quite a drastic change, the reason for this I just didn’t get around to blogging because I didn’t enjoy it, I wanted something simple, to blog about technology and web development in specific, as that is really the only thing that I feel like sharing with the world.. the rest is personal and for me this does not belong on a blog.
So, keep an eye on my blog, you’ll see loads of snippets, plugins and suggestions coming around, just check the Categories for a preview of what I’m planning to use it for.
If you need to get anything from my old Blog, feel free to access it here. Though note that it might not work properly on all pages.
Edit:
Just thought about my XHTML validation, I totally forgot to walk through it, will do that tomorrow.. so if you read this before then, don’t mind the “valid xhtml” button
News
November 19th, 2008And that’s about it.. it’s another no-fuzz plugin.. does what it needs to do and nothing more.
On another subject there is a new update for Twitter Status that fixed incompatibility with themes that don’t have jquery enabled by default.
Make sure you read the readme.txt as installation instructions have slightly changed.
No Comments » Comment Move, Move Comments, Twitter Status Comment Move, Plugins, Wordpress