Skip to content

Instantly share code, notes, and snippets.

View akuma's full-sized avatar
🎯
Focusing

Akuma akuma

🎯
Focusing
View GitHub Profile
@akuma
akuma / maven-lib-diff-install.sh
Last active June 15, 2022 05:57
install maven-lib-diff
mkdir -p ~/bin-test && \
curl -s https://gist.githubusercontent.com/akuma/380d76be0662fb3e08e8eaa7d5b38563/raw/maven-lib-diff -o ~/bin/maven-lib-diff && \
chmod +x ~/bin/maven-lib-diff && \
echo 'export PATH=$HOME/bin:$PATH' >> ~/.zshrc && \
source ~/.zshrc
@akuma
akuma / maven-lib-diff
Last active June 15, 2022 05:55
Diff maven module libs between two branches.
#!/bin/sh
module=$1
branch_a=$2
branch_b=$3
lib_a="${module}_a.lib"
lib_b="${module}_b.lib"
info=$4
usage="usage: maven-lib-diff <maven module> <branch a> <branch b> [--info]"
@akuma
akuma / iuml
Created August 19, 2021 11:18
PlantUML Settings
skinparam dpi 110
skinparam shadowing false
skinparam packageStyle Frame
hide methods
hide stereotypes
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Functions
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
@akuma
akuma / editPage.html
Created March 21, 2012 13:13
demo-bootstrap
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>bootstrap test</title>
<link type="text/css" href="../css/bootstrap.min.css" rel="stylesheet" />
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;