To remove just git package itself from Ubuntu 14.04 execute on terminal:
$ sudo apt-get remove git
To remove the git package and any other dependant package which are no longer needed from Ubuntu Trusty.
$ sudo apt-get remove --auto-remove git
| /** | |
| * Adds query params to existing URLs (inc merging duplicates) | |
| * @param {string} url - src URL to modify | |
| * @param {object} params - key/value object of params to add | |
| * @example | |
| * // returns /guides?tag=api | |
| * addQueryParamsToUrl('/guides?tag=hardware', { tag:'api' }) | |
| * @example | |
| * // returns https://orcascan.com/guides?tag=api | |
| * addQueryParamsToUrl('https://orcascan.com/guides?tag=hardware', { tag: 'api' }) |
| # vim:fileencoding=utf-8:ft=conf:foldmethod=marker | |
| #: Fonts {{{ | |
| #: kitty has very powerful font management. You can configure | |
| #: individual font faces and even specify special fonts for particular | |
| #: characters. | |
| font_family JetBrains Mono Medium | |
| bold_font JetBrains Mono Bold |
| #!/bin/bash | |
| sudo apt-get install -y devilspie | |
| mkdir -p ~/.devilspie | |
| echo ' | |
| (if (contains (window_class) "Code") | |
| (begin | |
| (spawn_async (str "xprop -id " (window_xid) " -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 ")) | |
| (spawn_async (str "xprop -id " (window_xid) " -f _NET_WM_WINDOW_OPACITY 32c -set _NET_WM_WINDOW_OPACITY 0xD8000000")) |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>author</key> | |
| <string>Chris Thomas</string> | |
| <key>name</key> | |
| <string>Mac Classic</string> | |
| <key>settings</key> | |
| <array> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Add React in One Minute</title> | |
| </head> | |
| <body> | |
| <h2>Add React in One Minute</h2> | |
| <p>This page demonstrates using React with no build tooling.</p> |
| # change prefix to Ctrl-a (like in gnu-screen) | |
| unbind C-b | |
| set-option -g prefix C-a | |
| bind-key C-a send-prefix | |
| # start with window 1 (instead of 0) | |
| set -g base-index 1 |
Code is clean if it can be understood easily β by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| # Our .tmux.conf file | |
| # Setting the prefix from C-b to C-s | |
| set -g prefix C-s | |
| # enable vi keys. | |
| setw -g mode-keys vi | |
| # Free the original Ctrl-b prefix keybinding | |
| unbind C-b | |
| #setting the delay between prefix and command | |
| set -sg escape-time 1 |