<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Lexicon</title>
    <link>https://lexxicon.vercel.app</link>
    <description>A personal knowledge base — ask a question, get a clear explanation, saved as a topic.</description>
    <item>
      <title>Only Bug Bounty Checklist You'll Ever Need!!! V2</title>
      <link>https://lexxicon.vercel.app/posts/2d0e300c-4956-47cc-a4f3-bfdff6632049</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/2d0e300c-4956-47cc-a4f3-bfdff6632049</guid>
      <pubDate>Sat, 18 Jul 2026 07:59:04 GMT</pubDate>
      <description>Global Manual Bug Bounty Checklist Purpose: A target-agnostic, manual-first checklist for authorized web, API, SaaS, identity, business-logic, integration, and client-side testing. Important: No checklist can guarantee a valid or paid bu…</description>
    </item>
    <item>
      <title>Only Bug Bounty Checklist You'll Ever Need!!!</title>
      <link>https://lexxicon.vercel.app/posts/4847d21a-e25e-486d-a735-56e82a30ebf6</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/4847d21a-e25e-486d-a735-56e82a30ebf6</guid>
      <pubDate>Fri, 17 Jul 2026 22:53:04 GMT</pubDate>
      <description>Global Manual Bug Bounty Checklist Purpose: A target-agnostic, manual-first checklist for authorized web, API, SaaS, identity, business-logic, integration, and client-side testing. Important: No checklist can guarantee a valid or paid bu…</description>
    </item>
    <item>
      <title>How about trial</title>
      <link>https://lexxicon.vercel.app/posts/91c2256b-a551-4299-9d08-7630e1773126</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/91c2256b-a551-4299-9d08-7630e1773126</guid>
      <pubDate>Tue, 07 Jul 2026 04:39:11 GMT</pubDate>
      <description>I hope everything goes good So how about next notes Maybe i have to recheck on the settings and the dispklay once i click on ctrl + enter asdadasdasdasd ad asd as das das d adasdasdasdasdasd adas das das das dasd asd asasasdasdasdasdasda…</description>
    </item>
    <item>
      <title>Python String Manipulation Functions - Full Reference</title>
      <link>https://lexxicon.vercel.app/posts/e18bff64-e687-45b9-9974-847475f27dde</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/e18bff64-e687-45b9-9974-847475f27dde</guid>
      <pubDate>Thu, 02 Jul 2026 16:53:58 GMT</pubDate>
      <description>Python String Manipulation Functions — Full Reference Every built-in method available on Python's str type, with a description and 2 code examples for each. --- 1. capitalize() Returns a copy of the string with the first character capita…</description>
    </item>
    <item>
      <title>Layer 2 &amp; Layer 3 Networking</title>
      <link>https://lexxicon.vercel.app/posts/e49afd89-0fe4-49ef-963e-ac02b707aeac</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/e49afd89-0fe4-49ef-963e-ac02b707aeac</guid>
      <pubDate>Mon, 29 Jun 2026 07:02:33 GMT</pubDate>
      <description>Layer 2 &amp; Layer 3 Networking — Complete Notes Written for Nokia Software/QA Co-op Prep Kalyan Gopalam Northeastern University M.S. Cybersecurity --- Table of Contents 1. [The OSI Model — Why It Exists]( 1-the-osi-model--why-it-exists) 2.…</description>
    </item>
    <item>
      <title>Python OOP - The Complete Breakdown</title>
      <link>https://lexxicon.vercel.app/posts/ce09fba8-b237-4566-9a24-cbea80c00b3a</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/ce09fba8-b237-4566-9a24-cbea80c00b3a</guid>
      <pubDate>Mon, 29 Jun 2026 06:09:05 GMT</pubDate>
      <description>Python OOP — The Complete Breakdown So what even is OOP? You've been writing procedural code — functions, variables, loops, all running top to bottom. That works. But as programs get bigger, you end up with dozens of functions all operat…</description>
    </item>
    <item>
      <title>Python Dictionaries - The Complete Breakdown</title>
      <link>https://lexxicon.vercel.app/posts/beee8fd6-d5c6-4248-ac89-b2e1d1765d67</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/beee8fd6-d5c6-4248-ac89-b2e1d1765d67</guid>
      <pubDate>Mon, 29 Jun 2026 03:05:16 GMT</pubDate>
      <description>Python Dictionaries — The Complete Breakdown So what even is a dictionary? A list stores things in order and you access them by position — skills[0] , skills[1] . That works fine until you're storing something that has named properties. …</description>
    </item>
    <item>
      <title>Python Exception Handling - The Complete Breakdown</title>
      <link>https://lexxicon.vercel.app/posts/c67d1798-408c-4a60-bc97-bd2df715a325</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/c67d1798-408c-4a60-bc97-bd2df715a325</guid>
      <pubDate>Mon, 29 Jun 2026 02:22:17 GMT</pubDate>
      <description>Python Exception Handling — The Complete Breakdown So what even is an exception? Your code is running fine. Then something goes wrong — a user types text where you expected a number, a file doesn't exist, you divide by zero, a network co…</description>
    </item>
    <item>
      <title>Python Functions - The Complete Breakdown</title>
      <link>https://lexxicon.vercel.app/posts/24cdd013-bfd4-40c6-86bb-0143d2b096ab</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/24cdd013-bfd4-40c6-86bb-0143d2b096ab</guid>
      <pubDate>Mon, 29 Jun 2026 02:01:40 GMT</pubDate>
      <description>Python Functions — The Complete Breakdown So what even is a function? You've been writing code that runs top to bottom, once, in one shot. That works for small scripts. But real programs do the same things over and over — check if a user…</description>
    </item>
    <item>
      <title>Python Conditional Statements - The Complete Breakdown</title>
      <link>https://lexxicon.vercel.app/posts/8e2b901b-4a13-414c-91a9-04d4336d86ed</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/8e2b901b-4a13-414c-91a9-04d4336d86ed</guid>
      <pubDate>Mon, 29 Jun 2026 00:14:50 GMT</pubDate>
      <description>Python Conditional Statements — The Complete Breakdown So what even is a conditional? Your code runs top to bottom, line by line. Every line executes. That's fine for simple scripts — but real programs need to make decisions. Should I le…</description>
    </item>
    <item>
      <title>Python Loops - The Complete Breakdown</title>
      <link>https://lexxicon.vercel.app/posts/fadf1b9b-c5ef-434a-ab8e-c26c9804ec66</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/fadf1b9b-c5ef-434a-ab8e-c26c9804ec66</guid>
      <pubDate>Sun, 28 Jun 2026 23:50:41 GMT</pubDate>
      <description>Python Loops — The Complete Breakdown So what even is a loop? Imagine you have a list of 1000 usernames and you want to print every single one. You could write print(usernames[0]) , print(usernames[1]) , print(usernames[2]) ... all the w…</description>
    </item>
    <item>
      <title>Python Lists vs Arrays — The Real Story</title>
      <link>https://lexxicon.vercel.app/posts/777d6af9-f2df-406b-a5a5-d8da3ac76354</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/777d6af9-f2df-406b-a5a5-d8da3ac76354</guid>
      <pubDate>Sun, 28 Jun 2026 23:35:52 GMT</pubDate>
      <description>Python Lists vs Arrays — The Real Story Wait, does Python even have arrays? Kind of. Sort of. Not really — but also yes. Here's the thing nobody tells you upfront: Python doesn't have a built-in array the way languages like C or Java do.…</description>
    </item>
    <item>
      <title>Python Data Types - The Complete Breakdown</title>
      <link>https://lexxicon.vercel.app/posts/7422bafb-1100-4ab5-9407-0192265b61d1</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/7422bafb-1100-4ab5-9407-0192265b61d1</guid>
      <pubDate>Sun, 28 Jun 2026 22:00:45 GMT</pubDate>
      <description>Python Data Types — The Complete Breakdown So what even is a data type? When you store something in a variable, Python doesn't just save the value — it also tracks what kind of thing it is. A name is different from a number. A number wit…</description>
    </item>
    <item>
      <title>The f Thing in Python - f-strings</title>
      <link>https://lexxicon.vercel.app/posts/ea6dcf58-1cb0-4bf8-b91f-1eac8ffb2960</link>
      <guid isPermaLink="true">https://lexxicon.vercel.app/posts/ea6dcf58-1cb0-4bf8-b91f-1eac8ffb2960</guid>
      <pubDate>Sun, 28 Jun 2026 21:49:57 GMT</pubDate>
      <description>The f Thing in Python — f-strings So what even is it? Okay so imagine you're writing a text message to a friend and you want to include their name and age in it. You could write it out manually every single time. Or — you could just drop…</description>
    </item>
  </channel>
</rss>