When I attempt to execute command npm i I am getting the following...
parallels@ubuntu-linux-20-04-desktop:~/Documents/Code/angular-complete-guide-routing$ sudo npm -i
[sudo] password for parallels:
node:internal/modules/cjs/loader:933
| /* | |
| challenge: persist vars across GO statements | |
| solution: store vars in a temp table | |
| */ | |
| CREATE TABLE #vars_to_remember | |
| ( | |
| varName VARCHAR(20) PRIMARY KEY, | |
| value BIT | |
| ) |
| <cfscript> | |
| // given | |
| var queryObject = new Query( | |
| name = "resultsQuery", | |
| sql = " | |
| INSERT | |
| INTO … | |
| " | |
| ); | |
Because I own an M1 Mac and want to learn Rails
following along https://www.youtube.com/watch?v=AYyZ_n-fNpc&t=7s
He / Him
[email protected]
GitHub | LinkedIn | Google Doc Resume
Public Trust
| #!/bin/bash | |
| while true | |
| do | |
| # --partial | |
| if rsync -av --delete-after --progress --bwlimit=500 "/source/directory/path/" "/destination/directory/path"; then # SC2181 | |
| echo "~ * ~ * ~ * ~ Job's done! rsync is where a pirate washes their dishes" | |
| exit | |
| else | |
| echo "~ * ~ * ~ * ~ Shiver Me Timbers, rsync has walked the plank! will retry in 180 seconds" | |
| sleep 180 |