- Adopted from: https://github.com/azagniotov/stubby4j/blob/master/docs/ADMIN_PORTAL.md
- Inspired by Swagger API docs style & structure: https://petstore.swagger.io/#/pet
This file contains 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
Format: | |
https://itunes.apple.com/#{@country_code}/rss/toppodcasts/limit=#{CHART_RESULT_LIMIT}/genre=#{@itunes_genre_id}/explicit=true/json | |
Grab genre ids from here: | |
https://podcasts.apple.com/us/genre/podcasts/id26 | |
e.g. https://itunes.apple.com/us/rss/toppodcasts/limit=10/genre=1301/explicit=true/json |
This file contains 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
error_page 500 /500.json; | |
location /500.json{ | |
return 500 '{"error": {"status_code": 500,"status": "Internal Server Error"}}'; | |
} | |
error_page 502 /502.json; | |
location /502.json{ | |
return 502 '{"error": {"status_code": 502,"status": "Bad Gateway"}}'; | |
} |
ffmpeg -i input.wav -af loudnorm=I=-23:LRA=7:tp=-2:print_format=json -f null -
ffmpeg -i input.wav -af loudnorm=I=-23:LRA=7:tp=-2:measured_I=-30:measured_LRA=1.1:measured_tp=-11 04:measured_thresh=-40.21:offset=-0.47 -ar 44100 -acodec pcm_s24le -y output.wav
- Modify /etc/nginx/nginx.conf file
- Modify /etc/nginx/sites-available/site.conf file
- Create /etc/nginx/useragent.rule file
Where to find user agent strings?
https://explore.whatismybrowser.com/useragents/explore/software_name/facebook-bot/
Looking for same but for Apache2? Here: https://techexpert.tips/apache/apache-blocking-bad-bots-crawlers/