B2 Tech

Web Dev Snippets

  • Facebook
  • Twitter
  • Google Plus
  • Home
  • Java
    • Core Java
    • Core Java Programs
    • Java Swings
    • JavaFX
  • Web Technologies
    • Angular 10
    • Angular 2
    • Angular 9
    • Boostrap 4
    • CSS
    • Express.js
    • High Charts
    • HTML
    • Javascript
    • Javascript Programs
    • jQuery
    • Mongoose
    • Nodejs
    • Typescript
  • Advance Java/J2EE
    • JSF
    • JSP
    • Servlets
    • Thymeleaf
    • Spring MVC
    • Spring JDBC
    • Spring Boot
    • JPA
    • Hibernate
    • Struts
    • MyBatis/iBatis
  • Interview Programs
  • Web Services
    • REST Services
    • SOAP Services
  • Spring Boot
    • Spring Boot [100+ Tutorials]
    • Spring Security
    • Spring Annotations
    • Spring Data JPA
    • GraphQL and Spring Boot
  • About
  • Contact
  • Udemy Courses
    • React and Spring Boot
    • Angular and Spring Boot
  • Cloud
    • AWS

Category - Golang

  • Golang

Data types in Golang

9 months ago
by Bushan Sirgur
1 min read
Add Comment

Hey guys in this post, we will discuss the different datatypes provided by Golang. Integer type Floating type String Boolean package main import ( "fmt" "reflect" ) func main()...

Continue reading

  • Golang

Math functions in Golang

9 months ago
by Bushan Sirgur
2 min read
Add Comment

Hey guys in this post, we will discuss some of the math functions that Golang provided out of the box. The math package in Go contains entirely of many math functions that can be used to do different things. Here are the main...

Continue reading

  • Golang

Fibonacci series program in Golang

10 months ago
by Bushan Sirgur
1 min read
Add Comment

Hey guys in this post, we will write a program to print first 10 fibonacci numbers using Golang. package main import "fmt" func fibonacci() func() int { a, b := 0, 1 return func() int { ret := a a, b = b...

Continue reading

  • Golang

Functions in Go Language

10 months ago
by Bushan Sirgur
1 min read
Add Comment

Hey guys in this post, we will discuss the functions and how to call functions in Golang with easy to understand examples. 1. Create a directory mkdir go-workspace 2. Move inside the directory cd go-workspace 3. Create an...

Continue reading

  • Golang

Println vs Printf vs Print in Go

10 months ago
by Bushan Sirgur
1 min read
Add Comment

Hey guys in this post, we will discuss the difference between Println(), Printf() and Print() methods with examples. 1. Create a directory mkdir go-workspace 2. Move inside the directory cd go-workspace 3. Create an empty...

Continue reading

  • Golang

How to Print Hello World in Go Language

10 months ago
by Bushan Sirgur
1 min read
Add Comment

Hey guys in this post, we will see how to print Hello world in Go programming language with detailed explanation. 1. Create a directory mkdir go-workspace 2. Move inside the directory cd go-workspace 3. Create an empty...

Continue reading

About Author

View all posts

Support me


Love my tutorials? Please support me by donating:

Newsletter



Recent Posts

  • MySQL Docker Image Example 10 months ago
  • Dockerize Hello World Java Program 10 months ago
  • Write a Program to find the second largest number in array in Java 10 months ago
  • JPQL query using Containing condition 10 months ago
  • JPQL query using Ending With condition 10 months ago
  • JPQL query using Starting With condition 10 months ago
  • JPQL query using Not Like condition 10 months ago
  • JPQL query using Like condition 10 months ago
  • JPQL query using IsNotNull condition 10 months ago
  • JPQL query using IsNull condition 10 months ago

Featured Posts

  • MySQL Docker Image Example
  • Dockerize Hello World Java Program
  • Write a Program to find the second largest number in array in Java
  • JPQL query using Containing condition
  • JPQL query using Ending With condition

Most Viewed Posts

  • A Complete CRUD Application with Spring MVC and MyBatis/iBatis (27,645)
  • Login Form in JavaFX with MySQL Database (25,893)
  • Spring Data JPA findBy Multiple Columns with Example (23,595)
  • Angular 2 and Spring REST Simple CRUD Application (23,425)
  • Spring Data JPA findBy Column Name with Example (21,594)

Categories

  • Angular 10 (2)
  • Angular 2 (2)
  • Angular 9 (7)
  • AWS (1)
  • Boostrap 4 (25)
  • Core Java (45)
  • Core Java Programs (41)
  • CRUD Applications (34)
  • CSS (28)
  • Design Patterns (2)
  • DevOps (1)
  • Docker (2)
  • Express.js (8)
  • Golang (6)
  • GraphQL (5)
  • Hibernate (26)
  • High Charts (3)
  • HTML (53)
  • Interview Programs (34)
  • Java Swings (4)
  • JavaFX (2)
  • Javascript (35)
  • Javascript Programs (23)
  • JDBCTemplate (6)
  • JPA (85)
  • jQuery (20)
  • JSF (21)
  • JSP (42)
  • Mongoose (7)
  • MyBatis/iBatis (2)
  • Nodejs (8)
  • React.js (12)
  • REST Services (100)
  • Servlets (4)
  • SOAP Services (1)
  • Spring Boot (152)
  • Spring MVC (130)
  • Spring Security (17)
  • Testing (2)
  • Thymeleaf (10)
  • Tools (1)
  • Uncategorized (5)
  • Utilities (1)
Copyright © 2022. Created by Bushan Sirgur. Powered by B2 Tech.
  • Facebook
  • Linkedin
  • Instagram
  • Youtube
  • Github
  • Home
  • Java
    • Core Java
    • Core Java Programs
    • Java Swings
    • JavaFX
  • Web Technologies
    • Angular 10
    • Angular 2
    • Angular 9
    • Boostrap 4
    • CSS
    • Express.js
    • High Charts
    • HTML
    • Javascript
    • Javascript Programs
    • jQuery
    • Mongoose
    • Nodejs
    • Typescript
  • Advance Java/J2EE
    • JSF
    • JSP
    • Servlets
    • Thymeleaf
    • Spring MVC
    • Spring JDBC
    • Spring Boot
    • JPA
    • Hibernate
    • Struts
    • MyBatis/iBatis
  • Interview Programs
  • Web Services
    • REST Services
    • SOAP Services
  • Spring Boot
    • Spring Boot [100+ Tutorials]
    • Spring Security
    • Spring Annotations
    • Spring Data JPA
    • GraphQL and Spring Boot
  • About
  • Contact
  • Udemy Courses
    • React and Spring Boot
    • Angular and Spring Boot
  • Cloud
    • AWS
  • Facebook
  • Twitter
  • Google Plus