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
!=============================== | |
! Commands : | |
! - apt-get install rofi | |
! - xrdb -load ~/.Xresources | |
!=============================== | |
! =================== | |
! urxvt | |
! =================== |
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 | |
## ARG1 ( up / down ) | |
## ARG2 ( Version ) 1.0 / 1.5 | |
OP=${1:-"up"} | |
VER=${2:-"1.5"} | |
echo |
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
<section data-background-transition='zoom' | |
data-transition='concave' | |
data-background='http://ryanjarvinen.com/presentations/shared/img/broadcast_reveal_dark.png' | |
data-state='blackout'> | |
<h2>Gist-Powered - Rac021</h2> | |
<h1>Reveal.js</h1> | |
<h2>Slideshow Presentations</h2> | |
<br/> | |
<h1 class='fragment grow'><a style='color:deepskyblue;' href='http://gist-reveal.it'>gist-reveal.it</a></h1> |
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 | |
# /opt/jdk/graalvm-ce-19.2.0.1/jre/bin/java | |
# /usr/lib/jvm/java-1.8.0-amazon-corretto/jre/bin/java | |
# Install native-image | |
# /opt/jdk/graalvm-ce-19.2.0.1/lib/installer/bin/gu install native-image | |
export JAVA_HOME=/opt/jdk/graalvm-ce-19.2.0.1 |
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
https://www.dell.com/community/Linux-Developer-Systems/TB16-Dock-Linux-Support/td-p/5109123/page/5 : | |
Certainly, unbelievable, but you have to configure the Bios ->Settings ->System Configuration ->Thunderbolt Adapter Configuration to "Security level - No Security" for best user experiences ... 😉 | |
https://forum.manjaro.org/t/ethernet-not-working-on-usb-c-dock/79681 |
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
// keep track of the loaded libraries | |
const loadedLibraries = [] | |
function registerLibraryLoaded(id) { | |
// record the libs only if the array doesn't contain the same already | |
if (loadedLibraries.indexOf(id) < 0) { | |
loadedLibraries.push(id) | |
} | |
} |
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
https://www.keycloak.org/docs-api/5.0/rest-api/index.html |
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
sudo groupadd docker | |
sudo gpasswd -a $USER docker |
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
git clone https://github.com/franela/play-with-docker | |
cd play-with-docker/ | |
docker pull franela/dind | |
sudo apt install golang-go | |
export GOPATH=$HOME/.go | |
go get -v -d -t ./... | |
docker-compose up |