binfalse
First HTML5 experiences
September 4th, 2010Although I have too much to do it’s in the nick of time to try some stuff with HTML5.
You should all have heard about HTML5, next generation of web ;) I still saw a lot of new features, some are still not supported in many browsers but all in all I’m looking forward.
Here I played a little bit with the canvas stuff and created a binary clock:
Wasn’t that difficult, just created an HTML element of type canvas
with enough space in it to draw the clock:
and via JavaScript I draw the clock in it:
After wards just called init ();
, that calls clock();
once a second to draw the clock. Please tell me whether it works in your browser ;)
If anybody is interested, here is the code: html5_clock. If you also want to deal with it, Mozilla has a good tutorial.
I hope this new age of web will delete all the flash trash out there!
Umlauts on English keyboards
September 3rd, 2010Micha is just sitting next to me, writing a new blog post. He’s writing in German with an English keyboard, so he has to encode umlauts like ä with an ä
. I can not watch any longer, here is the trick.
Still blogged about it, you can create such additional keys with Xmodmap. So choose a key, get its key code for example with xbindkeys -k
and create a file $HOME/.Xmodmap
with the following syntax:
XXX
ist the code of your key and YYY
is that what should happen. For example:
That gives you an ä/Ä on the key with code 137 and so on. To let the file take effect just run xmodmap $HOME/.Xmodmap
. Btw xmodmap -pke
will give you the actual running keymap.
So Micha, no need to type to much ;)
Twitter disabled Basic Authentication
September 2nd, 2010Some of you may have recognized that twitter has disabled the so called Basic Authentication. So my previous twitter-tools don’t work anymore. But don’t bury your head in the sand, here are the newer versions.
Basic Authentication means you send your account information (username/password) unencrypted with your query (status update/timeline request/…) to twitter. Of course this method isn’t a nice way, so twitter disabled this method of authentication.
But the new methods of API calls are more complicated (called “OAuthcalypse”) and I really don’t like them. But whoever listens to me?
If you now want to interact with the twitter API, you have to register your tool as new twitter tool. Don’t ask me why, but you have to choose an unique name (all over the twitter world) for your application and get some random strings. For example for a Perl script you need the ones called Consumer key and Consumer secret.
If you want to interact with twitter, you have to do the following:
<li>send the combination of <em>Consumer key</em> and <em>Consumer secret</em> to the server
<li>receive an URL from the server where the user itself can find a pin code (when (s)he is logged into twitter)
<li>send this code to the server again and the user is verified
<li>receive some more authentication information from the server, store it for the next time, so the user don't have to authenticate again
Very annoying method, but there is no alternative method and at least your account is more save against hijacker.
By the way I found a Perl module called Net::Twitter that helps a lot.
Here is my snippet to solve this authentication stuff:
Ok, you see it’s not impossible to solve this problem. And there is another advantage, with these two scripts I don’t have to provide my username/passwort any more.
Here is the script to tweet from command line and this script dumps the actual news to the console.
To use my tools just download them to your machine, rename them as you want and then just run it:
- To tweet something call
tweet-v2.pl
with your status message as argument. - To get latest informations from the people you are following just call
twitstat-v2.pl
with an optional argument defining the maximal number of messages you want to see.
For the first time you’ll see a link where you’ll get your pin (open the link with your browser), after wards the tools will store your credentials in [toolname].credentials
. Just try it, won’t (hopefully) break anything :P
Userinteraction with Perl
August 31st, 2010Til today I scripted the user interactions in Perl by my own, but now I’ve learned there is an easier way to interact with the user.
The old way was something like this:
That does what I want it to do, but if you want more complex operations it’s somewhat difficult to hack it. If you want the user to choose something from a menu or to give you an integer, you have to write lots of code and you have to verify the input by your own.
There is a Perl module called IO::Prompt to simplify this ( aptitude install libio-prompt-perl
). For example to get an integer from the user you can use this part of code:
The function prompt
will print the string and waits for an input. When the user gives an input it will chomp
it and verifies the input by your condition (here it tests whether the input is an integer). If the test fails it prints an error and gives the user a new chance to type a correct value until the conditions are complied. So you can be sure that the returned value is definitely an integer!
Of course you can tell prompt to check for more difficult conditions, something like a regular expression. For example to get a hexadecimal value you can use this:
With -req
this function expects a hash, it’s entries must match to the input or it will print the corresponding key as error message. As values you can pass functions that should return true if the input is correct, or a regular expression that must pattern match or something like this (see IO::Prompt). Here I’m using a regular expression that matches to hexadecimal input and if the user enters a correct input it’s converted to base 10. An example run might look like this:
Even menus are simple to realize. For example:
If you run this program your menu may look like:
The freaks among you will try more complex menus. You are allowed to use hashes in hashes in arrays for your menu and prompt
will lead the user through your options. You should know where to find further information about this :P
Show all tags in WP when creating new post
August 21st, 2010I was annoyed that WordPress by default just shows 45 most used tags on the Add New Post page and found a solution to display all Tags.
After I create a new post in this blog I usually tag it. WordPress provides a very helpful widget that displays the most used tags, but I want to see all tags that I’ve created in the past.
Some research through the net doesn’t bring solutions, so I had to walk through the code on my own. Wasn’t very difficult, it was clear that the tags come with Ajax to the site, and I found the code in wordpress/wp-admin/admin-ajax.php
on line 616 (WordPress 3.0.1) or wordpress/wp-admin/includes/ajax-actions.php
on line 666 (WordPress 3.6, see comments):
That is what you’ll carry by JavaScript. To get more tags just change this line to something like this:
You can also edit wordpress/wp-admin/includes/meta-boxes.php
, original is:
If you change it to:
the link to get the tags will be called All Tags, not Choose from the most used tags.
I hope this could help some of you. With the next WordPress update these changes will be lost, but you should be able to do it again and maybe I’ll blog about it ;)
Update for WordPress 3.6
You need to edit:
wordpress/wp-admin/includes/ajax-actions.php
line 666wordpress/wp-admin/includes/meta-boxes.php
(thanks to Gustavo Barreto)
Update for WordPress 3.8.1
You need to edit:
wordpress/wp-admin/includes/ajax-actions.php
line 691wordpress/wp-admin/includes/meta-boxes.php
line 381
(thanks to August for reminder)
Update for WordPress 3.9.1
You need to edit:
wordpress/wp-admin/includes/ajax-actions.php
line 702wordpress/wp-admin/includes/meta-boxes.php
line 410
Update for WordPress 4.1
You need to edit:
wordpress/wp-admin/includes/ajax-actions.php
line 836wordpress/wp-admin/includes/meta-boxes.php
line 431