Tech with Satyajit Das
Tech with Satyajit Das
  • 98
  • 172 659
Create Google Chrome Dinosaur Game Using ChatGPT in 1 minute
In this video I show how you can start learning any programming language by creating a game with it using ChatGPT and then go backwards to see what code made it happen. This is a much more interesting way to start learning programming compared to rather boring todo apps or hello worlds.
If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kubernetes-docker
This is not free but if you are a student or can't afford it then feel free to email to justforlearnings@gmail.com explaining why and I will be able to give it for free. But in condition that you will be finishing the course completely within a month. :)
มุมมอง: 27

วีดีโอ

Golang Testing Basics Quick Tutorial
มุมมอง 32หลายเดือนก่อน
This video tutorial covers Golang testing basics. The code: // math.go package math import "errors" // Add adds two integers and returns the result. func Add(a, b int) int { return a b } // Divide divides two numbers and returns an error if the divisor is zero. func Divide(a, b float64) (float64, error) { if b 0 { return 0, errors.New("division by zero") } return a / b, nil } // math_test.go pa...
How to Embed C code in Golang: Example Tutorial
มุมมอง 1442 หลายเดือนก่อน
If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kubernetes-docker This is not free but if you are a student or can't afford it then feel free to email to justforlearnings@gmail.com explaining why and I will be ...
Golang Adapter Pattern Tutorial
มุมมอง 1173 หลายเดือนก่อน
In this video I show a quick example of adapter pattern in Go. Comment if you want to get the code. If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kubernetes-docker This is not free but if you are a student or...
bsc Blockchain Code Walkthrough
มุมมอง 584 หลายเดือนก่อน
This video does a walkthrough of bsc code. bitcoin tutorial: th-cam.com/video/cn_AbiCUsWs/w-d-xo.html If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kubernetes-docker This is not free but if you are a student ...
gRPC vs JSONRPC with Example in Golang
มุมมอง 3295 หลายเดือนก่อน
In this video I talk about the difference between JSONRPC and gRPC with simple examples in Golang. Link to code: github.com/emailtovamos/grpcjsonrpc If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kubernetes-do...
NATS Quick Tutorial in Golang
มุมมอง 6076 หลายเดือนก่อน
In this video I quickly show what NATS messaging system is, how to use it and how it compares with RabbitMQ. If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kubernetes-docker This is not free but if you are a s...
Discover How to Create Grafana Dashboards Easily With Prometheus
มุมมอง 7667 หลายเดือนก่อน
This video shows how to set up grafana and prometheus for your Golang application using docker compose. To start: docker-compose up To stop: docker-compose down Link: github.com/emailtovamos/grafana If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-m...
Generate Quiz from Current Webpage: Launching Quizzyly
มุมมอง 408 หลายเดือนก่อน
chromewebstore.google.com/detail/quizzyly/agfdemmfpenkbccjnpjliaenpeihefae Launching Quizzyly, the Chrome Extension for generating quiz from current webpage. Test your knowledge after you read or even before you read in seconds! This is in beta now and works with most webpages. Feel free to give feedback! Technical Details: It takes maximum 7000 words from a webpage, feeds it into a backend LLM...
Golang Error Handling Example: defer panic recover
มุมมอง 1409 หลายเดือนก่อน
This video shows a quick overview of error handling in Go specifically regarding defer, panic and recover. If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kubernetes-docker This is not free but if you are a stu...
Ethereum EIP 4844 Explained in 20 mins
มุมมอง 36910 หลายเดือนก่อน
In this video I give a brief overview of EIP-4844 in Ethereum and why it matters. This introduces the concept of blob transactions which is an important first step towards high scalability in Ethereum Rollups. Some slides are taken from the talk: th-cam.com/video/JQDUvqv60qw/w-d-xo.html
Discover the Secrets of Clean Architecture Design
มุมมอง 1.9K11 หลายเดือนก่อน
Clean Architecture Blog Link: blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html Code link: github.com/emailtovamos/clean-architecture-demo Follow me: satyajitdas90 www.linkedin.com/in/satyajit-das-73869b44/ If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justfor...
Run Mini ChatGPT Locally in 2 Mins
มุมมอง 542ปีที่แล้ว
In this video I show you how you can run a Local Large Language Model. This will not require internet to run and will be fully private to you. The model is mistral 7b. Link: medium.com/@mne/run-mistral-7b-model-on-macbook-m1-pro-with-16gb-ram-using-llama-cpp-44134694b773 If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this co...
Golang Design Pattern: Observer Pattern Example
มุมมอง 544ปีที่แล้ว
In this video I give a quick example of Observer Design Pattern in Golang. If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kubernetes-docker This is not free but if you are a student or can't afford it then fee...
Golang Interface Mocking Quick Example
มุมมอง 1.9Kปีที่แล้ว
This video shows a quick example of interface mocking while writing unit tests. Link to code used: tennexas.com/golang-interface-mocking-example-in-unit-test/ If you want in-depth tutorial on Docker & Kubernetes along with gRPC, fully explained from end-to-end, then check out this course on Microservices: www.justforlearning.com/courses/build-your-first-microservices-based-app-using-go-grpc-kub...
How I became a Blockchain Developer
มุมมอง 201ปีที่แล้ว
How I became a Blockchain Developer
Supercharge Your Go Code Debugging Skills with Goland
มุมมอง 1.8Kปีที่แล้ว
Supercharge Your Go Code Debugging Skills with Goland
Ethereum Code Walkthrough: Block Creation Logic and Flow
มุมมอง 642ปีที่แล้ว
Ethereum Code Walkthrough: Block Creation Logic and Flow
iPad Pro 5 Unboxing
มุมมอง 51ปีที่แล้ว
iPad Pro 5 Unboxing
Golang Generics Quick Example
มุมมอง 96ปีที่แล้ว
Golang Generics Quick Example
How to Run Ethereum Locally (Tutorial)
มุมมอง 479ปีที่แล้ว
How to Run Ethereum Locally (Tutorial)
Quick Introduction to Go-Ethereum codebase
มุมมอง 1.1Kปีที่แล้ว
Quick Introduction to Go-Ethereum codebase
Modifiers in Solidity
มุมมอง 43ปีที่แล้ว
Modifiers in Solidity
Foundry (Ethereum Development Toolkit) Quick Start Tutorial
มุมมอง 766ปีที่แล้ว
Foundry (Ethereum Development Toolkit) Quick Start Tutorial
Solidity & Remix IDE Quick Introduction
มุมมอง 5472 ปีที่แล้ว
Solidity & Remix IDE Quick Introduction
How Blockchain Bridges Work
มุมมอง 642 ปีที่แล้ว
How Blockchain Bridges Work
Bitcoin Explained in 20 mins: How Bitcoin and Blockchain Work
มุมมอง 1052 ปีที่แล้ว
Bitcoin Explained in 20 mins: How Bitcoin and Blockchain Work
Go Ethereum Tutorial - 04 - Query Ethereum Block using Go
มุมมอง 3982 ปีที่แล้ว
Go Ethereum Tutorial - 04 - Query Ethereum Block using Go
Go Ethereum Tutorial - 03 - Create an Ethereum Wallet using Go
มุมมอง 5272 ปีที่แล้ว
Go Ethereum Tutorial - 03 - Create an Ethereum Wallet using Go
Go Ethereum Tutorial - 02 - Get Balance of an Ethereum Address using Go
มุมมอง 7712 ปีที่แล้ว
Go Ethereum Tutorial - 02 - Get Balance of an Ethereum Address using Go

ความคิดเห็น

  • @VthePeople4156
    @VthePeople4156 2 วันที่ผ่านมา

    Please document it share to everyone

  • @VthePeople4156
    @VthePeople4156 2 วันที่ผ่านมา

    Note @@@ font should be very Big & colourful for future video's

  • @VthePeople4156
    @VthePeople4156 2 วันที่ผ่านมา

    Please devopsify same app Build more on demand API projects & devopsify by using all on demand devops tools... && Do more Mini api projects & devopsify by using Azure Devops/// Aws amplify Ai

  • @VthePeople4156
    @VthePeople4156 2 วันที่ผ่านมา

    Bro please do more daily Mini projects & devopsify.... Explain us even kids will understand...font is very small ....in future videos with big font

  • @mafia2117
    @mafia2117 5 วันที่ผ่านมา

    Bhai thanks for the video, looking forward to more and more videos

  • @RaviKumar-ms3qx
    @RaviKumar-ms3qx 18 วันที่ผ่านมา

    Excellent, thanks for sharing

  • @elfreda-f8b
    @elfreda-f8b 2 หลายเดือนก่อน

    Appreciate the detailed breakdown! I have a quick question: My OKX wallet holds some USDT, and I have the seed phrase. (air carpet target dish off jeans toilet sweet piano spoil fruit essay). What's the best way to send them to Binance?

  • @ThangPhan-q3u
    @ThangPhan-q3u 3 หลายเดือนก่อน

    Thank you so much :)

  • @myyyp1
    @myyyp1 3 หลายเดือนก่อน

    Is it a cooler noise?)