Open in app

Sign In

Write

Sign In

Sean Dever
Sean Dever

39 Followers

Home

About

Dec 27, 2020

Importing Local Packages in Go

We 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 main.go file, as our app gets larger in size and more functions are made things could get really messy really fast. …

2 min read

Importing Local Packages in Go
Importing Local Packages in Go

2 min read


Dec 21, 2020

Speech Recognition in React

Speech recognition is when a user is able to speak into their computer’s microphone, the speech gets processed into something the readble for the computers on the other end. The servers on the other end then return the interpreted speech into text! Now before I go any further I do…

2 min read

2 min read


Dec 13, 2020

Pointers 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 a literal copy of the data you want to use(this uses more memory because it is making a copy of the data) or…

2 min read

Pointers in the Go Programming Language(golang)
Pointers in the Go Programming Language(golang)

2 min read


Dec 7, 2020

Sliding Window Algorithm Approach(Go example)

Why use the Sliding Window? Nowadays, brute force quadratic time(O(N²)) solutions consisting of nested for loops just don’t cut it. The Sliding Window method is a great alternative to some brute force solutions. It typically of linear time(O(N)) complexity, and with space complexity of 0(1). …

3 min read

Sliding Window Algorithm Approach(Go example)
Sliding Window Algorithm Approach(Go example)

3 min read


Nov 29, 2020

Frequency Counter Algorithm Pattern(Go Example)

Why should we use it? There are many different ways to approach solving problems. However usually, the most obvious ones aren’t the optimal solution. An example would be using nested loops. We call this the brute force method or the naive approach, and the reason these aren’t optimal solutions is that they are very slow…

Algorithms

2 min read

Frequency Counter Algorithm Pattern(Go Example)
Frequency Counter Algorithm Pattern(Go Example)
Algorithms

2 min read


Nov 22, 2020

What are Go Structs? (golang)

Most programming languages typically follow one of two styles, Functional programming(software construction by creating pure functions) or Object-oriented programming(a class-based structure working primarily with objects). Go is a multi-paradigm programming language which means that it’s a language capable of doing both. But Go does not have classes so how could…

Go

2 min read

What are Go Structs? (golang)
What are Go Structs? (golang)
Go

2 min read


Nov 15, 2020

Basic SQLite Commands

Being able to work with a database is important. With SQLite we’re able to create new data tables, retrieve certain information from those tables, run queries to match certain data we want to retrieve, and much more. …

3 min read

Basic SQLite Commands
Basic SQLite Commands

3 min read


Nov 8, 2020

Working 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 into a new array. In Go, they do very much the same thing, but the syntax is a bit different. It looks just like an array…

Go

2 min read

Working with Slices in Go(golang)
Working with Slices in Go(golang)
Go

2 min read


Oct 31, 2020

Working with Arrays in Go(golang)

In every programming language, there are ordered series or arrangements of elements called arrays. But Go handles arrays differently compared to some other like JavaScript or Ruby. Let us take a look at Arrays, how they’re structured, and how to write them in Go! …

Go

3 min read

Working with Arrays in Go(golang)
Working with Arrays in Go(golang)
Go

3 min read


Oct 24, 2020

Variables in the Go Programming Language(golang)

Before going into how Go goes about handling its variables I want to do a brief explanation of the language and why someone would want to use the language in the first place. The Go programming language(also referred to as golang)is an open-source language that was developed at Google. The…

Golang

4 min read

Variables in the Go Programming Language
Variables in the Go Programming Language
Golang

4 min read

Sean Dever

Sean Dever

39 Followers
Following
  • Alessandro Butler

    Alessandro Butler

  • Vanessa Ross

    Vanessa Ross

  • Reinald Reynoso

    Reinald Reynoso

  • Manoj Fernando

    Manoj Fernando

  • Joan Indiana Lyness

    Joan Indiana Lyness

See all (31)

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech

Teams