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: | |
# Media control via Philips Hue Tap Dial by gTunes | |
# | |
# Works only with Home Assistant and Zigbee2MQTT | |
# | |
# Version History: | |
# - v 0.1 Dec 2023 : Initial version | |
# | |
# Based on earlier work by: | |
# - https://community.home-assistant.io/t/z2m-ikea-symfonisk-gen2-e2123-media-control-v1-53/559523 Shawsky |
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 python3 | |
from PIL import Image | |
import argparse | |
import re | |
import os | |
parser = argparse.ArgumentParser(description='Process image sizes from Unity Build Report.') | |
parser.add_argument('-f', '--filename', default=os.path.join(os.getenv('LOCALAPPDATA'), 'Unity\Editor\Editor.log')) | |
args = parser.parse_args() |
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
// MonoGame - Copyright (C) The MonoGame Team | |
// This file is subject to the terms and conditions defined in | |
// file 'LICENSE.txt', which is part of this source code package. | |
using Android.Views; | |
namespace Microsoft.Xna.Framework.Input | |
{ | |
internal class AndroidGamePad | |
{ |
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
From 85d30acf32f70cac11b873c48c2063d82857c390 Mon Sep 17 00:00:00 2001 | |
From: Rowan Lewis <[email protected]> | |
Date: Wed, 9 Apr 2014 13:28:09 +0300 | |
Subject: [PATCH] Added quirks for Zoom R16 device. | |
Not working as an output device yet, the device expects 24bit audio, but | |
appears to be sent 32bit instead. | |
--- | |
sound/usb/quirks-table.h | 74 ++++++++++++++++++++++++++++++++++++++++++++++++ |
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
cat /usr/local/eudev/lib/udev/rules.d/80-drivers.rules | |
# do not edit this file, it will be overwritten on update | |
ACTION=="remove", GOTO="drivers_end" | |
DRIVER!="?*", ENV{MODALIAS}=="?*", IMPORT{builtin}="kmod load $env{MODALIAS}" | |
SUBSYSTEM=="tifm", ENV{TIFM_CARD_TYPE}=="SD", IMPORT{builtin}="kmod load tifm_sd" | |
SUBSYSTEM=="tifm", ENV{TIFM_CARD_TYPE}=="MS", IMPORT{builtin}="kmod load tifm_ms" | |
SUBSYSTEM=="memstick", IMPORT{builtin}="kmod load ms_block mspro_block" | |
SUBSYSTEM=="i2o", IMPORT{builtin}="kmod load i2o_block" |