See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
;; kmp-fp: Substring Search @ HackerRank | |
;; Date: Thu 13 Jul 2017 08:48:40 AM -03 | |
;; Manoel Vilela | |
;; NOTE: I'm programming in Common Lisp or in LOOP-MACRO? | |
(defun make-prefix-table (pattern length) | |
"Get the shift prefix array table to use on KMP | |
algorithm. This value is used to shift string comparison | |
on the next evaluation after a mismatch" |
#!/bin/bash | |
sudo apt-get install -y python-software-properties | |
sudo add-apt-repository -y ppa:webupd8team/java | |
sudo apt-get update | |
# Enable silent install | |
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections | |
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections |
import sys,os,pygame,random,math | |
pygame.init() | |
pygame.display.set_caption("Nsnake v1.0") | |
pygame.font.init() | |
random.seed() | |
#Global constant definitions | |
SPEED = 0.36 | |
SNAKE_SIZE = 9 |