brew install helm
helm version
source <(helm completion zsh)
/interface wireless | |
set [ find default-name=wlan1 ] disabled=no mode=station ssid="<WIFI_SSID>" frequency=auto | |
/interface wireless security-profiles | |
add name="profile1" authentication-types=wpa2-psk mode=dynamic-keys wpa2-pre-shared-key="<WIFI_PASSWORD>" | |
/interface wireless | |
set [ find default-name=wlan1 ] security-profile=profile1 |
import ast | |
import os | |
import re | |
import traceback | |
import openai | |
openai.api_key = os.environ.get('OPENAI_API_KEY', '') | |
LOG_FILE = "log.txt" |
const METHODS = { | |
TRACK: 'track', | |
IDENTIFY: 'identify', | |
}; | |
class AnalyticsService { | |
providers = []; | |
idenitify(userId, userData) { |
void main() { | |
print('D => N'); | |
var length = 3000; | |
var map = primesMap().take(length).toList(); | |
for (int d = 0; d < length; d++) { | |
var dd = map[d]; | |
BigInt n = getN(BigInt.from(dd)); | |
if (n == dd) { | |
print('prime here start ----'); |
db-name?=m2 | |
db-host?=localhost | |
db-port?=3306 | |
run: | |
php -S 127.0.0.1:80 -t ./pub/ ./phpserver/router.php | |
repl: | |
n98-magerun2.phar dev:console | |
homefy: | |
bin/magento config:set web/unsecure/base_url http://localhost/ && \ | |
bin/magento config:set web/secure/base_url http://localhost/ && \ |
Адам сидів у приймальній кімнаті та очікував своєї черги.
Він був останнім.
Крім нього у кімнаті було ще декілька людей:
Першою в черзі була жінка постбальзаківсього віку, після неї чоловік десь за тридцять.
Тут раптом до кімнати зайшла дівчина у супроводі двох молодиків, судячи з усього -- її охоронці.
var diff = -0.12; | |
async function changeRule(style) { | |
var result = {}; | |
for (var i = 0; i < style.length; i++) { | |
try { | |
var property = style[i]; | |
var value = style[property]; | |
if (!value) { | |
continue; |
<?php | |
function fixName($value) { | |
$value = mb_eregi_replace('й', 'й', $value); | |
$value = mb_eregi_replace('ё', 'ё', $value); | |
return $value; | |
} | |
function getDirs($path) { | |
return array_diff(scandir($path), array('..', '.')); |