Skip to content

Instantly share code, notes, and snippets.

View AseedUsmani's full-sized avatar
💭
The bug's putting me into depression.

Aseed Usmani AseedUsmani

💭
The bug's putting me into depression.
View GitHub Profile
@MatthewBooth
MatthewBooth / README.md
Last active March 8, 2019 09:35
Installing Robo3t on Ubuntu 16.04.3 LTS
  • Download the Binary from the official Robo3t Website.
  • Extract the archive to /opt/robo3t. You may need root permissions to do this.
  • Set the permissions to the current user sudo chown -R ${whoami}:${whoami} /opt/robo3t
  • Download this image http://blog.robomongo.org/content/images/2016/01/enjoy.png and save to /opt/robo3t/bin/robo3t.png
  • Make the binary executable sudo chmod +x /opt/robo3t/bin/robo3t
  • Create a desktop file and copy in the contents below. Call it robo3t.desktop.
  • Install this file using sudo desktop-file-install ~/Downloads/robo3t.desktop replacing ~/Downloads with the location you created the file

That should be all you need to go and run this program. If you receive errors you may need to:

@thomasdarimont
thomasdarimont / app.py
Last active April 24, 2024 19:42
Simple python example using flask, flask_oidc and keycloak
import json
import logging
from flask import Flask, g
from flask_oidc import OpenIDConnect
import requests
logging.basicConfig(level=logging.DEBUG)
app = Flask(__name__)