Environment variable are used by the system and user to find the location of various path which are initialized at the time of booting operating system on the system.
Facts of Software Engineering People The most important factor in software work is the quality of the programmers. The best programmers are up to 28 times better than the worst programmers. Adding people to a late project makes it later. The working environment has a profound impact on productivity and quality. Tools and Techniques Hype (about tools and technology) is a plague on the house of software. New tools and techniques cause an initial loss of productivity / quality. Software developers talk a lot about tools, but seldom use them. Estimation One of the two most common causes of runaway projects is poor estimation. Software estimation usually occurs at the wrong time. Software estimation is usually done by the wrong people. Software estimates are rarely corrected as the project proceeds. It is not surprising that software estimates are bad. But we live and die by them anyway! There is a disconnect between software management and their programmers. The...
cat /et c/os-release cat /etc/os-release command list down the important information operating system currently used by the system. in Red-hat cat /etc/redhat-release command will work. pstree
Python Debugger In python for debugging we can import pdb module which come along with python itself . for more information you can refer link import pdb val=int(input("Enter Value")) pdb.set_trace() #breakpoint print(val) val=30 pdb.set_trace() print(val) pdb.pm() # end python debugging
Comments
Post a Comment