Skip to content

Instantly share code, notes, and snippets.

@EvgenyOrekhov
Last active July 18, 2025 03:27
Show Gist options
  • Save EvgenyOrekhov/ffe91ccc6851651a89729750548a642b to your computer and use it in GitHub Desktop.
Save EvgenyOrekhov/ffe91ccc6851651a89729750548a642b to your computer and use it in GitHub Desktop.
Settings
ctl.equal {
type equal;
}
pcm.plugequal {
type equal;
# Modify the line below if you do not
# want to use sound card 0.
#slave.pcm "plughw:0,0";
# by default we want to play from more sources at time:
slave.pcm "plug:dmix";
}
pcm.!default {
type plug;
slave.pcm plugequal;
}
set guidestripe 72
vo=gpu
hwdec=vdpau-copy
profile=gpu-hq
scale=ewa_lanczossharp
cscale=ewa_lanczossharp
sharpen=2
interpolation=yes
tscale=oversample
video-sync=display-resample
alang=English,eng,en
slang=English,eng,en
audio-file-auto=fuzzy
sub-auto=fuzzy
sub-filter-sdh=yes
sub-filter-sdh-harder=yes
fullscreen=yes
af=superequalizer=1b=1:2b=1:3b=0.5:4b=0.5:5b=0.5:6b=0.5:7b=0.5:8b=0.5:9b=0.5:10b=0.5:11b=0.5:12b=0.5:13b=0.5:14b=0.5:15b=0.5:16b=1:17b=1:18b=1
без фильтрации:
- 192.168.1.1
- alibaba.com
- aliexpress.com
- aliexpress.ru
- app.element.io
- bitbucket.org
- dropbox.com
- emphasoft.com
- facebook.com
- feedly.com
- forethought.ai
- genotek.ru
- github.com
- github.io
- gitlab.com
- gosuslugi.ru
- hh.ru
- imdb.com
- instagram.com
- jsfiddle.net
- leanpub.com
- lingualeo.com
- localhost
- mail.ru
- moviemakeronline.com
- myshows.me
- nalog.ru
- notabenoid.org
- npmjs.com
- ok.ru
- olegb.ru
- psbank.ru
- rt.ru
- sberbank.ru
- slack.com
- tbank.ru
- twitter.com
- urbandictionary.com
- vercel.app
- vk.com
- web.skype.com
- wikipedia.org
- yandex.ru
- yandex.com
- chatgpt.com
- grok.com
- x.com
- google.com
- ozon.ru
- wildberries.ru
- halvacard.ru
- megamarket.ru
базовый:
оптимальный:
- all-urls
полный:
{
"compilerOptions": {
// Target environment
"target": "esnext", // Use latest JS features
"lib": ["DOM", "DOM.Iterable", "ESNext"], // Include browser and modern JS APIs
"jsx": "react-jsx", // Use modern JSX transform (React 17+)
// Module system and resolution
"module": "nodenext", // Enable Node.js-native ESM support
"moduleResolution": "nodenext", // Match Node.js module resolution
"allowImportingTsExtensions": true, // Allow imports with .ts/.js extensions
"resolveJsonModule": true, // Allow importing JSON modules
"verbatimModuleSyntax": true, // Preserve import/export syntax
"esModuleInterop": true, // Enable compatibility with CommonJS modules
// Type checking and safety
"strict": true, // Enable all strict type-checking options
"noFallthroughCasesInSwitch": true, // Disallow fallthrough in switch statements
"noImplicitReturns": true, // Ensure functions return a value
"noUncheckedIndexedAccess": true, // Add undefined to possibly missing index accesses
"noUnusedLocals": false, // DO NOT check unused local variables, should be handled by a linter
"noUnusedParameters": false, // DO NOT check unused function parameters, should be handled by a linter
"forceConsistentCasingInFileNames": true, // Enforce consistent casing in imports
"skipLibCheck": true, // Skip type checking of declaration files for faster builds
// Build and emit behavior
"noEmit": true, // Do not emit compiled files
"incremental": true, // Enable faster rebuilds via incremental compilation
// Experimental & native features
"useDefineForClassFields": true, // Use ECMAScript spec-compliant class fields
"erasableSyntaxOnly": true // Enable Node.js native TS support (types erased)
},
// Project structure
"include": ["src"],
"exclude": ["node_modules", "dist"]
}
{
"[handlebars]": {
"files.insertFinalNewline": false
},
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": false,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "MesloLGM Nerd Font Mono, Menlo, Monaco, DejaVu Sans Mono for Powerline, DejaVuSansMono NF, Consolas, 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 13,
"editor.formatOnSave": true,
"editor.linkedEditing": true,
"editor.rulers": [80],
"editor.tabSize": 2,
"editor.wordWrap": "on",
"explorer.confirmDragAndDrop": false,
"files.autoSave": "onFocusChange",
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"git.blame.editorDecoration.enabled": true,
"github.copilot.nextEditSuggestions.enabled": true,
"gitlens.hovers.enabled": false,
"gitlens.statusBar.enabled": false,
"html.format.indentHandlebars": true,
"html.format.maxPreserveNewLines": 1,
"html.format.wrapAttributes": "force-expand-multiline",
"html.format.wrapLineLength": 80,
"js/ts.implicitProjectConfig.experimentalDecorators": true,
"python.analysis.autoImportCompletions": true,
"stylelint.validate": ["css", "less", "postcss", "scss"],
"terminal.integrated.fontSize": 14,
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment