- 98
- 172 659
Tech with Satyajit Das
United Kingdom
เข้าร่วมเมื่อ 29 ส.ค. 2018
satyajitdas90
This channel includes useful videos covering the following topics:
- Software Engineering
- DevOps & Infrastructural Topics
- Tips on applying for Global Talent Visa for UK
- How to be productive and more effective in your day to day life
I am Satyajit Das. My experience involves building Software, research in Mechanics and some DevOps tools/practices.
www.linkedin.com/in/satyajit-das-73869b44/?originalSubdomain=uk
This channel includes useful videos covering the following topics:
- Software Engineering
- DevOps & Infrastructural Topics
- Tips on applying for Global Talent Visa for UK
- How to be productive and more effective in your day to day life
I am Satyajit Das. My experience involves building Software, research in Mechanics and some DevOps tools/practices.
www.linkedin.com/in/satyajit-das-73869b44/?originalSubdomain=uk
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. :)
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...
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
Quick Introduction to Go-Ethereum codebase
มุมมอง 1.1Kปีที่แล้ว
Quick Introduction to Go-Ethereum codebase
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
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
Please document it share to everyone
Note @@@ font should be very Big & colourful for future video's
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
Bro please do more daily Mini projects & devopsify.... Explain us even kids will understand...font is very small ....in future videos with big font
Bhai thanks for the video, looking forward to more and more videos
Excellent, thanks for sharing
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?
Thank you so much :)
Cheers!
Is it a cooler noise?)