Skip to content

Instantly share code, notes, and snippets.

View rac021's full-sized avatar
💭
https://github.com/rac021/jaxy

Yahiaoui Rachid rac021

💭
https://github.com/rac021/jaxy
View GitHub Profile
!===============================
! Commands :
! - apt-get install rofi
! - xrdb -load ~/.Xresources
!===============================
! ===================
! urxvt
! ===================
#!/bin/bash
## ARG1 ( up / down )
## ARG2 ( Version ) 1.0 / 1.5
OP=${1:-"up"}
VER=${2:-"1.5"}
echo
<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>
#!/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
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
// 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)
}
}
https://www.keycloak.org/docs-api/5.0/rest-api/index.html
sudo groupadd docker
sudo gpasswd -a $USER docker
#!/usr/bin/env bash
USERNAME="---"
PASSWORD="---"
ORGANIZATION="---"
IMAGE="---"
TAG="travis-master"
TOKEN=`curl -s -H "Content-Type: application/json" -X POST \
-d '{"username": "'$USERNAME'", "password": "'$PASSWORD'"}' \
@rac021
rac021 / Install_Play_With_Docker
Created January 28, 2019 17:55
Install_Play_With_Docker
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