Posts

Showing posts with the label gmail

SyntaxDB — A Perfect Programming Syntax “Search Engine” For Coders | Padsa Information

Image
SyntaxDB calls itself a programming syntax database that wishes to eliminate the need to use Google to search syntax during coding. It allows you to search your syntax queries and shows you helpful results along with further documentation. Currently, SyntaxDB supports nine popular programming languages. V ery often programmers new to the field ask if is it okay to use Google and Stack Overflow to look up some syntax. The answer is yes — searching the web is a routine task of a good developer and its frequency even increases with time. Using Google doesn’t make you a bad programmer. Instead, it makes you even better at it and teaches you new things. To make things even easier for programmers, Anthony Nguyen, a software developer studying at Queen’s University, has created  SyntaxDB . This website calls itself the programming syntax database and allows you to search your required query. Nguyen calls it helpful for those who often visit Google to look for their programming ...

Linux Basic Commands

Image
The below commands are important and often used. For more checkout the image at the bottom of the article mkdir  – make directories Usage: mkdir [OPTION] DIRECTORY… eg. mkdir lhn ls  – list directory contents Usage: ls [OPTION]… [FILE]… eg. ls, ls ­l, ls lhn cd  – changes directories Usage: cd [DIRECTORY] eg. cd lhn pwd  ­-  print name of current working directory Usage: pwd vim  – Vi Improved, a programmers text editor Usage: vim [OPTION] [file]… eg. vim lhn.txt cp  – copy files and directories Usage: cp [OPTION]… SOURCE DEST eg. cp sample.txt sample_copy.txt cp sample_copy.txt target_dir mv  – move (rename) files Usage: mv [OPTION]… SOURCE DEST e...

How To Pick Your First Programming Language (4 Different Ways)

Image
Learning coding  from scratch could be a tough task and it could take years of hard work to master a language. So here I am going to address the biggest problem a beginner faces: How to pick up my first programming language? R ecently I came across with a very enriching infographic that addressed the same question.  Udacity  has utilized the date of the top ten programming languages in the US (provided by IEEE Spectrum) to pick the best programming language for you as a beginner. The basis on which this infographic is made varies from location, your lifestyle and the potential growth in career after selecting that particular language. Based on the flexibility, Python or C++ comes first as it allows you work on the variety of fields such as gaming to making of embedded systems. JS or PHP prepares you for a web development career. Similar observations and trends are made based on the  average pay per year,  geography and popularity. Take a look at the infographic ...

Here is How to run Kali Linux on your Android device | Padsa Information

Image
This tutorial mainly created for Linux fans. Follow the given steps below to install Kali Linux on your Android phone. Step 1:  Install  Linux Depoly  on your Android Mobile. Step 2:  Now launch “ Linux Depoly ” and click download icon Step 3:  In  Depol  tab click and change the Distribution to Kali Linux Step 4:  Now Change the  VNC settings  according to your mobile screen. Step 5:  Once done click  Install (Start GNU/Linux installation). Note:  This might take few minutes to be completed. Tips:   Recommended to do it on a  Wi-Fi . Step 6:   After installing  Kali Linux  now click Reconfiguration button. After that hit  Start . Step 7: Now download and install  Android-Vnc-Viewer  and enter the details. Once every goes smooth then you can start using Kali Linux. Don't forget to comment below .

What is the most popular programming language in the enterprise

Image
Programmers have high demands these days because of the Growing Startups if one is interested in the best carrier and want to make the best of his life they need to know the popular programming language in the enterprise. The stats were imported from the ZDNET, on the search keyword of the popular programming language, they have prepared a pretty good list that uses the data from the PYPL(popularity of the Programming language), primary , which looks at the popular programming languages on the Google and uses a search engine to aggregate the results. Programming languages differ from natural languages in that natural languages are only used for interaction between people, while programming languages also allow humans to communicate instructions to machines. They said that the list is the ultimate choice 1. Java 2. C 3. Python 4. C++ 5. JavaScript 6. C# 7. PHP 8 Swift 9. Objective-C 10. R The list is taken from the Following chart The description of a programming language is usually...

10 Best Programming Languages That You Need To Learn In 2017

Image
The year 2017 has arrived. So, this year, are you ready to learn a new programming language and boost your skill set? If your answer is yes, you’re at the right place. GitHub’s recent data gives us a pretty good idea about the best popular programming languages that you need to learn in 2017. Our top recommendations are Java, JavaScript, Swift, and Python. T hese days, skilled programmers are in great demand. Over the past decade, coding jobs have become mainstream, creating millions of employment opportunities every year. If you’re new to the programming world, there are many ways to choose your first programming language. You can analyze the needs — app development, web application, web design — and choose the programming language. If you’re looking for a useful and easy language to get started, Python can help you out. Those who are already having the knowledge of programming, are taking the polyglot approach. The programmers are learning programming languages and impr...

What Programming Languages Should You Learn to Become A Hacker | Padsa Information

Image
Every hacking beginner can have plenty of doubts like: “Which programming language should I learn for Hacking ?”, Programming Languages For Hacking: 1# For Web App / Pentesting / Hacking: HTML:  Hypertext Markup Language (HTML) is the basics for creating web pages and other information that can be displayed in a web browser. So if you don’t know HTML you should first learn it. JavaScript:  Learning JavaScript. It will help you to understand the basics of Cross Site Scripting. PHP / SQL:  The majority of web applications are written using PHP and MySQL. So it is a must to learn PHP. 2# For Writing/Understanding Exploits, Shell Codes, Rootkits etc: C & C++:  More than 60 % of the exploits you will find on the web are written in C & C ++. Learning C & C++ will help you to understand about Buffer overflows, Stack overflow etc – so learning C and C ++ is a must for every Hacker/Pentester. Assembly:  Learning assembly will help you in Writing/understanding...

Why The First Windows Drive Letter Is Always C? Why Doesn’t It Start With A Or B? | Padsa Information

Image
The various logical drives in Windows are assigned a drive letter. Generally, the drive letter for the first logical drive is C followed by D, E, F. Well, A and B are also alphabets. These drive letters are kept in reserve for some special purpose. Here is the reason. I n the case of Windows and many other operating systems, a physical hard drive–used to install OS files and store data–is divided into partitions. In Windows, these partitions can be formatted using  file systems  like NTFS, FAT32, etc. These partitions are then known as logical drives and they are assigned a drive letter. As far as my tech knowledge is concerned, it started to sprout in the mid-2000s. My first computer came with Windows and, obviously, or as some sort of a tradition, the first drive letter was C. In the beginning, I was told not to put any stuff in the C drive. Later, when a repair guy fixed my desktop, he installed Windows to the D drive. It seemed a bit unusual and it was a dilemma ...