Skip to content
View SrivastavaSatyam's full-sized avatar
:octocat:
:octocat:

Block or report SrivastavaSatyam

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

πŸ‘‹ Hi, I'm Satyam Srivastava

Portfolio

  • πŸ„β€ Software Egineer
  • ✍ Written Few Blogs, generally tech related.
  • πŸ“« How to reach me: Email me

🌱 Currently Learning

  • Node JS, Next Js
  • Database Optimization
  • API Development
  • Cloud Technologies

πŸ“« Connect with me

Pinned Loading

  1. BillWithUs BillWithUs Public

    Pay Always Less

  2. Covid-Tracker Covid-Tracker Public

    Here you can get the live COVID CASE UPDATES of any country. Search your country name, and get the current covid case updates.

    Python

  3. Disttrac-Heroku Disttrac-Heroku Public

    Python

  4. Weather-Forcast Weather-Forcast Public

    HTML

  5. Django Models (many-to-one relation) Django Models (many-to-one relation)
    1
    from django.db import models
    2
    
                  
    3
    # Create your models here.
    4
    
                  
    5
    #Creating User Model
  6. Django Models (one-to-one relation) Django Models (one-to-one relation)
    1
    from django.db import models
    2
    
                  
    3
    class Person(models.Model):
    4
        name=models.CharField(max_length=20)
    5
        email=models.EmailField()