Posts

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.👦

More Tiles

Image
Why yes, I am fixated. It's what I do. Doing things over and over.

Notebook/Laptop Stickers

Image
Not Much to show off but at least mine does not look messy.

My Personal Website is Up

Image
hilarymanuel.com I have been working on this all day yesterday. I initially thought that I may not have all the necessary knowledge to build a site close to what I envision but I do actually. I have to try to find that out myself. This has been possible mostly due to the availability of css grid. I want it to be somewhat minimalist and I think it is kinda cutesy despite the conservative colors I decided to choose.

Header Background

Image
Just created this in Painshop Pro. This color scheme is so me. This is now my  Twitter  background.

To Do (Week 7)

I fell like I am gaining momentum and it's time for me to assess my progress. Current Activities:   - leveling up Javascript   - learning Bash **   - learning Bash Scripting **   - coding in Rust ***   - tinkering on my helloworldsandbox   - blogging (of course) To Do:   - level up CSS   - learn Bootstrap *   - algorithms in Javascript   - learn JQuery   - practice web design (with CSS grids, Bootstrap, freecodecamp challenges) Others: (not priority at this time but are interesting)   - compose my domain landing page   - SASS   - React   - Node.js   - React.js   - Photoshop CC   - Adobe XD   - Vue.js   - Advanced algorithms   --(not priority and not currently interesting)   - level up HTML   - level up CSS   - MongoDB Done:   - Git   - Git Bash   - Emmet   - VS Code   - basic HTML   - basic CSS ...