Skip to content
View shanenoi's full-sized avatar
🚧
building my own culture
🚧
building my own culture

Organizations

@itmc-ptit @metailurini
Block or Report

Block or report shanenoi

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
shanenoi/README.md

Hello, I currently work as a backend engineer.

🌐Socials

LinkedIn Twitter

💻Tech Stack

  • Strong typing languages

Go Rust C Java Haskell

  • Weak typing languages

Python Lua JavaScript Ruby Shell Script

  • Deploy

Google Cloud Nginx Docker Kubernetes

  • Database

Supabase Postgres SQLite MongoDB Redis

🏆GitHub Trophies ✍️Random Dev Quote

Pinned

  1. Find Substring Using Levenshtein Dis... Find Substring Using Levenshtein Distance
    1
    package main
    2
    
                  
    3
    import (
    4
    	"fmt"
    5
    	"math"
  2. Finder Finder Public

    I love using Vim on Terminal. However if you want to open a file, you have to cd to the correct folder, too slow!!! This searching source will help our to open file correctly with some regex patter…

    Python 1

  3. I love using Vim on Terminal. Howeve... I love using Vim on Terminal. However if you want to open a file, you have to cd to the correct folder, too slow!!! This searching source will help our to open file correctly with some regex patterns (base on name or content search) [support InvertingMatch]
    1
    """
    2
    |>>>  I WILL PULBLISH THIS SOURCE AS A OFFICAL REPOSITORY AS SOON AS POSSIBLE 
    3
    |>>>  AND HOW TO INSTALL DUE TO EXPORTING AS SESSION VAR IN TERMINAL
    4
    5
    # HOW TO USE??
  4. hiện thông số hoạt động của máy tính... hiện thông số hoạt động của máy tính lên wallpaper (cpu, ram, ....)
    1
    # python3 -m pip install psutil
    2
    # python3 -m pip install opencv-python
    3
    
                  
    4
    import cv2
    5
    import copy
  5. Tại sao lại phải install Mlocate 🦧 t... Tại sao lại phải install Mlocate 🦧 trong khi chúng ta có thể code được chức năng chính của nó 🤯 Tốc độ thì không gọi là quá chậm 🦛🐷🐮
    1
    update_data () {
    2
            printf "[+] Update Data, Please Wait!\n"
    3
            rm ~/..locate_*
    4
            sudo find />~/..locate_$(date +%s) 2>/dev/null
    5
            exit 0
  6. Actually this file is /usr/lib/pytho... Actually this file is /usr/lib/python3.8/http/server.py, but I want when i run `python3 -m http.server` and it will show lan ip insteal 0.0.0.0!
    1
    """HTTP server classes.
    2
    3
    Note: BaseHTTPRequestHandler doesn't implement any HTTP request; see
    4
    SimpleHTTPRequestHandler for simple implementations of GET, HEAD and POST,
    5
    and CGIHTTPRequestHandler for CGI scripts.