lsof -PiTCP -sTCP:LISTEN
netstat -nr
# This file is licensed under the terms of the MIT license https://opensource.org/license/mit | |
# Copyright (c) 2021-2025 Marat Reymers | |
## Golden config for golangci-lint v2.1.6 | |
# | |
# This is the best config for golangci-lint based on my experience and opinion. | |
# It is very strict, but not extremely strict. | |
# Feel free to adapt it to suit your needs. | |
# If this config helps you, please consider keeping a link to this file (see the next comment). |
QUERY_STRING="" \ | |
HTTP_X_REQUEST_ID=123 \ | |
REQUEST_URI=api/v1/product/filter \ | |
SCRIPT_NAME=index.php \ | |
SCRIPT_FILENAME=/var/www/app/public/index.php \ | |
REQUEST_METHOD=GET \ | |
cgi-fcgi -bind -connect /run/php-fpm/www.sock |
# Включмть индексацию Spotlight можно командой: | |
sudo mdutil -a -i on | |
# Выключмть индексацию Spotlight можно командой: | |
sudo mdutil -a -i off | |
При выключенной индексации не работают теги! |
WITH RECURSIVE epc (id, parent_id, anchor) as ( | |
SELECT id, parent_id, anchor FROM table WHERE parent_id = 32 | |
UNION ALL | |
SELECT pc.id, pc.parent_id, pc.anchor FROM table pc | |
INNER JOIN epc on pc.parent_id = epc.id | |
) | |
SELECT * FROM epc order by id |
Конвертировать binary-файл в txt | |
xxd -p 1.mp3 1.txt | |
Конвертировать из txt в binary-файл | |
xxd -r -p 1.txt 2.mp3 |
- github: | |
"Managing remote repositories" | |
https://docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories | |
====================================================================================== | |
- stackoverflow | |
"How do I use cURL to perform multiple simultaneous requests?" | |
https://stackoverflow.com/a/66998509 |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"strings" | |
"sync" | |
"time" |
package main | |
import ( | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"time" | |
"strings" | |
"os" |