Skip to content
View sanampatel's full-sized avatar
💡
Something quite cool is coming up!
💡
Something quite cool is coming up!

Sponsoring

@sebastianbergmann
@clue
@danharrin
@ryangjchandler
@sindresorhus
@taylorotwell
@barryvdh
Block or Report

Block or report sanampatel

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

Hi there 👋

💫 About Me!

  • 👨 Sanam Patel
  • 🧢 Full-Stack Web Developer
  • 📍 Toronto, ON 🇨🇦

💻 My Tech-Stack

  • Tech Stack : TALL Stack (Tailwind, Alpine.js, Laravel and Livewire) 🧰
  • Backend: PHP, Python, NodeJs ⚙️
  • Frontend: Alpine.js, Vue.js, Tailwind, UI Kit, JavaScript, jQuery 🎨
  • Tools : Redis, MySQL 🪛
  • Framework: Laravel 😍
  • DevOps: AWS, Serverless, Github Actions, CI/CD 🛠️

What's I'm up to!

  • 💻 I’m currently working on https://codingloop.com/
  • 📖 I’m currently learning ReactJS, Pandas 🐼, Numpy, Go Lang.
  • 🙋 I’m looking to collaborate on StaticPress.io.
  • 😨 I’m looking for help with heavy regex work.
  • 💸 Ask me about Personal finance, StockMarket or anything in between.
  • 📮 Reach me: Twitter | Facebook | YouTube.

🌐 Socials:

Facebook LinkedIn Twitter

💻 Tech Stack:

C CSS3 JavaScript HTML5 Markdown PHP Python Shell Script TypeScript AWS Cloudflare DigitalOcean Netlify React NuxtJS Next JS Laravel SASS TailwindCSS Vue.js Apache Nginx AmazonDynamoDB MariaDB MongoDB MySQL Redis SQLite Docker Jira Postman Trello Vagrant NumPy Pandas Go GraphQL jQuery Chart.js

📊 GitHub Stats:



🏆 GitHub Trophies

🐦 Latest Tweet


💰 You can help me by Donating

BuyMeACoffee PayPal

Pinned

  1. Laravel Deploy Script after git pull Laravel Deploy Script after git pull
    1
    # GIT MERGE OPTIONS DEPENDING HOSTING OR DEPLOYMENT PROVIDERS
    2
    # git checkout -- .
    3
    # git checkout .
    4
    # git merge
    5
    # php artisan down || true
  2. python-pivot-levels python-pivot-levels Public

    Python snippet for finding pivot levels of stocks using OHLC (Open, High, Low, Close)

    Python 5 2

  3. Commands to run after Laravel git cl... Commands to run after Laravel git clone or after project migration
    1
    #Clone your project from git
    2
    
                  
    3
    composer install
    4
    npm install
    5
    copy .env.example .env
  4. Import CSV file into MySQL Import CSV file into MySQL
    1
    LOAD DATA LOCAL INFILE '<file path here>' INTO TABLE <table name here>
    2
    FIELDS TERMINATED BY ',' 
    3
    ENCLOSED BY '"' 
    4
    LINES TERMINATED BY '\n'
    5
    (col1, col2, col3, col4, col5...);
  5. QueryModel is the PHP trait for Lara... QueryModel is the PHP trait for Laravel-query-builder package by spatie
    1
    <?php
    2
    
                  
    3
    namespace App\Traits;
    4
    
                  
    5
    use Spatie\QueryBuilder\QueryBuilder;
  6. staticpress-demo staticpress-demo Public

    StaticPress demo website with all functionalities. Go to : https://staticpress.io for more details

    HTML 1