Category: Web

  • Useful extensions for Laravel

    Useful extensions for Laravel

    I’m starting to love Laravel. And while starting new project, there are few extensions I like to use which saves a lot of time. Maybe someone else will find these useful as well. 1. Laravel 4 Generators A really awesome extension from Jeffrey Way. This makes life easier by creating all the controllers and models […]

  • CodeIgniter template library

    CodeIgniter template library

    The thing I hate most about CodeIgniter is that the views folder become messed up after a while. So many files and so difficult to track down a view for a certain area of an application. So, to solve that I figured I should create a library to override the ways of managing views. I wrote this […]

  • Advanced object selection using Mootools

    Mootools’ “Selectors” utility has some really strong feature. It really saves a lot of time and sweat. Using this property, one can select a tag (any one can!), tag with specific name, id or any other attribute (huh!) and most amazingly part of a property value matching to some string… Say you want to select […]

  • Mootools Basics

    Mootools is a great JavaScript library and I feel really comfortable using it. There are lot other libraries, like JQuery, DoJo, ExtJS. They have their own features, but I feel strong with Mootools. ExtJs is really good, but very much heavyweight. On the other hand, Mootools is really lightweight. Including all the core features, it […]

  • Blueprint CSS

    This is a great CSS framework I’ve found online. Its optionality, and ease of use amazed me. This is mainly a grid based framework. You just create your element (e.g. div, span) and attach a class that corresponds to the disired width of your element. Thats it. 🙂 This really worth a visit…

  • Playing with Flex

    Heard the buzz about Flex. Got Flex 3 just few days ago and started the beginners tutorial from Adobe website. Well… its fun. A really nice and useful tool. My first Flex application is here: http://demos.creash.com.bd/playground/flex/Demo.html The tutorial for this can be found here.

  • Basic PHP – Part 1

    This article is about very basic of PHP coding, creating functions and database connection using PHP. Later posts may contain detail about other features. Target viewers are assumed as familiar with C/JAVA or other similar programming language. So I didn’t bother to clarify basic syntax. Writing PHP code: All your PHP content should be inside […]

  • Basic HTML – Part 2

    This is the continuation of my previous post Basic HTML – Part 1. On this phase of the post, I’m going to explain the table and form tags. Table: Table is a very important tag and widely used for alignment management of web pages. It is defined by the <table> tag. Some hierarchy are needed […]

  • Basic HTML – Part 1

    Well.. I was supposed to take a short class for my developer group in a recent project. I thought I’d rather post the topics and some detail of that class here, which can help beginners. First of all, we are going to learn some keywords and their use: HTML – Hyper Text Markup Language. Used […]