I hereby claim:
- I am dcasati on github.
- I am dcasati (https://keybase.io/dcasati) on keybase.
- I have a public key ASCaWwh1ftEBAwbuCHA029qiOLWp-96IWAJtxxhSjeTCrQo
To claim this, I am signing this object:
# On Ubuntu, you need to add the following line to your synergy.service file: | |
# 1. Edit the sudo vi /lib/systemd/system/synergy.service | |
[Service] | |
Environment=DISPLAY=:1 | |
# 2. reload systemd and the synergy service | |
sudo systemctl daemon-reload | |
sudo restart synergy |
docker run -v ${HOME}:/root -it azuresdk/azure-cli-python:2.0.23 |
1. Create an user on the cisco device | |
username dcasati privilege 15 secret MYbiGsecrRETThatOnlyIknoW | |
2. Convert your pub key to less than 254 characters (otherwise it will not work) | |
$ fold -b -w 72 ~/.ssh/id_rsa.pub | |
3. Create the key | |
conf t | |
ip ssh pubkey-chain |
xrandr --output HDMI1 --scale 2x2 --mode 1920x1200 --fb 3840x4200 --pos 0x0 | |
xrandr --output eDP1 --scale 1x1 --pos 320x2400 |
flask |
I hereby claim:
To claim this, I am signing this object:
# Switch to the master branch and make sure you are up to date. | |
git checkout master | |
git fetch # this may be necessary (depending on your git config) to receive updates on origin/master | |
git pull | |
# Merge the feature branch into the master branch. | |
git merge feature_branch | |
# Reset the master branch to origin's state. | |
git reset origin/master |
# add this to your bashrc | |
cilium()(kubectl exec -it $(kubectl get pod -l k8s-app=cilium| head -n 2|tail -n 1 | awk '{print $1}') -- cilium $@) |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# renameworkspace.py - Renaming i3 workspaces with https://github.com/acrisci/i3ipc-python while keeping the <number>: <letter> prefix for keyboard navigation. | |
# Written in 2017 by Fahrstuhl | |
# To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. | |
# You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. | |
import i3ipc |