Categories
App Reviews News Tips Tutorials

CUPS – Forbiden – Ubuntu 13.10

Wow, I haven’t had a hard time with Ubuntu 13.10 until I bought a new laser printer from Lexmark. The printer was fine and I downloaded all the required files from lexmark.com, but an error pop out from the Ubuntu Software Center stating that the package was malformed. Anyway, I submitted the error to Lexmark […]

Categories
Tutorials Video Tutorials

Animation Basics in Blender

Animation Basics in Blender from Oliver Villar Diz on Vimeo. This is a nice tutorial I found in Vimeo… Hope you enjoy it! Here Oliver show how to manage and work with keyframes and timing nodes to create a bouncing ball animation. It cover some basics that are really good! Happy Designing

Categories
Develotweets News

Thank You!

I’m very happy, my blog was viewed 6,200 times in 2013… A New York City subway train holds 1,200 people. This blog was viewed about 6,200 times in 2013. If it were a NYC subway train, it would take about 5 trips to carry that many people. http://jetpack.me/annual-report/23755286/2013/

Categories
App Reviews Tutorials Video Tutorials

Laying Out a Website with Inkscape

The other day I decided to revamp my website but with the slightly difference that in my house I have a Linux Unit with Ubuntu 13.12. So I don’t have the option of any Adobe brand product, first because I want to proof that open source rocks, so I give Inkscapeâ„¢ a try, my favorite […]

Categories
App Reviews Develotweets News Resources

Linux – A powerful System and a technology Empire.

You probably use it without knowing it… check this: Over 850,000 devices in the World uses Android OS, base in Linux 8 out of 10 Financial Trades are powered by Linux 9 our of 10 Super Computers in the World are powered by Linux Google®, Facebook®, Twitter® and Amazon® are powered by Linux From over […]

Categories
Resources Tips Tutorials

Making your videos responsive to screen resolution with JQuery

This is a nice piece of code I found in Stack Overflow, but I love the solution posted by Darwin in October 12 2012 and I tweaked to fit my needs and here is my code: function adjustVideoRatioToParent(arr){ var element = (arr.e === undefined)? jQuery(‘iframe[src*=”youtube”]’) : jQuery(arr.e); //set element or elements var eParent = element.parent(); […]

Categories
Tips Tutorials

Handling a Keyword Search with PHP/MySQL (MATCH/AGAINST MySQL Function)

For the longest time I used the MySQL ‘LIKE’ statement style for searching by keywords, which it is probably the most reliable and fastest option. But today I’m going to talk about another option you have to create a more effective keyword search and get the result from MySQL order by keywords relevance. For this […]

Categories
Tips Tutorials

How to Avoid Having Sensitive Data Exposed

There are few reasons why you have to have sensitive information inside a class, but the one in the top of these reasons is because many hosting services does not allow you to have access to your root folder or even to your php.ini file. This is a big problem specially if you have a […]

Categories
News

Develotweet: Creativity is derived from Create… In order to c…

Creativity is derived from Create… In order to create you have to overcome fear, not denying it, but learn how to relate with it!

Categories
Tutorials Video Tutorials

How to Create a PHP Class

PHP is shifting into a mayor coding method, from procedural scripting to object oriented scripting, Class is one of the most important aspect your need to learn to take advantage of this shifting. PHP is not the same as it was before since PHP 4+. Resource: Hello World Class Over the years I found myself […]