After using CodeIgniter for some time, I realized the simplicity and the ease of deployment, very much pretty straightforward. The userguide itself is very much detailed and provides a great deal of examples for anyone who tries to learn the ropes of CI. Probably getting too used to coding with raw PHP and CI, in [...]
One of the frequent issues with textarea is the annoying resize handler that will appear in most browsers such as firefox and chrome, and in order to prevent your users from resizing the textarea, you can disable the resize handler with CSS. Here is how you can do it:
You can use pseudo class in CSS3 such as: E.g. 1- Using nth-child Main.css Basically this is saying, make every odd child will get the style of green, and every other even child will get the color of red. Screenshot for E.g. 1 E.g. 2 – Using Negation Pseudo Class Main.css Basically what this is [...]
Using Attribue Selector, you can set the styling based on the attributes. E.g. 1 – Using Attribute Selector Main.css Screenshot of E.g. 1: E.g. 2 – Using Regex in CSS Main.css Screenshot of E.g. 2: p[name^="child"] {color:blue;} Screenshot of E.g. 2: p[name$="child"] {color:blue;} Screenshot of E.g. 2: p[name*="child"] {color:blue;}
As anyone saving and grabbing photos from their friend’s facebook photo album or from their favourite fans page photo album is really a tiring repetitive job when Facebook does not put a “Download Album” link for users to download. The way to do it is to download the individual photos within the album, one by [...]
It came to a point that I no longer can tolerate the calling of /Application/MAMP/bin/php5.2/bin/pear to just run my pear command. Here is a quick tip to just set up your pear command, is to put it within your bash_profile, and the steps: Check the bin_dir: Vi ~/.bash_profile and include the bin_dir (basically this is [...]
- Posted by admin at 06:07 am
- Comments Off published
- Filed under: All, Notes
I think the Yii screencasts that they have on the Yii Framework site is pretty simplistic and easy to understand. However this is just the tip of an iceberg what this beast can do, there is more to it. Hence supposedly it will be more fun to start exploration some possibilities and functions that Yii [...]
I am a visual learner as always, but it is tough to look for Yii video tutorials aside from those officially provided on the Yii Framework site. I tried to flip through the blog pdf tutorial, but wasn’t getting anywhere. I might try out the Yii ebooks later on. Finally getting into Yii Framework, as [...]
- Posted by admin at 08:27 am
- Comments Off published
- Filed under: All, Frameworks, PHP
Here’s a learning checklist when you try to learn a new programming language or learning how to make use of a new framework to work with. Marc Gear states some of the exercises that we should put our hands dirty at: http://onekay.com/blog/archives/35 In summary: Hello World Calculator Guestbook Parse and Paginate
- Posted by admin at 08:15 am
- Comments Off published
- Filed under: All, Notes
While researching, I came across a neat and gritty solution – DotCloud.com. Basically what they do is to help you create a platform of any stack, building and deploying your stack within instance. Do away with stacking up your linux playbox, and pile up your stack cloud right away. What is DotCloud good for? It [...]
- Posted by admin at 11:34 am
- Comments Off published
- Filed under: All, Tools