Archive for the ‘Development’ Category

concrete5 templates: 5 themes in a single pack

For those who is just looking to select a concrete5 theme for his/her website, I’ve prepared another bundle pack. This one is different from the concrete5 themes pack I created before and the installation process should go even faster.

Leave a Comment

What should come with img tag

I often work with 3rd party code and I’m often confused by so much html code. SEO professionals know that text/code ratio is very important so you should save every byte of code when it’s possible. Today I want to focus on image tag and the ways people use it in a bad (or just [...]

Leave a Comment

How to scroll page with jQuery

Every web developer will face with this question some time. Some prefer to create workarounds, some are searching for ready solutions over world wide web. I really like jQuery and use its power and simplicity to perform tasks like scrolling the page down or top to a certain place.

Leave a Comment

Download 10 concrete5 themes in one pack

I’ve created a bundle pack with 10 free concrete5 themes found on smartwebprojects.net. Download it here: http://www.denisvlasov.net/concrete5-themes-pack1.zip

Comments (5)

OpenERP - what licenses can be specified in __terp__.py

I’ve been writing a module for OpenERP and noticed that if you don’t specify license for your module in __terp__.py file, it will default to GPL-2. If you need to use another license, you will have to add "license" field in your __terp__.py file.

Comments (1)

new theme for concrete5 users - lightword

Smart Web Projects released another theme for concrete5 audience:

I really like this theme, because it is:
- simple and clean;
- universal (can be used for any website & purpose);
- simply nice.

Comments (2)

simple usability - ask for confirmation

I often get confused if an accidental click on some link removes some data I need on a particular resource. I do not understand why the site webmaster is not able to add just one line that might allow to avoid many bad situations when some data is lost irretrievably.

Comments (2)

google adsense link units

I tried using adsense link units on my blog, but I’m not impressed with the performance. I’m not allowed to tell exact numbers by terms and conditions, but it is less than usual adsense ad blocks. There could be several reasons.

Comments (2)

database functions in cms made simple

When I worked with cms made simple the first time, I had to spend some time to learn how to operate with mysql database. This reference guide is my attempt to help those who are just beginning with cms made simple and doing the first steps in customizing this wonderful content management system. I hope [...]

Leave a Comment

adding modifier in smarty template engine

I found 2 ways to add custom modifier in smarty template engine. The first way is using ‘plugins’ directory and putting a php file with your modifier there. The second way is writing your own function and then registering it as modifier.

Comments (1)