sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
If anyone is interested in setting up their system to automatically (or manually) sign their git commits with their GPG key, here are the steps:
$ git config --global commit.gpgsign true ([OPTIONAL] every commit will now be signed)$ git config --global user.signingkey ABCDEF01 (where ABCDEF01 is the fingerprint of the key to use)$ git config --global alias.logs "log --show-signature" (now available as $ git logs)$ git config --global alias.cis "commit -S" (optional if global signing is false)$ echo "Some content" >> example.txt$ git add example.txt$ git cis -m "This commit is signed by a GPG key." (regular commit will work if global signing is enabled)| // MMA7660FC Basic demo by Addidis | |
| // Released under the Creative Commons Attribution-ShareAlike License (3.0) | |
| // http://creativecommons.org/licenses/by-sa/3.0/us/ | |
| // 10/24/11 | |
| // HW : Tautic accelerometer board +4.7k pull ups on sda scl , uno32, led +330 resistor | |
| // SCL -->A5 | |
| // SDA -->A4 | |
| // INT -->D7 | |
| // gnd -->gnd | |
| // vdd -->3.3v NOTE 3.3v! |
| package com.guendouz.textclustering.preprocessing; | |
| import java.util.Arrays; | |
| import java.util.List; | |
| /** | |
| * @author Mohamed Guendouz | |
| */ | |
| public class TFIDFCalculator { | |
| /** |
| ############################## | |
| ## Java | |
| ############################## | |
| .mtj.tmp/ | |
| *.class | |
| *.jar | |
| *.war | |
| *.ear | |
| *.nar | |
| hs_err_pid* |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import sublime_plugin | |
| import subprocess | |
| from time import sleep | |
| import sys | |
| cl = lambda line: subprocess.Popen(line, shell=True, stdout=subprocess.PIPE).communicate()[0].strip() | |
| log = lambda message: sys.stderr.write("Log: %s\n" % message) |
| # Convert a CSV like the following: | |
| # a,b,c,d,e,f,g | |
| # To the LaTeX table format like the following: | |
| # {a} & {b} & {c} & {d} & {e} & {f} & {g} \\\hline | |
| sed 's/,/} \& {/g' Table1.csv | sed 's/^/{/' | sed 's/$/} \\\\\\hline/' > Table1Format.txt |