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
# apps | |
cask "istat-menus" | |
cask "obsidian" | |
cask "orbstack" | |
cask "topnotch" | |
cask "zed" | |
# AppStore Apps | |
mas "Caffeinated", id: 1362171212 | |
mas "NextDNS", id: 1464122853 |
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
# CLI | |
sudo apt update -y | |
sudo apt install -y \ | |
git curl fzf eza \ | |
docker.io docker-buildx \ | |
build-essential pkg-config autoconf bison rustc cargo clang \ | |
libssl-dev libreadline-dev zlib1g-dev libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev libjemalloc2 \ | |
libvips imagemagick libmagickwand-dev mupdf mupdf-tools \ | |
redis-tools sqlite3 libsqlite3-0 libmysqlclient-dev \ | |
rbenv apache2-utils |
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
http://localhost:8080/px.png?tracking_data={"events":[{"identifier":"colleagues::my_colleagues::profile","uid":726015,"sequence":0,"event_type":"track-view"},{"identifier":"colleagues::my_colleagues::profile","uid":723679,"sequence":1,"event_type":"track-view"},{"identifier":"colleagues::my_colleagues::profile","uid":4675426,"sequence":2,"event_type":"track-view"},{"identifier":"colleagues::my_colleagues::profile","uid":963658,"sequence":3,"event_type":"track-view"},{"identifier":"colleagues::my_colleagues::profile","uid":1268440,"sequence":4,"event_type":"track-view"},{"identifier":"colleagues::my_colleagues::profile","uid":1864260,"sequence":5,"event_type":"track-view"},{"identifier":"colleagues::my_colleagues::profile","uid":988316,"sequence":6,"event_type":"track-view"},{"identifier":"colleagues::my_colleagues::profile","uid":3867977,"sequence":7,"event_type":"track-view"},{"identifier":"colleagues::my_colleagues::profile","uid":3867984,"sequence":8,"event_type":"track-view"},{"identifier":"colleagues::my |
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
# | |
# Wide-open CORS config for nginx | |
# | |
location / { | |
if ($request_method = 'OPTIONS') { | |
add_header 'Access-Control-Allow-Origin' '*'; | |
# |
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/sh | |
test_document="{ | |
\"text\": \"HEAR the sledges with the bells, / Silver bells! / What a world of merriment their melody foretells! / How they tinkle, tinkle, tinkle, / In the icy air of night! / While the stars, that oversprinkle / All the heavens, seem to twinkle / With a crystalline delight; / Keeping time, time, time, / In a sort of Runic rhyme, / To the tintinnabulation that so musically wells / From the bells, bells, bells, bells, / Bells, bells, bells— / From the jingling and the tinkling of the bells.\" | |
}" | |
if curl -fs -X HEAD localhost:9200/top-terms; then | |
echo "Clear the old test index" | |
curl -X DELETE localhost:9200/top-terms; echo "\n" | |
fi |