Skip to main content

Posts

Amazing Blogs Are Comming!

       As per The Name, This Site is Maintained By me In my free time to track my study and learning. Till now I have been focused on learning Python and its application for a different real-world project. But my goal and interest are changing often from time to time I've been learning OSINT (Open source Intelligence) Tools. SO after finishing Some of my Unsettled projects, I"ll continue to upload 4 blogs per week and try to be regular. Upcoming Projects might be game-changing cause it is related to OSINT so we will focus on recon and try to gather max information about an individual/company. OSINT skill is important if you want to enter the hacking world, cause recon gives the direction of our attack. I've learned this skill by just watching conferences of the computer geeks. One of the geeks said that "OSINT is the Same as searching a DUSTBIN to find useful hints and info." which means our DUSTBIN is the internet, where our data is not disposed. Our work is to ...
Recent posts

Wifi Password Viewer.

Wi-Fi is the wireless technology that connects computers, tablets, smartphones, and other prejudices to the Internet. Wi-Fi is the radio signal transmitted from a wireless router to a nearby unit, which translates the signal into data that you can see and use . Windows Computer Save their Password in system Files. This PowerShell script collects a password and shows it on the table. Learn more Download Requirements:  *PowerShell Download File and right click on it. Select "run with PowerShell" then see the Magic!! Tada

Things to know before you start programming

While you're studying programming, I’m studying the way to play guitar. I practice it each day for a minimum of two hours a day. I play scales, chords, and arpeggios for an hour a minimum of then learn music theory, ear training, songs, and anything I can. Some days I study guitar and music for eight hours because I desire it and it’s fun. To me, repetitive practice is natural and is simply the way to learn something. I know that to urge good at anything you've got to practice a day , albeit I suck that day (which is often) or it’s difficult. Keep trying and eventually it’ll be easier and fun. Remember that anything worth doing is difficult at first. Maybe you're the type of one that is scared of failure, so you hand over at the first sign of difficulty. Maybe you never learned self-discipline, so you can’t do anything that’s “boring.” Maybe you were told that you simply are “gifted,” so you never attempt anything which may cause you to seem stupid or not a prodigy. Maybe y...

Computer Vision: Algorithms and Applications

As humans,we perceive the three-dimensional structure of the planet around us with apparent ease. Think of how vivid the three-dimensional percept is once you check out a vase of flowers sitting on the table next to you. You can tell the form and translucency of every petal through the subtle patterns of sunshine and shading that play across its surface and effortlessly segment each flower from the background of the scene The forward models that we use in computer vision are usually developed in physics (radiometry, optics, and sensor design) and in computer graphics . Both of these fields model how objects move and animate, how light reflects off their surfaces, is scattered by the atmosphere, refracted through camera lenses (or human eyes), and finally projected onto a flat (or curved) image plane. While computer graphics aren't yet perfect (no fully computer animated movie with human characters has yet succeeded at crossing the uncanny valley2 that separates real humans from...

Python for Data Analysis By Wes McKinney

This book cares with the nuts and bolts of manipulating, processing, cleaning, and crunching data in Python. This Book is to supply a guide to the parts of the Python programming language and its data-oriented library ecosystem and tools which will equip you to become an efficient data analyst. While “data analysis” is within the title of the book, the main target is specifically on Python programming, libraries, and tools as against data analysis methodology. this is often the Python programming you would like for data analysis.0 Why Python for Data Analysis? For many people, the Python programming language has strong appeal. Since its introduction in 1991, Python has become one among the foremost popular interpreted programming languages, along side Perl, Ruby, etc. . Python and Ruby became especially popular since 2005 approximately for building websites using their numerous web frameworks, like Rails (Ruby) and Django (Python). Such languages are often called scripting lang...

Programming Computer Vision with Python BY Jan Erik Solem

Computer vision  is that the  automated extraction  of data  from images. Information can mean anything from 3D models, camera position, object detection and recognition to grouping and searching image content.  during this  book we take  a good  definition of computer vision and include things like image warping, De-noising and augmented reality 1. Sometimes computer vision tries to mimic human vision, sometimes uses  a knowledge  and statistical approach, sometimes geometry  is that the  key to solving problems.  we'll  attempt to  cover all  of those  angles  during this  book. Practical computer vision contains  a mixture  of programming, modeling,  and arithmetic  and  is usually  difficult  to understand  . I even have  deliberately tried to present  the fabric  with a minimum of theory  within the  spirit of "as simple...

BY USING PYTHON TWEEPY MAKE A TWITTER BOT....

In this episode we are getting to   create a twitter bot with python using the selenium library. if  you're   a beginner python developer  otherwise you   are  trying to find  some python projects then this tutorial is for you! Things covered in this tutorial: !) Create a twitter bot with python 2)Python basics 3)How to use python selenium To start, here’s how  you'll  use Tweepy  to make  a tweet saying Hello Tweepy: PYTHON_____________________________________________ import tweepy # Authenticate to Twitter auth = tweepy . OAuthHandler ( "CONSUMER_KEY" , "CONSUMER_SECRET" ) auth . set_access_token ( "ACCESS_TOKEN" , "ACCESS_TOKEN_SECRET" ) # Create API object api = tweepy . API ( auth ) # Create a tweet api . update_status ( "Hello Tweepy" ) This is  a brief  example, but it shows the four steps common  to all or any  Tweepy programs: Import the tweepy package Set the authenti...