Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

aniketpvitkar

@aniketpvitkar
About
Posts
2
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Linux safe?
    A aniketpvitkar

    Why Linux is not fully safe:

    Misconfiguration → If you use weak passwords, leave SSH open, or run everything as root, hackers can get in.

    Exploits → New vulnerabilities are discovered regularly (kernel, software packages, web servers).

    Social engineering → Hackers may trick you into installing malicious software or running bad commands.

    Targeted attacks → If you’re running a server (like websites, databases, etc.), attackers will try to break in.

    Outdated software → Old Linux distributions without updates are very unsafe.

    https://www.instagram.com/aniket_p_vitkar/

    The Insider News

  • Anybody know how i can prompt Ai to build me a python script that can do the following?
    A aniketpvitkar

    def main(file_ofu, file_abuo, output_file):
    # Step 1: Load FileAbuo into a set (fast lookups)
    with open(file_abuo, 'r') as f2:
    abuo_set = set(line.strip() for line in f2 if line.strip())

    # Step 2: Process FileOfu line by line and keep only unique ones
    with open(file_ofu, 'r') as f1, open(output_file, 'w') as out:
        for line in f1:
            clean_line = line.strip()
            if clean_line and clean_line not in abuo_set:
                out.write(clean_line + '\n')
    

    if name == "main":
    main("FileOfu.txt", "FileAbuo.txt", "Output.txt")

    try this
    https://www.instagram.com/aniket_p_vitkar/

    Python question python tools
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups