This Repository to hold the Demos for my Speaker Series events from different User Group / Meetup Groups.
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()
1. BDotNet
This repository contains the speaker events which I have done from BDotNet meetup group.
2. CSharpCorner
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.
4. DotNetTricks
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.
6. mobconf
This repository contains the speaker events which I have done from mobconf meetup group.
7. TechPlatform
This repository contains the speaker events which I have done from TechPlatform meetup group.
8. To Be Done
This repository contains the speaker events which I have done from ToBeDone meetup group.