Nowadays, more and more websites has different layouts for different devices such as a PC or Mac, smartphone, tablet, PDA, and so on. This is becoming a requirement now to support such devices so that your content would be easier to read on smaller screens as well. This kind of techniqe is called “responsive web design“. (more…)
I’ve just ran into Adobe’s web font collection called “Adobe Edge Web Fonts”. The collection is huge, it is completely free and the fonts are gorgeous! They are made by Adobe, Google and professional designers around the Earth.
All the fonts served by Typekit for performance and stability. You can, of course, preview any font you fall in love with.
Let’s go and try it now! http://html.adobe.com/edge/webfonts/
RoboHornet is an open-source web browser benchmarking application. It does not only focus on the speed of JavaScript that is used to create interactive websites but focuses on other pain points that real web developers care about such as scrolling speed, DOM, Animated GIFs, SVG elements and so on..
RoboHornet is in still Alpha version. The development team contains of employees from Google, Facebook, Mozilla and Microsoft as well.
Go to www.robohornet.org and try it by yourself! Don’t forget to allow pop-ups!
Have you ever created a custom Generic List and you wanted to use it within a foreach statement? To do so you must implement the IEnumerable interface. This interface is defined as follows:
public interface IEnumerable<out T> : IEnumerable
{
// Summary:
// Returns an enumerator that iterates through the collection.
//
// Returns:
// A System.Collections.Generic.IEnumerator<T> that can be used to iterate through
// the collection.
IEnumerator<T> GetEnumerator();
}
Personally, if I’m missing some tool the first thing I do is a Google search for an online version. I don’t really like installing new applications. They are usually hard to keep updated or uninstalled and it often includes bloatware such as browser toolbars and so.
So recently I have found many interesting online tools that I could use during web development and here is a not complete but the best 10 tools that could save you a couple hours! You might be familiar with some of them but I hope you will also find something new and great as well. (more…)
Hi folks,
We’ve been using KC Settings to expand the basic setting functionalites of WordPress and we ran into a small issue with getting back the value of a single checkbox as a boolean value.
Here is a small snippet how we achieved this scenario:
<?php
$opt_show_social = get_post_meta($post->ID, "_show-social-share", true);
$opt_header_details = get_post_meta($post->ID, "_show-header-details", true);
$opt_hide_cat_img = get_post_meta($post->ID, "_hide-category-image", true);
$show_social = parse_boolean($opt_show_social[0]);
$show_header_details = parse_boolean($opt_header_details[0]);
$hide_cat_img = parse_boolean($opt_hide_cat_img[0]);
?>
It might not be nice enough though but it works.
Hi there,
We finally made it! Our blog is up and running. It took a while for us to set up a complete WordPress blog with a custom theme besides our daily job at work, at home and with the family.
We are looking forward to see as many people here as possible who is at least interested in some special programming topics or other general knowledge. We not only write about topics we like but also encourage YOU to get in touch with us if you’d like to get a neat tutorial about anything or just want to make something published.
We already have a couple interesting topics that will be published soon so keep your eyes open, follows us on Facebook, Twitter or LinkedIn and don’t forget to subscribe to our RSS feed as well!

