Skip to contentSkip to content
iTestee

iTestee

Improve ourselfs

  • Uncategorized
  • Database
    • MySql
    • Postgres
    • SQL
    • SQL Server
    • Data Science
  • Electronics
  • Coding
    • .Net
    • Flutter
    • Java
    • Python
    • GoLang
Close Button

Dependency Injection in GO langDependency Injection in GO lang


March 15, 2023March 15, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 2:32 am

Dependency Injection (DI): DI is a design pattern used to remove dependencies between software components by injecting required dependencies into an object from outside the object itself. In other words,

Read MoreRead More

Two Different Ways Of Creating A New Instance in GOTwo Different Ways Of Creating A New Instance in GO


March 15, 2023March 15, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 2:26 am

Example: what is the different between x :=MySQL{db: mysql} and x := NewMySQL(mysql) In Go, x := MySQL{db: mysql} and x := NewMySQL(mysql) are two different ways of creating a

Read MoreRead More

what is the different Between DTO, VO and Entitywhat is the different Between DTO, VO and Entity


March 15, 2023March 15, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 2:16 am

DTO, VO, and Entity are different design patterns used to represent data objects in software development, and they have different purposes and characteristics. Here’s a brief explanation of each pattern:

Read MoreRead More

What are the areas that you need to follow in Python as a data scientistWhat are the areas that you need to follow in Python as a data scientist


March 12, 2023March 12, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 1:52 am

As a data scientist, there are several areas that you should focus on in Python to develop your skills and knowledge. Here are some of the key areas that you

Read MoreRead More

what are the areas that i have to study as a data scientistwhat are the areas that i have to study as a data scientist


March 12, 2023March 12, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 12:39 am

As a data scientist, there are several areas that you should focus on to develop your skills and knowledge. Here are some of the key areas that you should study:

Read MoreRead More

What is a defer statement in Go? When would you use it?What is a defer statement in Go? When would you use it?


March 11, 2023March 11, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 4:08 am

In Go, a defer statement is used to schedule a function call to be executed immediately before the surrounding function or block returns. The defer statement is typically used to

Read MoreRead More

How do you handle errors in Go?How do you handle errors in Go?


March 11, 2023March 11, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 3:38 am

In Go, errors are represented as values of the built-in error type. To handle errors, you typically use the following pattern: result, err := someFunctionThatReturnsAnError() if err != nil {

Read MoreRead More

What is a goroutine in Go? How is it different from a thread?What is a goroutine in Go? How is it different from a thread?


March 11, 2023March 11, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 3:32 am

In Go, a goroutine is a lightweight thread managed by the Go runtime. It’s different from a thread in several ways: To create a goroutine, you simply add the keyword

Read MoreRead More

Most common different between Docker Swarm and Open ShiftMost common different between Docker Swarm and Open Shift


March 11, 2023March 11, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 3:08 am

OpenShift and Docker Swarm are both container orchestration platforms, but there are several differences between them. 1. Architecture: OpenShift is built on top of Kubernetes, which is a popular container

Read MoreRead More

Gin and GORM simple sampleGin and GORM simple sample


March 10, 2023March 10, 2023 | iTesteeAdminiTesteeAdmin | 0 Comment | 2:47 am

Example is based on 1. Connect to a Postgres DB using GORM 2. Create a User table in the DB 3. Use Get and Post method using Gin CODE: In

Read MoreRead More

Posts navigation

Page 1 Page 2 Next page
  • Dependency Injection in GO lang
  • Two Different Ways Of Creating A New Instance in GO
  • what is the different Between DTO, VO and Entity
  • What are the areas that you need to follow in Python as a data scientist
  • what are the areas that i have to study as a data scientist
  • March 2023
  • May 2022
  • Postgres DB
  • Sample Page
  • Test Page
Enter title
25%
Enter title
25%
Enter title
25%

iTestee technical feeds iTestee

Scroll Up