- Make sure
PulseAudio
is installed - Search for "Startup applications" in applications (click on windows menu and search)
- click Add item
- In Command input -
pactl set-default-source 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
[refer below for how to get the name of the mic] - Click save
- It should run automatically from next startup
This file contains 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
# https://www.atpeaz.com/disable-zscaler-temporarily-on-your-mac/ | |
# disable | |
sudo launchctl unload /Library/LaunchDaemons/com.zscaler.service.plist && sudo launchctl unload /Library/LaunchDaemons/com.zscaler.tunnel.plist | |
# Reenable | |
sudo launchctl load /Library/LaunchDaemons/com.zscaler.service.plist && sudo launchctl load /Library/LaunchDaemons/com.zscaler.tunnel.plist |
This file contains 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
//log | |
const log4js = require("log4js"); | |
const path = require("path"); | |
log4js.configure({ | |
appenders: { | |
info: { | |
type: "dateFile", | |
filename: path.join(__dirname, "../logs", "info.log") | |
}, | |
errors: { |
This file contains 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
function removal(cA,bA) { | |
var count = 0; | |
for (var i = 0; i < cA.length; i++) { | |
if (i < 0) continue; | |
for (var j = 0; j < bA.length; j++) { | |
if (i < 0 || j < 0) continue; | |
count++; | |
console.log('comparing', i, j, cA[i], bA[j]); | |
if (cA[i] == bA[j]) { | |
console.log('removed', i, j, cA[i], bA[j]); |
This file contains 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
/* | |
- https://developer.mozilla.org/en-US/docs/Web/API/Clipboard/read | |
- https://stackoverflow.com/a/23024504/7314900 | |
- https://stackoverflow.com/a/54132144/7314900 | |
*/ | |
function getTextFromBlob(blob){ | |
var reader = new FileReader(); | |
reader.onload = function() { | |
console.log(reader.result); | |
} |
This file contains 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
/** | |
const myInput = document.getElementById("myInput"); | |
function helloInput() { | |
console.log( "You typed:", myInput.value ); | |
} | |
myInput.addEventListener( | |
"keyup", | |
debounce( helloInput, 1000 ) |
This file contains 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
//log | |
const log4js = require("log4js"); | |
const path = require("path"); | |
log4js.configure({ | |
appenders: { | |
errors: { | |
type: "dateFile", | |
filename: path.join(__dirname, "../../logs", "errors.log") | |
} | |
}, |
This file contains 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
// https://gist.github.com/vlucas/2bd40f62d20c1d49237a109d491974eb | |
"use strict"; | |
const { errorLog } = require("./logger"); | |
const crypto = require("crypto"); | |
const ENCRYPTION_KEY = | |
process.env.ENCRYPTION_KEY || "Dw-3]v,#FX@1gerbSAC4Jhn2=$!q/K.Z"; // Must be 256 bits (32 characters) | |
const IV_LENGTH = 16; // For AES, this is always 16 |
This file contains 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
export function uniqueItems(objArray, key) { | |
if (!objArray || !key) { | |
console.error("no args", objArray, key); | |
return objArray; | |
} | |
return objArray.reduce((result, obj) => { | |
if (result.find((o) => o[key] == obj[key])) { | |
return result; | |
} |
NewerOlder