Wednesday, October 26, 2016

Top 5 ways to be a better programmer in 2016

Coders make resolutions, no? If your to-do better list is still empty, consider these ideas from other programmers to put to use in the new year. Even the smartest folks have room to grow.

Great tips to help you sharpen your programming skills.

1. Check Your Code First Before Looking to Blame Others

Question your own assumptions and the assumptions of others. Tools from different vendors might have different assumptions built into them so too might different tools from the same vendor.

When someone else is reporting a problem you cannot duplicate, go and see what they are doing. They may be doing something you never thought of or are doing something in a different order.

My personal rule is that if I have a bug I can’t pin down, and I’m starting to think it’s the compiler, then it’s time to look for stack corruption. This is especially true if adding trace code makes the problem move around. Multi threaded problems are another source of bugs that turn hair gary and induce screaming at the machine. All the recommendations to favor simple code are multiplied when a system is multi threaded. Debugging and unit tests cannot be relied on to find such bugs with any consistency, so simplicity of design is paramount

2. Continuous Learnig

Read books, magazines, blogs, Twitter feeds, and websites. If you want to go deeper into a subject, consider joining a mailing list or newsgroup.

If you really want to get immersed in a technology, get hands on—write some code.Always try to work with a mentor, as being the top guy can hinder your education. Although you can learn something from anybody, you can learn a whole lot more from someone smarter or more experienced than you. If you can’t find a mentor, consider moving on.Use virtual mentors. Find authors and developers on the Web who you really like and read everything they write. Subscribe to their blogs.Get to know the frameworks and libraries you use. Knowing how something works makes you know how to use it better. If they’re open source, you’re really in luck. Use the debugger to step through the code to see what’s going on under the hood. You’ll get to see code written and reviewed by some really smart people

3. Don’t Be Afraid to Break Things

Don’t be afraid of your code. Who cares if something gets temporarily broken while you move things around? A paralyzing fear of change is what got your project into this state to begin with. Investing the time to refactor will pay for itself several times over the lifecycle of your project. An added benefit is that your team’s experience dealing with the sick system makes you all experts in knowing how it should work. Apply this knowledge rather than resent it. Working on a system you hate is not how anybody should have to spend his time. Redefine internal interfaces, restructure modules, refactor copy-pasted code, and simplify your design by reducing dependencies. You can significantly reduce code complexity by eliminating corner cases, which often result from improperly coupled features. Slowly transition the old structure into the new one, testing along the way. Trying to accomplish a large refactor in “one big shebang” will cause enough problems to make you consider abandoning the whole effort midway through.

4. The Professional Programmer

The single most important trait of a professional programmer is personal responsibility. Professional programmers take responsibility for their career, their estimates, their schedule commitments, their mistakes, and their workmanship. A professional programmer does not pass that responsibility off on others.

If you are a professional, then you are responsible for your own career. You are responsible for reading and learning. You are responsible for staying up to date with the industry and the technology. Too many programmers feel that it is their employer’s job to train them. Sorry, this is just dead wrong. Do you think doctors behave that way? Do you think lawyers behave that way? No, they train themselves on their own time, and their own nickel. They spend much of their off-hours reading journals and decisions. They keep themselves up to date. And so must we. The relationship between you and your employer is spelled out nicely in your employment contract. In short: your employer promises to pay you, and you promise to do a good job.

5. Take Advantage of Code Analysis Tools

The value of testing is something that is drummed into software developers from the early stages of their programming journey. In recent years, the rise of unit testing, test-driven development, and agile methods has attested to a surge of interest in making the most of testing throughout all phases of the development cycle. However, testing is just one of many tools that you can use to improve the quality of code.

Back in the mists of time, when C was still a new phenomenon, CPU time and storage of any kind were at a premium. The first C compilers were mindful of this and so cut down on the number of passes through the code they made by removing some semantic analyses. This meant that the compiler checked for only a small subset of the bugs that could be detected at compile time. To compensate, Stephen Johnson wrote a tool called lint—which removes the fluff from your code—that implemented some of the static analyses that had been removed from its sister C compiler. Static analysis tools, however, gained a reputation for giving large numbers of false-positive warnings and warnings about stylistic conventions that aren’t always necessary to follow.

The current landscape of languages, compilers, and static analysis tools is very different. Memory and CPU time are now relatively cheap, so compilers can afford to check for more errors. Almost every language boasts at least one tool that checks for violations of style guides, common gotchas, and sometimes cunning errors that can be hard to catch, such as potential null pointer dereferences. The more sophisticated tools, such as Splint for C or Pylint for Python, are configurable, meaning that you can choose which errors and warnings the tool emits with a configuration file, via command-line switches, or in your IDE. Splint will even let you annotate your code in comments to give it better hints about how your program works.


5 Important Google Links

The 5 Important Google Links

Google stores everything privately and here are the 10 important links (URLs) that will unlock everything Google knows about you. They are hidden somewhere deep inside your Google Account dashboard and they may reveal interesting details about you that are otherwise only known to Google. Let’s dive in.

1. Google stores a list of usernames and passwords that you have typed in Google Chrome or Android for logging into various websites. They even have a website too where you can view all these passwords in plain text.

passwords.google.com

2. Google creates a profile of yourself based on the sites you visit, guessing your age, gender and interests and then use this data to serve you more relevant ads. Use this URL to know how Google sees you on the web.

www.google.com/settings/ads

3. You can easily export all your data out of the Google ecosystem. You can download your Google Photos, contacts, Gmail messages and even your YouTube videos. Head over the the Takeout page to grab the download links.

www.google.com/takeout

4. If you ever find your content appearing on another website, you can raise a DMCA complaint with Google against that site to get the content removed. Google has a simple wizard to help you claim content and the tool can also be used to remove websites from Google search results that are scraping your content.

support.google.com/legal

5. Your Android phone or the Google Maps app on your iPhone is silently reporting your location and velocity (are you moving and if yes, how fast are you moving) back to Google servers. You can find the entire location history on the Google Maps website and you also have the option to export this data as KML files that can be viewed inside Google Earth or even Google Drive.

Some facts on blogs that make money

Some facts on blogs that make money

Blogging has moved from the tech geeks domain to “new media”. It is now cool and can be very lucrative. Before we dive in here are some interesting facts about some blogs that make serious money.

Post free ads on
99localads.com

Tuesday, October 25, 2016

Top 15 classified websites of 2016

List of top 15 classifieds of 2016
If you dont agree with the list then ad your site in comments and i will update the list of top 10 classifieds.

1. Quikr.com

2. Olx.in

3. craigslist.org

4. click.in

5. 99localads. Com

6.  locanto.in

7. Sulekha.com

8. vivastreet.co.in

9. indialist.com

10. khojle.in

Other sites which are popular as well :

Another 5 classifieds websites that are as well quite popular in India

11. Adeex.com

12. freeads.in

13. clickindia.com

14. Justdoondo.com

15. adsglobe.com

Friday, May 23, 2014

Top 10 Classified websites in India 2014

List of top 10 classifieds of 2014 in india.
If you dont agree with the list then ad your site in comments and i will update the list of top 10 classifieds.

1. Quikr.com

2. Olx.in

3. craigslist.org

4. click.in

5. freeads.in

6.  locanto.in

7. Sulekha.com

8. vivastreet.co.in

9. indialist.com

10. khojle.in

Other sites which are popular as well :

Another 5 classifieds websites that are as well quite popular in India

11. Adeex.com

12. 99LocalAds.com

13. clickindia.com

14. Justdoondo.com

15. adsglobe.com






tags : top 10 classifieds, best websites, 2014 classifieds, 99localads.com, top 10 list, india top 10, india 2014, other classifieds, free ads, free advertisment, quikr, olx, 99localads, sell, buy, facebook, site, search classifieds, ads for free, top ads, best ads, free classifeds, free ad posting, list of top 10, FREE ONLINE ADVERTISING ,FREE ADS , FREE CLASSIFIEDS

Thursday, February 20, 2014

Facebook's largest acquisition to date - WhatsApp Aquired for 19 billion

Whatsapp Acquired by facebook and  has agreed to pay $12 billion in stock and $4 billion in cash for the company. 
Facebook has also agreed to pay an additional $3 billion in restricted stock units to WhatsApp's founders and employees as part of the deal.
Jan Koum Founder of WhatsApp said
"We think that for our product, advertising is not necessarily the right way to go, We think we have a very solid monetization system in place."

Image source google.com
News Source mashable