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/bash | |
curl -s -H "Authorization: Bearer $VERCEL_TOKEN" https://api.vercel.com/v6/now/deployments?limit=5 | \ | |
jq '.deployments | map("https://\(.url)")' | \ | |
curl -H "Content-Type: application/json" -X POST --data-binary @- https://api.lightest.app/api/comparison | \ | |
jq -r '.id' | \ | |
awk '{print "\nhttps://lightest.app/c/"$1}' |
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
@199rec.co.uk | |
@24-7recruitment.net | |
@2kpeople.co.uk | |
@33six.net | |
@365rec.com | |
@3aaa.co.uk | |
@3rglobal.com | |
@48digital.co.uk | |
@4itrecruitment.co.uk | |
@752solutions.com |
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
REST API over Node | |
API | |
- что такое и зачем | |
- API в WEB (http, soap, xml-rpc) | |
- API first, преимущества, use cases | |
- небольшой пример на Twitter API | |
REST API | |
- определение REST систем (отсылки к Roy Fielding) |
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
docker run -d -p 9200:9200 -p 9300:9300 -v /home/defly/es:/data dockerfile/elasticsearch /elasticsearch/bin/elasticsearch -Des.config=/data/elasticsearch.yml | |
docker run -d -p 5601:5601 -e ELASTICSEARCH=http://172.17.42.1:9200 -P marcbachmann/kibana4 |