MKMarline Khaveleincodebeast.hashnode.dev·Jul 2, 2021 · 2 min readGit BundleI was Interviewing For a Backend Engineer role and this company, and they sent a coding challenge that was inside a bundle file and believe me when I say I have never used git bundle and I have been using git ever since I started programming. A git b...00
MKMarline Khaveleincodebeast.hashnode.dev·Apr 27, 2021 · 2 min readData Structures and AlgorithmsThe Problem: Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to the target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Exa...00
MKMarline Khaveleincodebeast.hashnode.dev·Mar 16, 2021 · 1 min readMysql Database BasicsHow to log in to a local database MySQL -u(username) -p(password). How to log in to a hosted database. mysql -u(username) -p(password) -h How to dump a database from a server. mysql -u(username) -p(password) -h (db name)>file.sql Change password. ...00
MKMarline Khaveleincodebeast.hashnode.dev·Feb 3, 2021 · 3 min readDatabase Scaling TechniquesBeen a Backend Engineer Has made me take interest in techniques for scaling databases to meet high demands in terms of performance and reliability. sometimes we get a lot of pressure when it comes to designing databases because you don't know if you ...00
MKMarline Khaveleincodebeast.hashnode.dev·Jan 25, 2021 · 3 min readSoftware Design PrinciplesSoftware Engineering is a complex process, the results of which depend on several variables that are not always determined by the engineer working on that specific project. This is a set of guidelines that helps engineers to make a good system design...00