sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-8-jdk
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Bruno Kühnen Meneguello", | |
"label": "Software Consultant", | |
"image": "https://media-exp1.licdn.com/dms/image/C4D03AQEv5PFaS9ty8g/profile-displayphoto-shrink_800_800/0/1516591295046?e=1641427200&v=beta&t=U8ARp0aqtn1UAQ1MLKlSHdOhy6VhYSAyuPjg6wUsxUY", | |
"email": "[email protected]", | |
"url": "http://github.com/bkmeneguello", | |
"summary": "Software development and programming languages are my world. I love to learn and use new technologies and techniques.\n\nIn the last years I've learned and used Go, Scala, Python, Groovy, C#, and C++, along with old acquaintances like Java, PHP, and Javascript.\n\nI actively contribute to some open-source projects like Jenkins (and its plugins) with code and bug tracking.\n\nIn my current job, I'm the leader in new technologies adoption and brought several changes to the team. This consolidates me as the focal point when new projects and de |
ATTRIB +H /s /d C:\.* |
alias gwip='git commit -a -m "work in progress - fixup"' |
/etc/pulse/default.pa
load-module module-bluetooth-policy auto_switch=2
# Enable SSH Agent service from an Admin Shell | |
Set-Service ssh-agent -StartupType Automatic | |
Start-Service ssh-agent | |
# Allow Git to use system SSH agent instead ob embedded | |
# from https://snowdrift.tech/cli/ssh/git/tutorials/2019/01/31/using-ssh-agent-git-windows.html | |
[Environment]::SetEnvironmentVariable("GIT_SSH", "$((Get-Command ssh).Source)", [System.EnvironmentVariableTarget]::User) |
xclip -out -selection primary | xclip -in -selection clipboard; xsel --clipboard | tr "\n" " " | espeak |
#!/usr/bin/env sh | |
sync & | |
watch -d grep -e Dirty: -e Writeback: /proc/meminfo |
#!/bin/bash | |
if (( EUID != 0 )); then | |
echo "You must be root to do this." 1>&2 | |
exit 1 | |
fi | |
K9S=$(command -v k9s || echo /usr/local/bin/k9s) | |
$K9S version | |
URL=$(curl https://api.github.com/repos/derailed/k9s/releases/latest | jq -r '.assets[].browser_download_url' | grep k9s_$(uname -s)_$(uname -m)) | |
curl -sSL $URL | tar xzOf - k9s | tee $K9S > /dev/null |