This article describes how to record audio using the Web Audio API in JavaScript. The related resources are shown below.
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
{ | |
"workbench.colorTheme": "Shades of Purple (Super Dark)", | |
"editor.tokenColorCustomizations": { | |
"[*Light*]": { | |
"textMateRules": [ | |
{ | |
"scope": "ref.matchtext", | |
"settings": { | |
"foreground": "#000" | |
} |
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
#!/bin/bash | |
# Ensure the script runs with root privileges | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root. Use sudo!" | |
exit 1 | |
fi | |
# Get the default user (who ran sudo) | |
DEFAULT_USER=$SUDO_USER |
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
{ | |
// Основные настройки редактора | |
"editor.tabSize": 2, | |
"editor.folding": false, | |
"editor.insertSpaces": true, | |
"editor.smoothScrolling": true, | |
"editor.minimap.enabled": false, | |
"editor.renderWhitespace": "none", | |
"editor.detectIndentation": true, | |
"editor.guides.indentation": true, // белые вертикальные линии отступа |
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
#!/bin/bash | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
echo >> /home/lilflare/.bashrc | |
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/lilflare/.bashrc | |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
source ~/.bashrc | |
sudo apt-get update | |
sudo apt-get install build-essential -y | |
sudo apt-get install npm -y | |
sudo apt install python3-pip -y |
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
{ | |
// Workbench | |
"workbench.editor.labelFormat": "short", | |
"workbench.activityBar.location": "hidden", | |
"workbench.startupEditor": "none", | |
"workbench.iconTheme": "symbols", | |
"workbench.tree.enableStickyScroll": false, | |
"workbench.tree.indent": 12, | |
"workbench.colorTheme": "Min Dark", | |
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
// 2024 | |
{ | |
"workbench.startupEditor": "none", | |
"workbench.iconTheme": "moxer-icons", | |
"workbench.colorTheme": "Vesper", | |
// Theme often switched...Try Kanagawa Black or Aura Theme Dark | |
"workbench.settings.editor": "json", | |
"breadcrumbs.enabled": false, | |
"explorer.compactFolders": false, | |
"editor.wordWrap": "on", |
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
{ | |
// Disable telemetry | |
"telemetry.telemetryLevel": "off", | |
// Zen mode | |
"zenMode.fullScreen": false, | |
"zenMode.hideTabs": true, | |
"zenMode.centerLayout": false, | |
// Theming | |
"workbench.iconTheme": "city-lights-icons-vsc", | |
"editor.fontFamily": "Dank Mono", |
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
#format = """ | |
#[╭─user───❯](bold blue) $username | |
#[┣─system─❯](bold yellow) $hostname | |
#[┣─project❯](bold red) $directory$rust$git_branch$git_status$package$golang$terraform$docker_context$python$docker_context$nodejs | |
#[╰─cmd────❯](bold green) | |
#""" | |
#format = '$all' | |
[localip] | |
ssh_only = false |
NewerOlder