Skip to content
View theatom06's full-sized avatar
🏰
Forge New Frontiers
🏰
Forge New Frontiers
  • india

Highlights

  • Pro

Block or report theatom06

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
theatom06/README.md

Hi there πŸ‘‹

I'm a web enthusiast who loves to build and design websites, explore distributed systems, and cryptography. Right now, I'm learning more about Distributed Systems like Blockchains, Kadmilla, etc and the Cryptography Suite. I'm open to teaming up on projects using Bun.js, Node.js, JavaScript, TypeScript, HTML, and CSS.

  • πŸ”­ I’m currently working on Quill Kit, Nexus Camp
  • 🌱 I’m currently learning Distributed Systems, Cryptography, DOM manipulation
  • πŸ’¬ Ask me about my current projects, my learning journey, or any tech-related queries you might have
  • πŸ“« How to reach me: You can email me at [email protected] or dm on Twitter at TheAtom06]
  • πŸ˜„ Pronouns: He/Him
  • ⚑ Fun fact: i dont know what i am doing

Pinned Loading

  1. jiffyts jiffyts Public

    A simple and fast server framework for bun.js

    TypeScript 4

  2. shadesposters/website shadesposters/website Public

    A website to buy our lovely posters

    JavaScript

  3. xdb xdb Public

    TypeScript 1

  4. uno.js uno.js Public

    A JS lib that export one function per file based which doesn't even need to be downloaded

    JavaScript 1

  5. A simple and easy node.js file handl... A simple and easy node.js file handler that uses the fs/promises library for handling files.
    1
    import fs from 'fs/promises';
    2
    /**
    3
     * A class for reading, writing, and appending data to a file.
    4
     */
    5
    class FileJS {
  6. Memory Jar: A LRU cache Memory Jar: A LRU cache
    1
    class MemoryJar {
    2
        constructor(maxSize) {
    3
            this.items = new Map();
    4
            this.maxSize = maxSize;
    5
            this.loadFromLocalStorage()