Skip to content

vishipayyallore/speaker_series_2021

Repository files navigation

Repository for Speaker Series 2021

This Repository to hold the Demos for my Speaker Series events from different User Group / Meetup Groups.

Few Docker Commands

docker pull postgres
docker run --name postgres-in-docker -e POSTGRES_PASSWORD=YourPassword -p 5432:5432 -d postgres

docker pull mysql
docker run --name mysql-in-docker -e MYSQL_ROOT_PASSWORD=YourPassword -p 3306:3306 -d mysql

docker pull redis
docker run --name redis-in-docker -p 6379:6379 -d redis

docker pull mongo
docker run --name mongo-in-docker -d -p 27017:27017 mongo
docker logs -f mongo-in-docker
docker exec -it mongo-in-docker /bin/bash

> show dbs
> use ProjectDb
> db.createCollection('Products')
> show databases
> show collections
> db.Products.find({}).pretty();
> db.getCollection("posts").find()

This repository contains the speaker events which I have done from BDotNet meetup group.

This repository contains the speaker events which I have done from CSharpCorner meetup group.

This repository contains the speaker events which I have done from DotNetLearnersHouse meetup group.

This repository contains the speaker events which I have done from DotNetTricks meetup group.

This repository contains the speaker events which I have done from Hyderabad Power Apps and Power Automate meetup group.

This repository contains the speaker events which I have done from mobconf meetup group.

This repository contains the speaker events which I have done from TechPlatform meetup group.

This repository contains the speaker events which I have done from ToBeDone meetup group.

About

This Repository to hold the Demos for Speaker Series

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published