Unicode converter

Feb1
  • Share/Bookmark

Difficulty: ★☆☆☆☆

I found a handy unicode converter online. This might become handy when for encoding UTF-8 characters in Javascript/JSON objects. (such as for example the € sign. which becomes: “\u20ac”

http://people.w3.org/rishida/scripts/uniview/conversion.php

Read more...


Unminify (decompress) javascript

Dec20
  • Share/Bookmark

Difficulty: ★☆☆☆☆

Today I needed to edit a minified javascript file.
I came across this tool which can decompress / unminify it for better reading:

http://jsbeautifier.org/

Read more...


eFocus number 1 internet full service company

Dec13
  • Share/Bookmark

Difficulty: ★★★★★

Last week the company I work for: eFocus, became number 1 in the Emerce top 100.
We’re very happy with this notation!


eFocus #1 internet full service company

Read more...


Style sexy submit buttons with CSS

Dec13
  • Share/Bookmark

Difficulty: ★★☆☆☆

It’s nice to style your buttons with CSS. – For anchor tags, this is easy todo, if you use the sliding doors CSS technique.
But it gets nasty when you want to style the submit button, specially if you want the same results in all modern browsers.

What I often see, is in this[......]

Read more...


BttrayCE is not a valid program

Nov28
  • Share/Bookmark

Difficulty: ★☆☆☆☆

This error message popped up, on my HTC Touch Pro 2 device, after installing TomTom 7.
It places new bluetooth dll’s in your device file system.


\Windows\BtSdkCE30.dll
\Windows\BtCoreIf.dll

A simple rename or remove, will solve the issue.
You can access it via your device file e[......]

Read more...


Sync your WM6.5 phone with Google

Nov28
  • Share/Bookmark

Difficulty: ★☆☆☆☆

It’s very easy to sync your Windows Mobile 6.5 mobile device with Google Calendar, Gmail and Gmail Contacts.
However, Google needs to fill in an empty “domain” field. And within WM6.5 the “next” button is disabled,
when the domain field is empty.
I tricked [......]

Read more...


Upgrade firmware on HTC Touch Pro 2. (dummyproof)

Nov28
  • Share/Bookmark

Difficulty: ★★★★★

I have a HTC Touch Pro 2 smartphone. UK Release.
This phone was delivered with Windows Mobile 6.1 (WM6.1).
However already when I bought this phone, WM6.5 was available.
You can update this via the HTC website.
That’s fine.

But this is not what I wanted. Cause the ROM on the HTC w[......]

Read more...


Mash-ups with YQL

Nov7
  • Share/Bookmark
…and why Corizon mashups suck.

Difficulty: ★★☆☆☆
It was because of working with Corizon that I became more interested in creating Mash-ups*.
During the last 2 years, I’ve seen a lot of mash-up tools, From the easy (”Lego-like”) Popfly from Microsoft which is recently discontinued,[......]

Read more...


User roles based Wordpress site

Nov2
  • Share/Bookmark

Difficulty: ★★☆☆☆
For a client of me, I had to create a website, where the frontpage
has a loginbox. Only registered users, can access the full website.
The solution for this in Wordpress is a template based on user roles.
Please review the code below:

<?php
	global $current_user;
	get_currentuserinfo[......]

Read more...


Modify all Wordpress posts for syntax highlighter

Nov1
  • Share/Bookmark

Difficulty: ★★★☆☆
I installed a new syntax highlighter for this blog.
The thing is, with syntax highlighters that they all use their own prefix.
For example my previous one used the tags:

<pre lang="php">echo "this"</pre>

My new highlighter plugin uses this:

[code lang=&qu[......]

Read more...