Sean DeverImporting Local Packages in GoWe all know that with go, we need a “main.go” file to execute in order to run our application. And though we can hold everything within a…Dec 27, 2020Dec 27, 2020
Sean DeverSpeech Recognition in ReactSpeech recognition is when a user is able to speak into their computer’s microphone, the speech gets processed into something the readble…Dec 21, 2020Dec 21, 2020
Sean DeverPointers in the Go Programming Language(golang)Like many other programming languages, there are two ways in which we can pass data in Go. You can either pass by value where Go will make…Dec 13, 2020Dec 13, 2020
Sean DeverSliding Window Algorithm Approach(Go example)Why use the Sliding Window?Dec 7, 2020Dec 7, 2020
Sean DeverFrequency Counter Algorithm Pattern(Go Example)A solid approach to a lot of common coding problems you may incur.Nov 29, 2020Nov 29, 2020
Sean DeverWhat are Go Structs? (golang)Most programming languages typically follow one of two styles, Functional programming(software construction by creating pure functions) or…Nov 22, 2020Nov 22, 2020
Sean DeverBasic SQLite CommandsBeing able to work with a database is important. With SQLite we’re able to create new data tables, retrieve certain information from those…Nov 15, 2020Nov 15, 2020
Sean DeverWorking with Slices in Go(golang)In other programming languages like JavaScript, slices are a function that we call that returns a shallow copy of a portion of an array…Nov 8, 2020Nov 8, 2020
Sean DeverWorking with Arrays in Go(golang)In every programming language, there are ordered series or arrangements of elements called arrays. But Go handles arrays differently…Oct 31, 2020Oct 31, 2020
Sean DeverVariables in the Go Programming LanguageGo Programming Languages Variables in a Nutshell.Oct 24, 2020Oct 24, 2020