Skip to content

Instantly share code, notes, and snippets.

View J-Rios's full-sized avatar
😃

Jose J-Rios

😃
  • Málaga, Spain
  • 16:47 (UTC +02:00)
View GitHub Profile
@J-Rios
J-Rios / create_certs
Last active July 24, 2021 14:22
Generate a self-signed certificates using openssl
#!/usr/bin/env bash
###############################################################################
PASSPHRASE="password1234"
LANG="ES"
LOCATION="Malaga"
CITY="Malaga"
COMPANY="Open Source"
DAYS="3650"
@J-Rios
J-Rios / Ubuntu_18.04_linuxdeployqt_Docker_Container.md
Last active April 10, 2023 10:28
Setup LinuxDeployQT in a Docker container. Instructions on how to prepare a Docker Container to use linuxdeployqt from an Ubuntu 18.04 host system through a Ubuntu 14.04 Docker container.

Setup LinuxDeployQT in a Docker container

  1. Install Docker:
wget https://raw.githubusercontent.com/J-Rios/BASH-Scripts/master/install/install_docker
sudo chmod +x install_docker
sudo ./install_docker
  1. Get Ubuntu 14.04 Docker base image:
@J-Rios
J-Rios / mosquitto.conf
Created November 8, 2018 15:06
Basic Insecure Mosquitto MQTT to Apache ActiveMQ Bridge Configuration
listener 8883 0.0.0.0
pid_file /var/run/mosquitto.pid
# Bridge
connection bridge-mosquitto-amq
address <AMQ_IP>:<AMQ_PORT>
bridge_protocol_version mqttv311
cleansession true
try_private false
@J-Rios
J-Rios / git_my_cheatsheet.md
Last active January 23, 2023 21:19
Essential GIT commands Cheat Sheet

GIT CheatSheet

1. Installation and Setup

1.1. Install GIT in a GNU/Linux Debian based OS system:

sudo apt-get install git