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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="debounce js implementation"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
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
var crypto = require('crypto'); | |
var https = require('https'); | |
// our variables | |
var access_key = '<ACCESS_KEY>' | |
var secret_key = '<SECRET_KEY>' | |
var region = 'ru-central1'; | |
var url = 's3.amazonaws.com'; | |
var myService = 's3'; | |
var myMethod = 'PUT'; |
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
#!/usr/bin/env bash | |
set -euo pipefail | |
# --- конфиг: список пакетов --- | |
PACKAGES=( | |
"@anthropic-ai/claude-code" | |
"@google/gemini-cli" | |
"@openai/codex" | |
"@qwen-code/qwen-code" | |
) |
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
#Requires -Version 5.1 | |
Set-StrictMode -Version Latest | |
$ErrorActionPreference = 'Stop' | |
# ========================= | |
# Config: package list | |
# ========================= | |
$PACKAGES = @( | |
'@anthropic-ai/claude-code', | |
'@google/gemini-cli', |