- Fvco = 97.5 МГц (средняя частота диапазона 87-108 МГц)
- Fpd = 100 кГц (опорная частота)
- Icp = 1 мА (ток зарядового насоса)
- Kvco = 6 МГц/В = 6×10⁶ Гц/В
#lm7001
Веб-приложение для RF-инженеров (React 18 + TypeScript + Vite + Recharts) с тремя калькуляторами: фильтр петли ФАПЧ, выходной ФНЧ и активный фильтр на BJT-транзисторе. Развёрнуто на https://lm7001.vercel.app.
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
| TOOL_MODFILE := "go.tool.mod" | |
| audit: | |
| go vet ./... | |
| go tool -modfile={{TOOL_MODFILE}} staticcheck ./... | |
| go tool -modfile={{TOOL_MODFILE}} govulncheck | |
| tool-add TOOL: | |
| go get -tool -modfile={{TOOL_MODFILE}} {{TOOL}} |
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
| ## Migrating Homebrew from Intel to M1 | |
| ## You can copy and paste into the Terminal | |
| ## Go to home directory | |
| cd ; | |
| ## Create list of installed Intel packages | |
| brew bundle dump ; |
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 | |
| set -euo pipefail | |
| fonts_dir="$HOME/.local/share/fonts" | |
| if [[ ! -d "$fonts_dir" ]]; then | |
| mkdir -p "$fonts_dir" | |
| fi | |
| for font in "$@"; do |
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
| hs.window.animationDuration = 0 | |
| hs.window.setShadows(false) | |
| local hyper1 = { "cmd", "alt", "ctrl", "shift" } | |
| -- Launch and focus applications with below shortkey | |
| hs.fnutils.each({ | |
| { key = "e", app = "Arc" }, | |
| { key = "f", app = "Google Chrome" }, | |
| { key = "d", app = "Docker Desktop" }, |
sequenceDiagram
actor A as Attacker
participant E as Exploit
participant F as FlashLoaner
participant R as TheRewarder
participant rTKN
participant DVT
participant RWT
Note left of E: wait 5 days for the next round
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.10; | |
| contract Bank { | |
| mapping(address => uint) public balances; | |
| Logger logger; | |
| constructor(Logger _logger) { | |
| logger = Logger(_logger); | |
| } |
NewerOlder