Skip to content
View Zippytwr's full-sized avatar
🎯
Focusing
🎯
Focusing
  • 21:54 (UTC +05:00)

Block or report Zippytwr

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
Zippytwr/README.md

Visitor Count

Hello There! I'm Zippytwr ✋

Code wizardry from the kaleidoscopic depths


Tech Stack

✨ Tech Stack

Bash Script JavaScript Go Python TypeScript Heroku Angular Express.js NestJS Redux React NodeJS Nginx Jenkins Apache SQLite MariaDB MySQL Git GitHub Actions

Stats

Alt Text

Top Langs

GitHub Stats

Readme Card

Readme Card

trophy

graph

Alt Text

🧿 Connect with the Tower

Discord: nancyiess

Telegram: @Zippytwr

Website: in dreams, coming soon…

Pinned Loading

  1. Hello! Hello!
    1
    package main
    2
    import "fmt"
    3
    func main() {
    4
        fmt.Println("hello world️🖐️")
    5
    }
  2. gitgiest gitgiest Public

    An experimental CLI tool for exploring Git history as a form of digital divination. Gitgiest offers a unique perspective on version control data, blending code analysis with a creative, almost myst…

    Go

  3. Hello Hello
    1
    function sayHello(){
    2
      console.log("Hello world🖐️")
    3
    }
    4
    
                  
    5
    sayHello()
  4. forcenote forcenote Public

    ForceNote - a simple and lightweight note-taking web app with Markdown support, folder organization, and social login. Built with React, TypeScript, NestJS, and MobX.

    TypeScript

  5. Algorithm A* in javascript Algorithm A* in javascript
    1
    class Node {
    2
      constructor(position, g = 0, h = 0, parent = null) {
    3
        this.position = position;
    4
        this.g = g;
    5
        this.h = h;