C3 Lang https://gist.github.com/diegopacheco/d7db9088f46acba8892fa96cec4d5e36
Odin Lang https://gist.github.com/diegopacheco/ed2fcedfc575d0bd0cdf2a5e4658cae8
Steel Lang https://gist.github.com/diegopacheco/e9b16466d0480c6acf6c141b95b52510
Haxe Lang https://gist.github.com/diegopacheco/c33ef1d8e41ba376e240358ce78ebd3d
# Stop all running containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove all Docker volumes
docker volume rm $(docker volume ls -q)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " be iMproved, required | |
filetype off " required | |
" | |
" Vim spesific editor configs | |
" | |
set encoding=utf-8 | |
set number " Show line numbers | |
set backspace=indent,eol,start " fix backspace | |
set mouse=a " fix mouse to it only scroll inside vim not outside |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ pocs-count.sh | |
Java : 605 | |
Scala : 119 | |
Rust : 186 | |
Go : 106 | |
C : 18 | |
C++ : 55 | |
Kotlin : 50 | |
Clojure : 82 | |
Haskell : 21 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind r | |
bind r source-file ~/.tmux.conf | |
# | |
# List of plugins | |
# | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-yank' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'dracula/tmux' |
pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<dependencies>
</dependencies>
# figure out where the HD is
sudo fdisk -l
# mount it - for me was /dev/sdc so had to add 1
sudo mount /dev/sdc1 /mnt
# to un mount
sudo umount /dev/sdc1
NewerOlder