Emiko N-P.Dijkstra’s AlgorithmDijkstra’s algorithm was invented by Edsger Dijkstra, a Dutch computer scientist and mathematics professor. Dijkstra wondered what the…Apr 28, 2022Apr 28, 2022
Emiko N-P.Introduction to SassFor today’s blog I wanted to introduce Sass, or Syntactically Awesome Stylesheets. Sass, is a css preprocessor which means it processes…Apr 22, 2022Apr 22, 2022
Emiko N-P.Hash Maps in DepthHash Maps, otherwise known as Hashes, or Hash Tables, or Dictionaries are a data structure, like arrays or linked lists. Like arrays…Feb 27, 2022Feb 27, 2022
Emiko N-P.Stylish Styling: CSS SelectorsRecently, I’ve been brushing up on my CSS in preparation to style a project I’ve been working on. As I’ve been going back through documents…Jan 10, 2022Jan 10, 2022
Emiko N-P.Big O NotationLet’s say you and your friend are working on an application and run into a tricky problem. You each come up with a solution. Now you need…Jan 3, 2022Jan 3, 2022
Emiko N-P.Sorting Algorithms Part 4: QuicksortFor today’s algorithm we’re going to take a look at Quicksort. Quicksort is a sorting algorithm, that takes an array of numbers and sorts…Dec 27, 2021Dec 27, 2021
Emiko N-P.A Beginner’s Guide to React styled-componentsI was working on a personal project recently and wanted to style some of my components. Since react components don’t have built in styling…Dec 20, 2021Dec 20, 2021
Emiko N-P.Sorting Algorithms Part 3: Selection SortToday we’re going to learn about our third simple sorting algorithm: selection sort. Selection sort, like the two sorting algorithms we’ve…Dec 10, 2021Dec 10, 2021
Emiko N-P.Sorting Algorithms Part 2: Insertion SortFor our second sorting algorithm we’re going to look at insertion sort. Insertion sort is similar to bubble sort but works a little…Dec 6, 2021Dec 6, 2021
Emiko N-P.Sorting Algorithms Part 1: Bubble sortMost algorithms are just optimal ways of accomplishing a certain task or operation using code. Having a sort of optimal procedure created…Nov 28, 2021Nov 28, 2021