Posts

I may turn this blog into a witchraft blog.

 Seems appropriate?

I Like The New Twitter UI

Image
This one is the Lights Out option under the More section > background > display

Learning goormide

Personally I would like to use another cloud IDE but this is what is currently used in the SQL tutorial I am currently studying at Udemy and it is also nice to learn a new IDE.

Learning MySQL

Seems like a random decision but this is good for a change and because it is actually relevant to what I do in my current job as a warehouse associate. We use Periscope and SQL is of course used in Periscope.

VS Code Shortcuts

Shift+Alt +F -- Align the codes properly yay! " emmet.preferences " : { " format.forceIndentationForTags " : [ " body " " div " ] Edit in JSON. This automatically pushes the closing tab into a new line. Very convenient instead of pushing enter and even more so in nested Emmet abbreviations.

Currently my VS Code theme

Image
This the Material Theme Ocean High Contrast. I find it very pleasing to the eyes and probably makes me more productive. I like the terminal to be on the right side with lots of space vertically so I can enter lots of commands before needing to use clear at the same time I feel like the main editor space is just enough.

Git Pull Origin Master & other Git Overrides

git pull origin master I learned something today about editing local repo without first updating it. Good thing there was only a very minor change in the master branch. So I learned that I should update the local repo first before making a ton of changes to it. I do not yet know how just combine the two without creating creating problems in the code. I assume depends on the codes themselves and that it has to do with merging. Also: git push origin --force Just totally override the master branch with the local repo git reset --hard origin/master Just totally override the local repo with the master branch Emmet Review ul.main-nav>li*4>a result: <ul class="main-nav">     <li><a href=""></a></li>     <li><a href=""></a></li>     <li><a href=""></a></li>     <li><a href=""></a></li> </ul>

Git Bash Review

This is a good enough review of Git Bash terminal commands pwd - (print working directory) present directory ls - list files and folders ls -l  - more details cd - change directory *tab - use this for autocompletion cd ../../.. - 3 levels dows cd .. - 1 level down cd ~ - home directory cd - home directory (no parameters) cd " " - directly into any directory echo - display something echo '$PATH' - variable interpolation, show current path cat - show content of a file less - show content, navigable using arrows, press Q to exit touch - create a file mv - rename a file, move a file into another name rm - remove a file *using touch filename simply modifies the current last access time stamp mkdir - make directory mkdir /p - make multilevel directory rm -r -f - force remove a directory recursively if it is not empty exit - exit terminal >> - output to a file > - output to a file, replace the con...

Recoding

I have decided last year to take a break from learning to code but now I have a new zeal to keep on learning. I have gone as far as make my own personal live website with its own favicon (lol). So why not keep on going :D Also: I realize that it has been just two days short until one year since I took a break.👦