daily log 10.29.20
TIL MONGO / MONGOD:
- MacOS on catalina doesn’t let you write to the /usr directory
- Homebrew installation of mongo is suggested
- Adding aliases into .zshrc file lets us still use the same commands
See THIS for details
CURRENT PROJECTS:
- CM – catcart (umjs-ecomm-catcart, personalposher, personalposherLIVE, personalposher-backend)
- FEM – rockpaper
-
UJS – CURRENT: rewriting selection sort until I can do it eyes closed YESTERDAY: Anki studying 25 min. PREVIOUSLY: UJS Selection Sort BACKLOG (Firecode/Leetcode/System Design) - RecipeScraper (maybe daniel?)
SELECTION SORT:
The comparisons
function ss(arr){
for (var i=0;i<arr.length;i++){
for (var j=i+1;j<arr.length;j++){
console.log(i,j)
}
}
}
var myArray = [12,11,4,6,5]
ss(myArray)