December 2011
1 post
Fix for Board Messages plugin for MyBB 1.6.5 →
October 2011
1 post
Custom links shortener
I was wondering what’s going to be the best approach to create a my own url shortener only for private usage. It took me 30 minutes to do that and it’s running live now. :)
Few things which are required:
YOURLS,
domain - in my case it’s klis.in,
server matching YOURLS’s requirements
Most of the time I spent waiting until my domain is going to be registered...
September 2011
5 posts
2 tags
jQuery Auto Scaling Menu plugin →
If you want to fit all of navigation’s items to navigation’s width regardless of amount of items this plugin is for you.
Tested on IE7+, Chrome, Safari, Opera and Firefox 4+. It should be working fine on older versions as well.
2 tags
WordPress: list all child pages or siblings →
WordPress: check if a current page has children, if so display them, if not display all pages on the same level as current page.
Umbraco 4.7.1 released →
WordPress: check if current's loop item is a... →
Simple function which allows to check if current loop’s item is a specific custom post type.
Example:
// The loop
if ( is_current_post_type( 'download' ):
// code
else:
// code
endif;
jQTransform →
If you need to create a custom forms’ elements this plugin will suit your needs. :)
May 2011
1 post
jQuery - placeholder →
A simple function which allows you to imitate placeholder attribute in forms. It was made for one of my personal projects.
April 2011
2 posts
JavaScript doesn’t suck. You’re just doing it wrong.
– Douglas Crockford
Hello again!
After over a year when I was trying to publish new posts in English on my previous blog called Outside the Firewall I decided to use one of my unused domains to create again some place in the Internet where I will be able to write about adventures of mine with HTML, CSS, JS and recently XSLT.
Wish me good luck and keep your fingers crossed! :-)
February 2011
5 posts
Goundee →
Coming soon! :)
Computers are like bikinis. They save people a lot of guesswork.
– Sam Ewing
Puzzle
It should be easy: What does the code below render?
Oh, it’s so obvious! Three right aligned buttons.
Thank you ExtJS!
Versions in Mac OS X Lion
Today Apple updated Mac OS X Lion’s preview website and added more information about features which we’ll be able to use. One of them - Versions - is really useful not only for programmers, but also for normal users.
For past few months I’ve been using amazing SVN GUI software for Macintosh which is also called Versions. I’m wondering how Apple is going to solve the...
CSS hacks for Internet Explorer
Today WebDesignerWall published few examples of CSS hacks for IE:
.box {
background: gray; /* standard */
background: pink\9; /* IE 8 and below */
*background: green; /* IE 7 and below */
_background: blue; /* IE 6 */
}
I have to admit I didn’t know about \9 hack for IE8.
It looks much better than few conditional comments for various versions of IE.
EDIT: I forgot to mention...