Posts

Showing posts from June, 2016

15 Tips for Most Productive Entrepreneurs

Have you ever wondered how the world's top entrepreneurs get so much done in their days? After all, they have the same 24 hour days and 7 day weeks, yet they consistently get so much more done in that time. Here are 15 time habits of the best entrepreneurs. 1. Tap into the real power of "Now!" Do it now. Decide it now. Delegate it now. Enjoy it now. Finish it now. Start it now. The best time masters have a habit of getting it done  now , whatever it may be. 2. Relentlessly focus on one thing at a time. Multitasking is just not a pathway to business success. Sure, you need to be flexible and able to shift your attention from one thing to another, but the best time masters have cultivated their ability to block out distractions and temptations and focus on one thing at a time, and follow this most important thing until it is complete and producing for their businesses. 3. Learn to be both decisive and to purposefully delay decisions. Some decisio

better naming methods in CSS

Image
How to name CSS classes Naming things is the hardest thing in computer science, but, in CSS, you're naming things all day long... Based on my favorite articles on the topic, and recent work experience, here are my 2 cents about how to properly name CSS classes. 0. Before to think about class name, give a good name to HTML elements If it’s an input, use the  input  element. It will be far easier for the reader to scan the HTML document. Example : <div class= 'submit' /> <!-- Wooot ? --> <input class= 'submit' /> <!-- Ah, ok --> Source  :  Raphael Goetter (french article) 1. Put the class name at the lowest possible level It impact how classes will be named. Always use the class name directly on the HTML element you want to style, even if seems to cost an extra effort. Check the article of Chris Coyer below if it is not clear why. Example : <main class= 'mainly' > <p> Lorem ipsum <