I hereby claim:
- I am darthsim on github.
- I am darthsim (https://keybase.io/darthsim) on keybase.
- I have a public key ASDbO-9ZUeZWBo756yqgq4zo3QmqqTUl5w4MY7-5_3iqrwo
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<MediaContainer size="1" allowSync="1" identifier="com.plexapp.plugins.library" librarySectionID="9" librarySectionTitle="Фильмы" librarySectionUUID="e0942539-8a4d-4271-9c9d-670a379a6825" mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1418750662"> | |
<Video ratingKey="2851" key="/library/metadata/2851" guid="com.plexapp.agents.kinopoiskru://342?lang=ru" studio="A Band Apart" type="movie" title="Криминальное чтиво" originalTitle="Pulp Fiction" contentRating="R" summary="КиноПоиск: 8.635 (192687). IMDb: 9.0 (1022283). 
Двое бандитов Винсент Вега и Джулс Винфилд проводят время в философских беседах в перерыве между разборками и «решением проблем» с должниками своего криминального босса Марселласа Уоллеса. Параллельно разворачивается три истории." rating="8.6" viewOffset="1166211" lastViewedAt="1419410007" year="1994" tagline="Just because you are a character doesn't mean you have character" thumb="/library/metadata/2851/thumb/1419010968" art="/library |
I hereby claim:
To claim this, I am signing this object:
server { | |
server_name your-domain.com; | |
listen 443; | |
client_max_body_size 8M; | |
ssl on; | |
ssl_certificate /path/to/your/cert.crt; | |
ssl_certificate_key /path/to/your/cert.key; |
FROM darthsim/imgproxy:latest | |
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ | |
&& apk --no-cache upgrade \ | |
&& apk add --no-cache nginx | |
RUN echo -e "#!/bin/bash\nnginx && imgproxy" > /usr/local/bin/imgproxy-nginx | |
RUN chmod +x /usr/local/bin/imgproxy-nginx | |
RUN mkdir -p /run/nginx |
Concurrency Level: 8 | |
Time taken for tests: 579.080 seconds | |
Complete requests: 5000 | |
Failed requests: 0 | |
Total transferred: 253160000 bytes | |
HTML transferred: 251255000 bytes | |
Requests per second: 8.63 [#/sec] (mean) | |
Time per request: 926.528 [ms] (mean) | |
Time per request: 115.816 [ms] (mean, across all concurrent requests) | |
Transfer rate: 426.93 [Kbytes/sec] received |
{ | |
"__inputs": [ | |
{ | |
"name": "DS_PROMETHEUS", | |
"label": "Prometheus", | |
"description": "", | |
"type": "datasource", | |
"pluginId": "prometheus", | |
"pluginName": "Prometheus" | |
} |
import ( | |
"imgproxy" | |
) | |
func foo() { | |
imgproxy.SetEndpoint("https://my-imgproxy.com") | |
imgproxy.SetKeySalt("MYKEY", "MYSALT") | |
imgproxyURL := imgproxy.NewUrl( | |
"local:///my_pic.jpg", |
#include <stdlib.h> | |
#include <vips/vips.h> | |
int main( int argc, char *argv[] ) { | |
if( argc < 2 ) { | |
printf("src image path is missing\n"); | |
return 1; | |
} | |
if( argc < 3 ) { |
HEROKU_APPLICATION="your_application_name" | |
IMGPROXY_TAG="v3.7.2" | |
# You'll probably have to do this just once | |
heroku login | |
heroku container:login | |
# Make sure you use "-amd64" prefix. Otherwise you may accidentally deploy | |
# arm64 build of imgproxy which won't run on Heroku | |
docker pull us-docker.pkg.dev/imgproxy-pro/v3/imgproxy:$IMGPROXY_TAG-amd64 |