Uses clip on multiple image copies to create "slices" transitioned with CSS 3D. In-depth article on my blog.
Photographs by Sean Archer and Ila PhotoGraphic
A Pen by Dudley Storey on CodePen.
| config: | |
| key1: value | |
| observations: | |
| - duration: 3600 | |
| grid-ci: 23.5 | |
| cpu-util: 25 | |
| timestamp: 2023-05-05 15:32:22+0500 | |
| - duration: 3600 | |
| grid-ci: 25.5 | |
| cpu-util: 50 |
| { | |
| "components": [ | |
| { | |
| "load balancer": { | |
| "model": { | |
| "path": "org.boavizta.imp.vm.sci" | |
| }, | |
| "config": { | |
| "vendor": "gcp", | |
| "region": "west-us" |
| <?php | |
| /** | |
| * Split PDF file | |
| * | |
| * <p>Split all of the pages from a larger PDF files into | |
| * single-page PDF files.</p> | |
| * | |
| * @package FPDF required http://www.fpdf.org/ | |
| * @package FPDI required http://www.setasign.de/products/pdf-php-solutions/fpdi/ |
| .ios, .md { | |
| flash-card { | |
| /* | |
| * Flip animation by David Walsh: https://davidwalsh.name/css-flip | |
| */ | |
| /* entire container, keeps perspective */ | |
| .flip-container { |
| #!/bin/bash | |
| set -o errexit | |
| clear | |
| # Set versions. Check http://openresty.org for latest version and bundled version of nginx. | |
| OPENRESTY_VERSION=1.13.6.2 | |
| NGINX_VERSION=1.13.6 | |
| OPENSSL_VERSION=1.1.1b | |
| NPS_VERSION=v1.13.35.2 |
| #!/bin/sh | |
| # | |
| # nginx - this script starts and stops the nginx daemin | |
| # | |
| # chkconfig: - 85 15 | |
| # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ | |
| # proxy and IMAP/POP3 proxy server | |
| # processname: nginx | |
| # config: /etc/nginx/nginx.conf | |
| # pidfile: /var/run/nginx.pid |
| def fib(n): | |
| a =0 | |
| b=1 | |
| i=0 | |
| while i < n: | |
| temp = a | |
| a=b | |
| b = temp+b | |
| i+=1 | |
| return b |
Uses clip on multiple image copies to create "slices" transitioned with CSS 3D. In-depth article on my blog.
Photographs by Sean Archer and Ila PhotoGraphic
A Pen by Dudley Storey on CodePen.