Skip to content

Instantly share code, notes, and snippets.

View apoorvpandey0's full-sized avatar
👋

Apoorv Pandey apoorvpandey0

👋
View GitHub Profile
1. I have built a Multivendor E-commerce platform using Django and Django REST framework.
1. 1. User authentication and profiling
1.2. Two profiles for users one is seller profile and other is regular customer profile. You sign up initially as a regular customer but the site has an application process built in that lets you apply for the sellers profile. Once the administrator verifies the details and documents admin can allow the user account to be upgraded to a sellers account.
1.3. Sellers Can register shops on the platform which will be use to register products that they want to sell.
1.4. The products again have to be approved by the admin/staff of the site in order to be counted as sellable items.
1.5. I have implemented categories and sub categories with markets in my web application so that everything is well categorized.
1.6. I have also implemented a REST API using Django REST framework that enables us to create a variety of other applications like android/iOS applications.
Link to the site: http:/
@apoorvpandey0
apoorvpandey0 / Flutter-kotlin-methodchannel
Last active June 5, 2021 18:38
Flutter method channel with kotlin code snippet 2021
package com.example.flutter_application_1
import android.content.Context
import android.content.ContextWrapper
import android.content.Intent
import android.content.IntentFilter
import android.os.BatteryManager
import android.os.Build.VERSION
import android.os.Build.VERSION_CODES
import androidx.annotation.NonNull
@apoorvpandey0
apoorvpandey0 / Flutter-auto-clean-script-python
Last active September 27, 2021 15:53
Automatically cleans your flutter projects and saves you GIGABYTES of space on keeping multiple flutter projects in a folder
# TODO:
# 1. Implement wait time for flutter clean to complete for a given folder and then move to next
# 2. Ignore other files like .zip etc which may be in the folder
import os
for i in os.listdir():
os.chdir(i)
os.system('flutter clean')
print('Cleaned ',i)
os.chdir('../')
@apoorvpandey0
apoorvpandey0 / regex_links.txt
Created August 9, 2022 10:35
Resources for regex