Device:
046d:08c1 Logitech, Inc. QuickCam Fusion
Microphone works finde on Ubuntu, bute Cheese doesn't show a picture.
Solution: Add your user to the video group and reboot.
$ sudo adduser video
find . -maxdepth 1 -name '*.zip' -exec mvexistsuffix {} zip lha \; |
Device:
046d:08c1 Logitech, Inc. QuickCam Fusion
Microphone works finde on Ubuntu, bute Cheese doesn't show a picture.
Solution: Add your user to the video group and reboot.
$ sudo adduser video
// Activate App by name | |
function run(argv) { | |
const appname = argv[0]; | |
const app = Application(appname); | |
app.activate(); | |
} |
A Pen by Tamio Honma on CodePen.
A Pen by Tamio Honma on CodePen.
h1 Wash your hands | |
p | |
a(href="https://www.who.int/gpsc/clean_hands_protection/") WHO: Clean protect against infection | |
.hands.hands--full-screen | |
.hand.hand--right | |
.hand.hand--left |
VBoxManage setextradata "VM name" "VBoxInternal/Devices/pcbios/0/Config/DmiSystemVendor" "VMware, Inc." | |
VBoxManage setextradata "VM name" "VBoxInternal/Devices/pcbios/0/Config/DmiSystemProduct" "VMware Virtual Platform" |
// Get an array of all labels with unique entries. | |
const uniqueLabels = [...new Set(apps.map(item => item.label))]; | |
// Transform the original array of objects to an array of label groups. | |
const groupedApps = uniqueLabels.map(label => ({ label, stores: apps.filter(app => app.label.includes(label)) })); |
// prepend a character to a string for a given result string length | |
const prependCharToLength = (str: string, char: string = '0', len: number = 2): string => { | |
let r: string[] = []; | |
let s: string[] = str.split(''); | |
for (let i: number = len - 1; i >= 0; i--) { | |
r[i] = (s.length - i > 0) ? s[i] : char; | |
} | |
return r.join(''); | |
}; |