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
const Y = (fn) => ( | |
(_fn) => fn((arg) => (_fn(_fn))(arg)) | |
)( | |
(__fn) => fn((arg) => (__fn(__fn))(arg)) | |
); | |
var factorial = (fact) => (n) => n === 0 ? 1 : n * fact(n - 1); | |
Y(factorial)(7); | |
//> 5040 |
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
Below you can find and example command how to do that: | |
convert -quality 90 -rotate "90>" -gravity center -units PixelsPerInch -density 150x150 -resize 1240x1753 IMG_2456.JPG 1.pdf IMG_2457.JPG 2.pdf IMG_2458.JPG 3.pdf salaries.pdf |