Skip to content

Instantly share code, notes, and snippets.

View Hinrikao's full-sized avatar
💭
❤️

Henrique Hinrikao

💭
❤️
View GitHub Profile
@MozzerGrozzer
MozzerGrozzer / settings.json
Last active April 27, 2025 04:45
apenas para meu vscode sinta livre para NÃO usar e ficar longe
{
"workbench.colorTheme": "Shades of Purple (Super Dark)",
"editor.tokenColorCustomizations": {
"[*Light*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#000"
}
@suhailroushan13
suhailroushan13 / script.sh
Created January 31, 2025 22:47
Cloud New Script 2025
#!/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
@HeisPovedim
HeisPovedim / VSCode - settings.json
Last active April 27, 2025 04:51
settings.json
{
// Основные настройки редактора
"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, // белые вертикальные линии отступа
@vivalareda
vivalareda / wsl-installation.sh
Last active February 1, 2025 04:55
wsl auto install script
#!/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
{
// 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",
@jsmlls
jsmlls / settings.json
Created January 6, 2024 20:28
2024 vscode environment
// 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",
@tatsuyasusukida
tatsuyasusukida / !README-javascript-audio.md
Last active May 9, 2025 02:26
🎵 How to record audio using the Web Audio API in JavaScript

🎵 How to record audio using the Web Audio API in JavaScript

Demo video: How to record audio using the Web Audio API in JavaScript

About this article

This article describes how to record audio using the Web Audio API in JavaScript. The related resources are shown below.

@danielroe
danielroe / settings.json
Last active April 27, 2025 04:53
VScode settings for a minimal UI
{
// 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",
@3ayazaya
3ayazaya / starship.toml
Last active May 16, 2025 13:49
My Starship terminal configuration file
#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
@deverebor
deverebor / README.md
Last active February 11, 2025 02:55
PowerShell + Windows Terminal - Personal settings

My settings:

Plugins

  • posh-git (sintax highlight for git)
  • Terminal-Icons (show icons using dir or ls)
  • spaceship (theming)
  • PSReadlines (auto sugestions & auto complete)
  • PSFzf (recursive search)
  • z search (global search using z prefix to access some folder)