Skip to content

Instantly share code, notes, and snippets.

View lexxy23's full-sized avatar

Lexxy lexxy23

View GitHub Profile
@lexxy23
lexxy23 / firejail-openlens.profile
Last active June 1, 2023 10:09
FireJail OpenLens Profile
# this profile can be used to run OpenLens as an AppImage
include /etc/firejail/disable-common.inc
include /etc/firejail/whitelist-common.inc
caps.drop all # Root-Rechte werden unwiderruflich aufgegeben
seccomp !chroot # Filter für Systemaufrufe, außer chroot
protocol unix,inet,inet6 # Protokollfilter, Internet ist erlaubt
novideo # keine Webcam in der Sandbox
@lexxy23
lexxy23 / WORKSPACE.bazel
Last active March 22, 2023 08:57
Bazel Templates
workspace(name = "my_ws")
@lexxy23
lexxy23 / github-action.yaml
Last active March 19, 2024 13:03
Spdx License tester
name: test licenses
on:
pull_request:
branches:
- develop
# push:
# branches:
# - develop
@lexxy23
lexxy23 / pre-commit-config.yaml
Last active May 10, 2024 12:16
Pre-Commit hooks Template
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
#
# To apply it:
# touch .pre-commit-config.yaml
# pre-commit autoupdate
# pre-commit install --allow-missing-config
# pre-commit run --all-files
exclude: "^$"
fail_fast: false
@lexxy23
lexxy23 / dependabot.yaml
Last active July 10, 2023 15:01
Dependabot Template
version: 2
updates:
- package-ecosystem: "cargo" # can also be maven, gradle, gomod, pip, pub, terraform, docker, compose
directory: "/"
schedule:
interval: "daily"
time: "09:00"
timezone: "Europe/Berlin"
open-pull-requests-limit: 20

Keybase proof

I hereby claim:

  • I am lexxy23 on github.
  • I am dstrauss2 (https://keybase.io/dstrauss2) on keybase.
  • I have a public key ASDk3AkBRmeYrDPkKta3xxqdB-aTytc2M5adY6F8-58wyAo

To claim this, I am signing this object:

@lexxy23
lexxy23 / installVsCode.sh
Last active December 19, 2018 09:21
dummy shell bash script to install Visual Studio Code on MacOS, assuming the executing user has sudo rights ^^
#!/bin/bash
# Script to install VisualStudio Code, Atom or Github Desktop
# the app settings
DLURL=""
APPNAME=""
# our settings
GLOBALINST=0
@lexxy23
lexxy23 / installAtom.sh
Last active November 21, 2016 14:10
Quick shell bash script to install the atom editor on MacOS, assuming the executing user has sudo rights ;)
#!/bin/bash
# the app settings
DLURL="https://atom.io/download/mac"
APPNAME="Atom.app"
# our settings
TMPDIR="/tmp"
APPFOLDER="/Applications"
TMPFILE="$TMPDIR/tmp.zip"