- gcc
- make
- app-arch/rpm2targz
- patchelf
- an i686-pc-linux-gnu ld-linux.so.2
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
POOL_NAME USED OBJECTS CLONES COPIES MISSING_ON_PRIMARY UNFOUND DEGRADED RD_OPS RD WR_OPS WR | |
.rgw.root 0 B 0 0 0 0 0 0 0 0 B 0 0 B | |
clevercloud.rbd.addons 0 B 0 0 0 0 0 0 0 0 B 0 0 B | |
default.rgw.buckets.data 0 B 0 0 0 0 0 0 0 0 B 0 0 B | |
default.rgw.buckets.index 0 B 0 0 0 0 0 0 0 0 B 0 0 B | |
default.rgw.buckets.non-ec 0 B 0 0 0 0 0 0 0 0 B 0 0 B | |
default.rgw.control 0 B 0 0 0 0 0 0 0 0 B 0 0 B | |
default.rgw.log 0 B 0 0 0 0 0 0 0 0 B 0 0 B | |
default.rgw.meta 0 B 0 0 0 0 0 0 0 0 B 0 0 B |
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
final String THE_HOST = "…"; | |
final String THE_PORT = 8080; | |
final String THE_USERNAME = "…"; | |
final String THE_PASSWORD = "…"; | |
final AuthCache authCache = new BasicAuthCache(); | |
final URI uri = new URI("…"); | |
// CREATE CREDENTIALS PROVIDER, WHICH IS A MAP [HOST -> CREDS] | |
CredentialsProvider credsProvider = new BasicCredentialsProvider(); | |
credsProvider.setCredentials(new AuthScope(THE_HOST, AuthScope.ANY_PORT), new UsernamePasswordCredentials(THE_USERNAME, THE_PASSWORD)); |
I hereby claim:
- I am judu on github.
- I am judu (https://keybase.io/judu) on keybase.
- I have a public key whose fingerprint is 84A5 D720 9AF6 4D8C A02A 5DC1 7578 A93B 2EF2 B77D
To claim this, I am signing this object:
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
# On the Server | |
## In .bashrc (or .zshrc) | |
``` | |
settitle() { | |
printf "\033k$1\033\\" | |
} | |
settitle "`hostname`" | |
``` |
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
## Solarized | |
['#002B36', '#DC322F', '#859900', '#B58900', '#268BD2', '#D33682', '#2AA198', '#EEE8D5', '#586E75', '#DC322F', '#859900', '#B58900', '#268BD2', '#D33682', '#2AA198', '#FDF6E3'] | |
### Another Solarized version where violet is dark magenta and orange is dark red: | |
['#002B36','#CB4B16','#859900','#B58900','#6C71C4','#D33682','#2AA198','#EEE8D5','#586E75','#DC322F','#859900','#B58900','#268BD2','#D33682','#2AA198','#FDF6E3'] | |
###Solarized "Official" version (that I actually use since 2020) : | |
['#073642', '#DC322F', '#859900', '#B58900', '#268BD2', '#D33682', '#2AA198', '#EEE8D5', '#002B36', '#CB4B16', '#586E75', '#657B83', '#839496', '#6C71C4', '#93A1A1', '#FDF6E3'] |
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
#!/bin/bash | |
# you can use it from tmux | |
# bind-key P run repack-tmux | |
ttt () { | |
local bef=-1 | |
for i in `tmux list-windows | cut -d':' -f1`; do | |
local b=$(($bef + 1)) | |
if [ $b -lt $i ]; then | |
tmux move-window -s $i -t $b |
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
#!/bin/bash | |
# Ensure target is never committed | |
echo "target" >> .gitignore | |
git init | |
# Because there will always be at least these three files/folders in | |
# a maven project | |
git add src pom.xml .gitignore |