Posts

Showing posts with the label samsung

What are the some of the best programming tips and tricks | Padsa Information

Image
Readability is the path to more interesting projects within a career. Readability is the path to knowing what you wrote 5 years ago, and makes code reuse actually viable Readability is the path to acquiring protégées that can learn from your style. Readability that is understandable by others allows people to appreciate your code at a level of architecture, not just functional. Readability is the path of lease resistance when you have a bug in your code. Readability is the how you put ideas into understandable text and syntax, much like writing a paragraph in natural language. Readability is somehow not a priority for most other developers, however it’s probably pretty important to your development director, if you work for one. Readability is more important than most believe. With moore’s law, it’s even more important to focus on readability than pre-mature optimization. Here’s more: Most schools and colleges teach computer science like trade school skills. How to fix a car. How to be...

What Is The Difference Between Sudo And Su In Linux? | Padsa information

Image
Many of you might be using sudo and su in terminal every day to accomplish different tasks. While sudo runs a single command with root privileges, su launches another shell instance with the privileges of the intended user. Both, sudo and su, are use to grant root privileges to the users in different manners. A Linux user comes across sudo and su in terminal very often. If you are a new Linux user, you might be fascinated by the things you can do with sudo and su. Last week, I also told you about a Windows command that you can use to get  sudo-like functionality . Sudo and su  provide root privileges in two different ways. But, how are they different? Here, I’ll try to answer this query. Before telling you the difference, let me tell you the meaning of a root user. The root user in a Linux system has the maximum permissions and he/she can do anything to the systems. Apart from letting a normal user install/delete some package, root user permission...