• Skip to main content
  • Skip to primary sidebar

Harry's Developer Blog

Software Development

GO: Find the Minimum Integer Value in a Go Slice

February 22, 2021 by Harrison Brock

golang

You need to find the minimum integer in a Go slice. How would you do it? Solution This is the solution I wrote for Ardan Labs Training Kit: You can find the source code here: GoTraining … [Read more...] about GO: Find the Minimum Integer Value in a Go Slice

GO: Reverse a String

February 8, 2021 by Harrison Brock

golang

In this tutorial, we will learn how to reverse a string in Go. In this example, we will using a rune to reverse the string: … [Read more...] about GO: Reverse a String

Git: Rename a Branch

February 1, 2021 by Harrison Brock

Every developer will face having to renaming a Git branch at some point. This short tutorial will cover renaming a local Git branch and then renaming a remote Git branch. Renaming a Git Branch Locally To rename the current branch that you have … [Read more...] about Git: Rename a Branch

GO: Convert Integer to String

January 25, 2021 by Harrison Brock

golang

Introduction In this short tutorial, we'll learn how to convert an  integer  to a string using Go. To complete this task, we will use the Strconv Package. Integer to String … [Read more...] about GO: Convert Integer to String

GO: Convert String to Integer

January 23, 2021 by Harrison Brock

golang

Introduction In this short tutorial, we'll learn how to convert a string to an integer using Go. To complete this task, we will use the Strconv Package. String to Integer … [Read more...] about GO: Convert String to Integer

Next Page »

Primary Sidebar

  • GitHub
  • LinkedIn
  • Twitter

Categories

  • Git
  • Go
  • makefile

Copyright © 2021 · Harrison Brock