Candace Codes·Feb 22, 2021How to Approach AlgorithmsAlgorithms can feel like a difficult beast to approach, however, breaking it down into manageable steps can keep the stress from elevating…
Candace Codes·Feb 15, 2021What are Hash Tables and How to Implement Them Part 1I’ve been asked this question one too many times now to not write about it.
Candace Codes·Feb 5, 2021Searching AlgorithmsThe purpose of Searching Algorithms is to give users the ability to check for an element or retrieve an element from the data structure…
Candace Codes·Oct 26, 2020ELI5: Data Structures BasicsWhat are data structures and why does it matter for coding? When given a set of data values, the values can be formatted to fit certain…
Candace Codes·Oct 16, 2020ELI5: SQL (Standard Query Language)SQL stands for Standard Query Language and is the standard language for relational database management systems. Using SQL, data in a…
Candace Codes·Jul 20, 2020ELI5: Data Structures in Computer EngineeringWhy Data Structure Matters: When designing a new application or program which may rely on a multitude of algorithms, the speed of how data…
Candace Codes·Jul 12, 2020ELI5 Object-Relational MappingWhat is ORM and what is it used for? ORM is the abbreviation for object-relational mapping and is a technique to communicate between two…
Candace Codes·Jun 21, 2020ELI5: ActiveRecordActiveRecord is a part of the M (Model) in MVC. By following a few naming guidelines, ActiveRecord accurately maps out data between…