I hereby claim:
- I am patrislav1 on github.
- I am patrislav (https://keybase.io/patrislav) on keybase.
- I have a public key ASC-I142cUuk51hhcnU0giycWfUr2ZWTaKd8WAYnI26KXAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
FILES=$(find . -name "*.avi") | |
while read FILE; do | |
DESTFILE=$(echo ${FILE} | sed 's/\.avi$/\.mkv/g') | |
rm -f "${DESTFILE}" | |
ffmpeg -fflags +genpts -nostdin -i "${FILE}" -c:v copy -c:a copy "${DESTFILE}" | |
ls -lh "$FILE" | |
ls -lh "$DESTFILE" | |
done <<< $FILES |
--- | |
BasedOnStyle: Chromium | |
IndentWidth: 4 | |
IncludeCategories: | |
- Regex: '<[a-zA-Z0-9_]+>' # standard headers (no extension) | |
Priority: 2 | |
- Regex: '<[a-zA-Z0-9/]+\.(h|hpp)>' # library headers (with extension) | |
Priority: 3 |
<pre style="background-color: #0f0800;color: #bbbbbb;"> | |
...insert copied message here... | |
</pre> |
#pragma once | |
#include <chrono> | |
#include <string> | |
#include <boost/log/core.hpp> | |
#include <boost/log/trivial.hpp> | |
namespace blg = boost::log::trivial; |
#!/usr/bin/env python3 | |
import requests | |
import sys | |
from sortedcontainers import SortedDict, SortedList | |
class GitlabApi: | |
API_LINK = 'api/v4' |
#include <functional> | |
#include <iostream> | |
#include <map> | |
#include <memory> | |
#include <string> | |
struct Base { | |
virtual std::string blub() = 0; | |
}; |
blueprint: | |
name: IKEA Rodret Dimmer Light Control (ZHA/Z2M) | |
description: "## Control Light with IKEA RODRET Dimmer remote (v1.0) | |
Only for use with [ZHA](https://www.home-assistant.io/integrations/zha/) | |
or Zigbee2MQTT (cf [MQTT](https://www.home-assistant.io/integrations/mqtt) | |
+ [Z2M addon](https://www.zigbee2mqtt.io/guide/installation/03_ha_addon.html)). | |
git filter-branch --env-filter ' | |
OLD_EMAIL="patrick.huesmann@desy.de" | |
NEW_EMAIL="info@patrick-huesmann.de" | |
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] | |
then | |
export GIT_COMMITTER_EMAIL="$NEW_EMAIL" | |
fi | |
if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ] | |
then |