I hereby claim:
- I am awsom82 on github.
- I am awsom82 (https://keybase.io/awsom82) on keybase.
- I have a public key whose fingerprint is 2B59 BDCD D826 5395 D43C D669 1795 4546 78EE E96F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # Delete all containers | |
| docker rm $(docker ps -a -q) | |
| # Delete all images | |
| docker rmi $(docker images -q) |
| gs -sDEVICE=pdfwrite -dNOPAUSE -dQUIET -dBATCH -dPDFSETTINGS=/-"screen" -dCompatibilityLevel=1.4 -sOutputFile="mel.pdf" "mel.pdf" |
/System/Library/Automator/Combine\ PDF\ Pages.action/Contents/Resources/join.py --output all.pdf *.pdf
gs -q -dNOPAUSE -dBATCH -dSAFER -dPDFA=2 -dPDFACompatibilityPolicy=1 -dSimulateOverprint=true -sDEVICE=pdfwrite -dCompatibilityLevel=1.3 -dPDFSETTINGS=/screen -dEmbedAllFonts=true -dSubsetFonts=true -dAutoRotatePages=/None -dColorImageDownsampleType=/Bicubic -dColorImageResolution=150 -dGrayImageDownsampleType=/Bicubic -dGrayImageResolution=150 -dMonoImageDownsampleType=/Bicubic -dMonoImageResolution=15 -sOutputFile=./output.pdf ./input.pdf
| package main | |
| import ( | |
| "bufio" | |
| "bytes" | |
| "fmt" | |
| "io" | |
| "net/http" | |
| "net/url" | |
| "os" |
| # | |
| # Name: nginx-tls.conf | |
| # Auth: Igor A. Melekhine <igor.melekhine@constssk.com> | |
| # Auth: Gavin Lloyd <gavinhungry@gmail.com> | |
| # Desc: Nginx SSL/TLS configuration for "A+" Qualys SSL Labs rating | |
| # | |
| # Enables HTTP/2, PFS, HSTS and OCSP stapling. Configuration options not related | |
| # to SSL/TLS are omitted here. | |
| # | |
| # Example: https://www.ssllabs.com/ssltest/analyze.html?d=constssk.com |
| --- | |
| linters: | |
| disable: | |
| - cyclop | |
| - depguard | |
| - dogsled | |
| - dupl | |
| - errname | |
| - errorlint | |
| - exhaustivestruct |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| ) | |
| // Sentence will be wrote as line in file | |
| type Sentence string |