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
| { | |
| "$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
| "basics": { | |
| "name": "Kai Löhnert", | |
| "label": "Presales Consultant – Penetration Testing Services | Cybersecurity Specialist", | |
| "image": "https://unavatar.io/x/luxus", | |
| "email": "[email protected]", | |
| "phone": "0775299372", | |
| "url": "https://luxus.ai", | |
| "summary": "Sales-driven cybersecurity specialist with 12 years of customer-facing experience at Apple and 3 years in IT engineering and presales consulting. Expert in penetration testing services, including external/internal tests, simulated attacks, red/purple teaming, web application audits, mobile app tests, and M365 assessments. Adept at scoping customer requirements, collaborating with pentesting teams, and developing proposal content. Active contributor to AI initiatives and portfolio optimization in regulated environments such as DORA.", |
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
| #!/usr/bin/env bash | |
| # Installs NixOS on an OVH server, wiping the server. | |
| # | |
| # This is for a specific server configuration; adjust where needed. | |
| # Originally written for an OVH STOR-1 server. | |
| # | |
| # Prerequisites: | |
| # * Create a LUKS key file at /root/benacofs-luks-key | |
| # e.g. by copying it up. |
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
| blueprint: | |
| name: Yet Another Motion Automation | |
| description: > | |
| # YAMA V10 | |
| Turn on lights or scenes when motion is detected. | |
| Four different scenes can be defined depending on time of day. | |
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 | |
| # | |
| # This file echoes a bunch of 24-bit color codes | |
| # to the terminal to demonstrate its functionality. | |
| # The foreground escape sequence is ^[38;2;<r>;<g>;<b>m | |
| # The background escape sequence is ^[48;2;<r>;<g>;<b>m | |
| # <r> <g> <b> range from 0 to 255 inclusive. | |
| # The escape sequence ^[0m returns output to default | |
| setBackgroundColor() |
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
| #!/usr/bin/env python | |
| # | |
| # Find and replace tracker urls in a Deluge torrents.state | |
| # | |
| # Need to edit the variables: orig_tracker_url and new_tracker_url | |
| import os | |
| import sys | |
| import platform | |
| import shutil |