Skip to main content

Recently Updated Pages

If/else

Go / Golang Go with Examples

If/else If else is very similar to C except you just take out the parenthesis. func main() { ...

Updated 2 years ago by Tamarine

Spring Injection Order

Spring and Spring Boot

First of all don't mix and match injection for your fields If you are going to let Spring do you...

Updated 2 years ago by Tamarine

Upstream vs Downstresam API

General Programming Principal

All this discussion is relative based on an API that uses another API and that API is being used ...

Updated 2 years ago by Tamarine

Structs exported fields

Go / Golang

Exported structs and fields Like functions if you would like to export a struct from a package f...

Updated 2 years ago by Tamarine

grep, awk, sed family tool

Bash Shell

Grep Global Regular Expression Pattern With grep you can do simple text-based or regular expres...

Updated 2 years ago by Tamarine

Difference between single (' ') quote vs double (" ") quote

Bash Shell

Single Quote Using single quote in bash script will preserve the literal value of each character...

Updated 2 years ago by Tamarine

Lifecycle, Phases, goals, and Plugins?!

Java Maven

Maven Lifecycle Maven is a build automation tool at heart. It has three built-in lifecycle that ...

Updated 2 years ago by Tamarine

package, install, release, deploy phases

Java Maven

mvn package will construct your artifactory, i.e. a jar file and then place it in the current w...

Updated 2 years ago by Tamarine

Lambda expression in Java

Java

How are lambda function done in Java Because Java likes everything to be under a class or an int...

Updated 2 years ago by Tamarine

Import packages / modules

Go / Golang

I have a helper file that I would like to use within the same project. If say your directory lay...

Updated 2 years ago by Tamarine

Packages vs Modules

Go / Golang

Preliminary Forget about the packages and modules that you know from Python, it is no related, y...

Updated 2 years ago by Tamarine

Bash Cheatsheet

Bash Shell Cheat Sheet

Multi-line Command To execute multi-line command in bash script simple put a \ after breaking up...

Updated 2 years ago by Tamarine

Vim Cheatsheet

Bash Shell Cheat Sheet

Mandatory get out of Vim joke Ughhh how do I escape Vim? # <ESC> :wq, write the changes to the ...

Updated 2 years ago by Tamarine

Compressed file vs Archived file

Linux General Knowledge

Archived file An archived file is basically a collection of files and directories stored into on...

Updated 2 years ago by Tamarine

How does inner, left, right, full join work?

SQL

When and what is a JOIN? Querying data in your database from only one table can only get you so ...

Updated 2 years ago by Tamarine

Little and Big Endian

C Notes

Endianness Little and big endian are two ways of storing multibyte data-types into memory. For s...

Updated 2 years ago by Tamarine

Unpacking operator in code and function header

Python

Unpacking In Python you are allowed to do deconstruction similar to how you can do deconstructio...

Updated 2 years ago by Tamarine

More about OAuth2.0 grant

NodeJs/JavaScript

What is a grant? When you sent a request to the authorization server you will sent a field that ...

Updated 2 years ago by Tamarine

tr and cut command

Bash Shell

tr The tr command is used to translate or delete characters that comes from the standard input. ...

Updated 2 years ago by Tamarine

Global variables with imports

Python

Sharing global variables between modules If for whatever reason you need to share global variabl...

Updated 2 years ago by Tamarine