The Elgato Wave XLR has no UCM (Use Case Manager) profile on Linux. Without one,
WirePlumber falls back to a generic mono-fallback profile that fails to route audio
through the capture path correctly — the microphone is detected but records near-silence
(around -62 dB, essentially the noise floor).
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 bash | |
| EKSA_RELEASE="0.13.1" | |
| RELEASE_NUMBER=26 | |
| OS="$(uname -s | tr A-Z a-z)" | |
| ARCH=$(test "$(uname -m)" = 'x86_64' && echo 'amd64' || echo 'arm64') | |
| sudo echo 'Let us begin' | |
| echo Installing eksctl |
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
| bucket=$(uuidgen) | |
| aws s3 mb s3://${bucket} | |
| cat > lifecycle.json <<EOF | |
| { | |
| "Rules": [ | |
| { | |
| "Filter": { | |
| "Prefix": "" | |
| }, |
I hereby claim:
- I am raykrueger on github.
- I am raykrueger (https://keybase.io/raykrueger) on keybase.
- I have a public key whose fingerprint is 7C86 BAF2 981F 02F6 7829 9BDB 7A02 9E2E 993D 6367
To claim this, I am signing this object:
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
| source "https://rubygems.org" | |
| gem "timers" | |
| gem "nokogiri" |
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
| import requests | |
| from pprint import pprint | |
| input_data = """<?xml version="1.0" encoding="UTF-8"?><subscription> | |
| <subscription-type>EMAIL</subscription-type> | |
| <source-keyword>CRAZY_COFFEE</source-keyword> | |
| <user> | |
| <email-address>user1@example.com</email-address> | |
| <first-name>Test</first-name> |
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
| require 'logger' | |
| require 'openssl' | |
| class UcellGateway | |
| #dunno what this is, but it's yours :) | |
| include MessageFilter | |
| def initialize | |
| @logger = Logger.new |
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
| $(document).ready(function() { | |
| if (!!navigator.geolocation) { | |
| navigator.geolocation.getCurrentPosition( | |
| function(position) { | |
| var lat = position.coords.latitude | |
| var lng = position.coords.longitude | |
| $.get('/locate' + '?lat=' + lat + '&lng=' + lng, function(data){ | |
| $('#locations').html(data); | |
| $('.stripey li:even').addClass('alt'); | |
| }); |
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
| { "_id" : ObjectId("4e15e72a4d56412e7f00bd17"), | |
| "address" : "4647 Buttermilk Hollow Rd, West Mifflin, PA 15122-1101", | |
| "loc" : [ 40.361421, -79.907644 ], | |
| "owner_key" : "c79b0170896e012e7f2b00264a18267e", | |
| "created_at" : ISODate("2011-07-07T17:04:42Z"), | |
| "title" : "redbox at Foodland", | |
| "updated_at" : ISODate("2011-07-13T17:54:04Z"), | |
| "reference_id" : "31382" | |
| } |
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
| if (!!navigator.geolocation) { | |
| navigator.geolocation.getCurrentPosition( | |
| function(position) { | |
| var lat = position.coords.latitude; | |
| var lng = position.coords.longitude; | |
| $.get('/locate?lat=' + lat + '&lng=' + lng, function(data){ | |
| $('#locations').html(data); | |
| }); | |
| }, | |
| function(e) { |
NewerOlder