Posts

Showing posts from November, 2023

Cyber Security

Certified Information Systems Security Professional (CISSP) security domains National Institute of Standards and Technology (NIST) frameworks Eight Courses: Foundations of Cybersecurity Play It Safe: Manage Security Risks Connect and Protect: Networks and Network Security Tools of the Trade: Linux and SQL Assets, Threats, and Vulnerabilities Sound the Alarm: Detection and Response Automate Cybersecurity Tasks with Python Put It to Work: Prepare for Cybersecurity Jobs What to Expect Headings: Module 1: Welcome to the exciting world of cybersecurity Module 2: The evolution of cybersecurity Module 3: Protect against threats, risks, and vulnerabilities Module 4: Cybersecurity tools and programming languages Completion of all courses and passing graded quizzes is required for obtaining the Google Cybersecurity Certificate. Best practices for successful learning include time planning, working at a personalized pace, curiosity, note-taking, reviewing exemplars, engaging in discussion forums, ...

Amazon

 bad: Easily breakable hazmat Multiple Variation Quality issues (Product reviews to be read) Weapons related Beauty and personal caree catogry Good: BSR >60000 Review >100 rating 4-5 Amazon and brand: not amazon and brand sell no of sellers: 4 no of FBA sellers: 2 Package weight <2kg revenue >$50000 price : 15 variation: <4 Tools: Keepa for product historty and in depth knowledge and other  FBA Tool kit: used to check the sales JS sales estimator : like FBA scan unlimited: to ckeck IP complaints ds quick view: show product data without entring product page seller ad-on: scan unlimited ip alert : scan unlimited seller assistant app: check authenticity of product amazon revenue calculator : used to check if product is profitable DAY 4: if 'authentication required ' is written in place of scan unlimited, click it and sign up adding and viewing extensions DAY 5: Hunting through criterea DAY 6: hunting  again Day 7 (Keepa): Seller and Anydesk Browsec VPN to set ...

100 days of code

 Day 46: File I/O(input/output) handling to open a file : code:  var = open('my_file', 'r') if we print it it will just print some python objects. To see content write: var = open('my_file','r') # if we don't use 'r', no error will come beacuse the read mode is default text = var.read() print(text) f.close() some modes : 1. read(r) 2. write(w, if we make a file in write mode it will automatically create a file and when you run it again it won't throw error) 3. append(a, if we use write it will delete all the text but if we use append it will  add text at last) 4. creat(x, wil creat a file and if file is already created it willl throw an error) 5. text(rt, wt, at), used to open  the file as a text file 6. binary(rb, wb, ab), used to open files as binary file, we can use this for opening pdf and other documnets WRITING ON A FILE: var2 = open('my_file', 'w') var2.write('yey') var2.close() DON'T WANT TO CLOSE: with...

Xampp tutorial

 XAMPP: 1.) A web server : When you search for something on Facebook or any website, the data is fetched from a web server where it's stored. So, yes, the place where they store data is often called a web server. Great job on connecting the dots. First user request to HTTP server than http server request to file system if the data which user want is in file system it gives to http and hence http send it to user's browser in form of html HTTPS uses encryption to protect the data you send and receive on the internet, making it a more secure way to communicate and do things like online shopping or banking while http don't 2i i.)so many webpages == website 1iii.)web server is a program 1iv.)web servers already have web page 1v.) web server have an ip adress 1vi.) how does it works(image 'webserver works') they all know each other by IP   1v.) if the data is not in webserver they show '404 page not found' error 1vi.)if a device is always connected to internet and...