Skip to content
View kieetnvt's full-sized avatar
πŸ‘‹
πŸ‘‹

Block or report kieetnvt

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

Welcome to My GitHub! πŸ‘‹

Hi, I’m kieetnvt! I’m a Ruby on Rails developer with over 7 years of experience. I build scalable web applications, optimize performance, and love exploring the latest tech trends. I'm also a NodeJS developer as well πŸ˜€

πŸ›  Tech Stack

β€’	Backend: Ruby on Rails, Node.js, ExpressJS, NestJS, AdonisJS
β€’	Frontend: Vue.js, Next.js, TailwindCSS, BootstrapCSS, Jquery & Javascript πŸ˜›
β€’	Database: PostgreSQL, MySQL, MongoDB
β€’	Cloud & DevOps: Heroku, Google Cloud, Docker, Firebase
β€’	Payments: Stripe integration, including custom billing flows
β€’	Other Services: ShareTribe

πŸ“š My Blog

I also run a Blog where I share tutorials, insights, and my experiences in tech. Topics range from backend architecture and API design to frontend tips and general industry trends. Check it out if you’re interested!

πŸš€ Notable Projects

1.	Ride-Hailing Platform: Built a comprehensive backend for a ride-hailing service with dynamic pricing, geo-based calculations, and detailed user progress tracking.
2.	E-commerce Integrations: Designed custom Stripe integration flows, including tax handling, address collection, and various payment options.
3.	Community Web Scraper: Developed a web scraper for flight tickets, job listings, and real estate using Rails & Selenium & Capybara & Cucumber, bringing accurate data to users.

Pinned Loading

  1. Crying with NGINX Regex matching, IF... Crying with NGINX Regex matching, IF statement and module http rewrite $1 $2 meaning
    1
    ## If Statement and common condition
    2
    
                  
    3
    ```
    4
    Syntax:	if (condition) { ... }
    5
    Default:	β€”
  2. Optimize webpage speed Optimize webpage speed
    1
    Optimize webpage speed:
    2
    - Tools: Google Pagespeed Insight, Gtmetrix.com, Webpagetest.org, Image Analysis of Webpagetest.org
    3
    - Tools mobile: Webpagetest.org, https://testmysite.thinkwithgoogle.com/
    4
    
                  
    5
    1. Using sprite CSS for all images
  3. Configure WebP NGINX with Fallback t... Configure WebP NGINX with Fallback to native images
    1
    ## Configure WebP
    2
    
                  
    3
    Make sure the mime.types has type `webp`
    4
    
                  
    5
    `/etc/nginx/mime.types`
  4. Nginx/Passenger config when using SS... Nginx/Passenger config when using SSL with a Ruby/Rails Application.
    1
    # for redirecting hhtp traffic to https version of the site
    2
    server {
    3
      listen 80;
    4
      server_name example.com;
    5
      return 301 https://$server_name$request_uri;