Wednesday, March 17, 2021

IDEs for programming

https://www.algoexpert.io/product?r=ads&gclid=Cj0KCQjw0caCBhCIARIsAGAfuMxo1OV7kX1qd9wDltqv23PFJZslt7Y-5UOfikPn8ThXbJWdN_NVQTYaAt6aEALw_wcB

Thursday, September 12, 2019

Techniques to improve Programming

9/11/2019

I was thinking about how to improve my programming skills. I had been learning new languages and did not get a chance to use in vigorously as worked as Tested. Later on as industry moved towards digitization Testers are forced learn new languages and more than that made to develop the code.. So then I was trying to understand what will make me a good programmer. Below is what I have found from one of the youtuber - Reddys video


  • Solve Algorithms
  • Participate in competitions
- try website hackerrank.com

Monday, February 27, 2017

User stories - Programming cases



  • Look at the skiplagged.com website. Its a air ticket booking website. When you search for the fairs, it will list down results and along with it, it will also show graph with dots on it that shows the price(least price). If you click dot on the graph it will direct to the new page that details the low price ticket with respective details of the same.

Tuesday, January 3, 2017

Miracles with Programming


1/3/17:

  • Edit the content on live websites
    • This is a cheapt trick, and editing will be useful if you really want to change the price on the erecipt or something. I suggest not to do so :).
    • Steps: Open IE -> Click F12 -> Inspect the element that you wanted to edit(use inspect element option)-> right click on it and select 'edit as HTML' -> Thats it, once you edit in there same will be reflected on the webpage in that instance. :)



Wednesday, October 21, 2015

Sites that helps to be good programmer and build programming skills


  • Sites:
    • Date: 10/21/2015
    • Got to know the below sites are nice for programming but I have not gone through them:
      • https://code.org/
      • http://www.teachyourselftocode.com/



Tuesday, August 18, 2015

Best practices of programming - Maintain version control

  • Multiple copies create confusion:
    • This is true that having backup is one of the most important best practices, but it should be maintained in well managed way as you can use tags like name, date and time of the backup, version, etc. If you have multiple copies of the same source code or document, then it will create confusion and it would be difficult to identify latest code or document.
    • It is strongly recommended to use proper source code version control system. There are many source code version control software applications available for free (like SCCS, CVS, Subversion etc.) which you can use to store different versions of the software. But while using a source code control system, follow the rules below:
      • Always take source code from the version control system.
      • Always assign a new version to every change.
      • Always put source code back into control system.