Skip to content

Instantly share code, notes, and snippets.

View johnjohndoe's full-sized avatar

Tobias Preuss johnjohndoe

View GitHub Profile
@johnjohndoe
johnjohndoe / Stadt-Land-Fluss-Kategorien.md
Created July 6, 2019 13:48
Kategorien für das Spiel "Stadt, Land, Fluss" aus der Fernsehsendung "Zimmer frei".
  • Abfall
  • Anmachspruch
  • Ausrede
  • Automarke
  • Autor
  • Badutensilien
  • Ballsportart
  • Beruf
  • Berühmtes Bauwerk
  • Bestseller
@johnjohndoe
johnjohndoe / 60-jetbrains.conf
Created June 23, 2019 13:16 — forked from bittner/60-jetbrains.conf
Inotify configuration for IntelliJ IDEA (PhpStorm, PyCharm, RubyMine, WebStorm). Create this file with e.g. `sudo vim /etc/sysctl.d/60-jetbrains.conf`
# Set inotify watch limit high enough for IntelliJ IDEA (PhpStorm, PyCharm, RubyMine, WebStorm).
# Create this file as /etc/sysctl.d/60-jetbrains.conf (Debian, Ubuntu), and
# run `sudo service procps start` or reboot.
# Source: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
#
# More information resources:
# -$ man inotify # manpage
# -$ man sysctl.conf # manpage
# -$ cat /proc/sys/fs/inotify/max_user_watches # print current value in use
@johnjohndoe
johnjohndoe / LifecycleOwnerExtension.kt
Created February 19, 2019 16:45
Instance of a LifecycleObserver (MyClass) which registers itself to observe lifecycle events.
inline fun <reified T : MyClass> android.arch.lifecycle.LifecycleOwner.createMyClassInstance(parameter: String): T {
val instance = T::class.constructors.first { it.parameters.isNotEmpty() }.call(parameter)
// Don't forget to invoke removeObserver(instance)!
lifecycle.addObserver(instance)
return instance
}
@johnjohndoe
johnjohndoe / restaurants-wheelchair-accessibility.ql
Created February 15, 2019 16:51
Query for overpass-turbo.eu to filter for restaurants and their wheelchair accessibility status
[out:json][timeout:25][bbox:{{bbox}}];
(
node["amenity"="restaurant"]["wheelchair"="yes"];
node["amenity"="restaurant"]["wheelchair"="limited"];
node["amenity"="restaurant"]["wheelchair"="no"];
node["amenity"="restaurant"][!"wheelchair"];
node["amenity"="restaurant"];
);
{{style:
@johnjohndoe
johnjohndoe / Marokkanischer Hühncheneintopf mit Granatapfel.jpg
Last active January 27, 2019 15:58
Rezept: Marokkanischer Hühncheneintopf mit Granatapfel
Marokkanischer Hühncheneintopf mit Granatapfel.jpg
@johnjohndoe
johnjohndoe / ffmpeg-cut-video.md
Last active January 15, 2021 10:40
Cut a slice from a video with FFmpeg

Cut a slice from a video

  • Keep all video and audio tracks
  • Add title, comment
ffmpeg -strict -2 -i input.mp4 -ss 00:33:22 -t 00:06:26 -metadata title="My Title" -metadata comment="A few words about this video." -c copy -map 0:v -map 0:a output.mp4
  • from ss position to -to position

Hi there , for me i must add my device ( DG-310 / Doogee Voyager 2 ) , to my udev rules , i use this code for make that quick

sudo groupadd plugdev
sudo gpasswd -a $USER plugdev

AVID=$(lsusb | grep HTC | awk '{print $6}' | sed 's/[:].*//')
APID=$(lsusb | grep HTC | awk '{print $6}' | sed 's/.*[:]//')
sudo echo 'SUBSYSTEMS=="usb", ATTR{idProduct}=="$AVID",  ATTR{idProduct}=="$APID", MODE="0666", GROUP="plugindev"' >> /etc/udev/rules.d/51-android.rules
{
"hashed_uid": "3a720fb820f37f5384ff10b34e1e1aed2c20cfd7616f39d7b8305093cd9b148c",
"public_url": "http://halfnarp.events.ccc.de/-/talkpreferences/public/3a720fb820f37f5384ff10b34e1e1aed2c20cfd7616f39d7b8305093cd9b148c",
"talk_ids": [
5931,
5930
],
"uid": "123456abcdef"
}
{
"hashed_uid": "3a720fb820f37f5384ff10b34e1e1aed2c20cfd7616f39d7b8305093cd9b148c",
"uid": "123456abcdef"
}
{
"status": "error",
"errors": [
{
"location": "body",
"name": "talk_ids",
"description": "talk_ids is missing"
}
]
}