Skip to content

Instantly share code, notes, and snippets.

View a-bashtannik's full-sized avatar
🚀
Focusing

Andrew Bashtannik a-bashtannik

🚀
Focusing
View GitHub Profile
@mjmenger
mjmenger / keylight.http
Last active September 11, 2023 11:56
elgato key light REST endpoints
# simple requests for use with the VSCode Rest Client extension
###
GET http://{{$dotenv lightaddress}}:{{$dotenv lightport}}/elgato/accessory-info
###
# on or off
PUT http://{{$dotenv lightaddress}}:{{$dotenv lightport}}/elgato/lights
@yinzara
yinzara / github_bitbucket_multiple_ssh_keys.md
Last active July 2, 2024 11:42
Managing SSH keys and repo cloning using multiple accounts on GitHub and BitBucket

Why Multiple SSH keys?

There are numerous reasons you may need to use multiple SSH keys for accessing GitHub and BitBucket

You may use the same computer for work and personal development and need to separate your work.

When acting as a consultant, it is common to have multiple GitHub and/or BitBucket accounts depending on which client you may be working for.

You may have different projects you're working on where you would like to segregate your access.

@lucasbrigida
lucasbrigida / running_nightmare_headlessly_on_linux.md
Last active May 16, 2023 18:51
Running Nightmare headlessly on Linux

Installation

Installing dependencies

sudo apt-get install build-essential clang libdbus-1-dev libgtk2.0-dev \
                       libnotify-dev libgnome-keyring-dev libgconf2-dev \
                       libasound2-dev libcap-dev libcups2-dev libxtst-dev \
                       gcc-multilib g++-multilib \
                       libgtk2.0-0 libgconf-2-4 \
                       libasound2 libxtst6 libxss1 libnss3 xvfb \
@soarez
soarez / ca.md
Last active July 8, 2024 01:08
How to setup your own CA with OpenSSL

How to setup your own CA with OpenSSL

For educational reasons I've decided to create my own CA. Here is what I learned.

First things first

Lets get some context first.