Post

Miscellaneous Content Collection within the Month

This is a compilation of miscellaneous content from the past month, covering topics such as downloading Twitter videos, Elasticsearch, and a quick start guide to Kubernetes.

Twitter Download with Ios shortcut

  1. dwonload

k8s Lens download without

k8s lesson

  1. k8s lesson

Chrome Delete Site Data

1
chrome://settings/content/all?searchSubpage=openai

死磕ES

  1. 慢查询
  2. 慎用WildCard
  3. Ngram分词配置

ES MAC ARM 安装

目前官方不支持 arm

1
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.10.2

Kibana docker 启动

1
2
3
4
docker run -d --name carmkibana -p 5601:5601 gagara/kibana-oss-arm64
# 虽然支持arm,但不知 es 7.1.0
# docker run --name my-kibana -d -p 5601:5601 docker.elastic.co/kibana/kibana:7.15.0

检测海外翻墙IP

1
2
3
4
5
6
7
8
9
10
11
curl 'http://sspanel.net/ip.php' \
  -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7' \
  -H 'Accept-Language: zh-CN,zh;q=0.9' \
  -H 'Cache-Control: no-cache' \
  -H 'Connection: keep-alive' \
  -H 'Pragma: no-cache' \
  -H 'Referer: http://www.ip111.cn/' \
  -H 'Upgrade-Insecure-Requests: 1' \
  -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36' \
  --compressed \
  --insecure
This post is licensed under CC BY 4.0 by the author.