Skip to content

Instantly share code, notes, and snippets.

View amitozdeol's full-sized avatar
🐢
Focusing

Amitoz Deol amitozdeol

🐢
Focusing
View GitHub Profile
@amitozdeol
amitozdeol / Terminal_new.md
Created August 24, 2018 17:16
Terminal new commands

tldr > man

It's amazing that nearly every single command line tool comes with a manual via man , but navigating the man output can be sometimes a little confusing, plus it can be daunting given all the technical information that's included in the manual output.

htop > top

htop is an improvement on both regular top and crappy-mac top. Lots of colour coding, keyboard bindings and different views which have helped me in the past to understand which processes belong to which.

Handy key bindings include:

<div class="container-1">
<div class="box-1">
<h3>Box One</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="box-2">
<h3>Box Two</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="box-3">

Blog - https://medium.com/@Clovis_app/configuration-of-a-beautiful-efficient-terminal-and-prompt-on-osx-in-7-minutes-827c29391961

Configuration of a beautiful (efficient) terminal and prompt on OSX in 7minutes Here at www.clovis.pro, we changed our prompt to a more functional one for a :

🎬 Better visualisation of git status 🏎️ Faster shell autocompletions 💮 Daily coding comfort

Obviously we didn’t want to spend hours with shell configuration and customization like many people do… That’s why we made this article !

@amitozdeol
amitozdeol / va.css
Created January 21, 2018 19:22
Vertical align
.controller{
clear: both;
display: table;
}
//Everything inside the controller is vertically aligned
.controller *{
vertical-align: middle;
}