Posts

Freelancing:

 Types of Freelance Marketplaces(1): Online Bidding / Conventional FM: Clients post project requirements, and freelancers provide services accordingly. Examples: Upwork, Fiverr, Guru, People per Hour, Freelancer, and Toptal. a. Niche: Job posts are specific to a particular category, such as content writing. Freelancers specializing in that category can find relevant clients. Example: Scripted. b. Contest: Clients hold contests where multiple freelancers showcase their skills according to the client's requirement i.e a logo, and the client pays the winner. Example: 99designs. Digital Stocks, Goods Marketplaces: People sell their original and copyrighted photos, designs, and other digital assets. Buyers can browse and purchase these items. Example: ShutterStock, Freepik, Envato. Micro-Job Marketplaces: Platforms specializing in smaller and quick tasks, often priced at $10-$100. These gigs can be completed in a short amount of time. Example: Fiverr, Gigster. Social-Media FM: Platforms...

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...

On-Screen Keyboard

 from tkinter import * def insert_character(char):     text_area.insert(INSERT, char) win = Tk() win.title("On Screen Keyboard") win.geometry("400x200") win.resizable(False, False) fnt = ("Arial", 20) title_label = Label(win, text="On-screen Keyboard", font=fnt) title_label.grid(row=0, column=0, columnspan=10)  # Adjusted columnspan for the title text_area = Text(win, width=49, height=2, borderwidth=1, relief="groove") text_area.grid(row=1, column=0, columnspan=10)  # Adjusted columnspan for the text area # Define rows and columns for keys rows = [     "1234567890",     "QWERTYUIOP",     "ASDFGHJKL;",     "ZXCVBNM,./" ] rw = 2 for row in rows:     colmn = 0     for button in row:         Button(win, text=button, width=2, padx=2, pady=2, borderwidth=2, relief="raised", bg= "#EFEFEF",fg= "#000000",command=lambda char=button: insert_character(char)).grid(row=rw, column=c...

tkinter

 from tkinter import Tk, Text, Canvas import tkinter as tk from tkinter import ttk win = tk.Tk() screen_width = win.winfo_screenwidth() screen_height = win.winfo_screenheight() win.geometry(f"{screen_width}x{screen_height}") win.title("notepad") text = tk.Text(win, height=42, width=170) text.pack(side=tk.LEFT, fill = tk.BOTH, expand=True) scrollbar = tk.Scrollbar(win, command=text.yview) scrollbar.pack(side=tk.RIGHT, fill=tk.Y) text.config(yscrollcommand=scrollbar.set) def replace_win():     outer_frame = tk.Frame(win, borderwidth=1, relief="solid")     outer_frame.place(x=5, y=0, width=270, height=140)          find = tk.Label(text = "Find:",borderwidth = 1, relief = "solid" )     replace = tk.Label(text = "Replace:", borderwidth = 1, relief = "solid" )     find_entry = tk.Entry(borderwidth = 1, relief = "solid" )     replace_entry = tk.Entry(borderwidth = 1, relief = "solid" )     btn1 = tk.Butt...