Skip to content

Instantly share code, notes, and snippets.

View wadmiraal's full-sized avatar

Wouter Admiraal wadmiraal

View GitHub Profile
@wadmiraal
wadmiraal / Drupal default tabs styles.scss
Last active February 29, 2016 17:46
Drupal default tabs styles. Enhance the default Drupal tabs styles with this little snippet. They look much better.
ul.tabs {
border-bottom: 0;
margin: 20px;
padding: 0;
overflow: hidden;
li {
float: left;
margin-right: .5em;
@wadmiraal
wadmiraal / ps_aux_sorted.sh
Last active August 29, 2015 14:13
List top programs by number of processes
ps aux | awk '{ print $11 }' | sort | uniq -c | sort -r