- Scroll behavior across the web (Chartbeat Blog)
- The myth of the page fold: evidence from user testing (CX Partners)
- Myth #3: People don't scroll (UX Myths)
- ClickTale Scrolling Research Report V2.0 (Web Analytics & Usability Blog)
- You Won’t Finish This Article (Slate)
- There is no page fold
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
| #!/usr/bin/env python3 | |
| """ | |
| Batch Photon Transfer Curve (PTC) Analysis for CR2 RAW files | |
| Recursively processes directories of CR2 files and generates: | |
| - Individual PTC plots for each file | |
| - Summary CSV with all statistics | |
| - Overview comparison plot | |
| Usage: |
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
| import os | |
| import rawpy | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| import matplotlib.gridspec as gridspec | |
| import pandas as pd | |
| from PIL import Image | |
| def generate_forensic_histograms(img_path): |
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
| import rawpy | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| import os | |
| def run_14bit_audit(src_path, label, color, out_dir): | |
| if not os.path.exists(src_path): | |
| print(f"Directory not found: {src_path}") |
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
| import cv2 as cv | |
| import numpy as np | |
| import rawpy | |
| def perform_pca(filepath, alter_image=False): | |
| if alter_image: | |
| # Read the CR2 image with auto white balance or auto brightness | |
| rgb_image = rawpy.imread(filepath).postprocess() | |
| else: |
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
| find . -name '*.log' -type f -delete |
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
| for i in `find . -name "*.log"`; do zip -j $i.zip $i;done; |
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
| for i in `find . -name "*.zip"`; do unzip -d `dirname $i` $i;done; |
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
| rsync -n -amv --stats --include="*/" --include="u_ex121218.log" --include="u_ex121219.log" --exclude="*" "/Volumes/bcm-ccit-web\$/test-WebLogs-Archive/full/current/" "/Volumes/bcm-ccit-web\$/test-WebLogs-Archive/scrubbed/current" |
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
| rsync -n -amv --stats --include="*/" --include="u_ex121218.log" --include="u_ex121219.log" --exclude="*" "/Volumes/WebLogs\$/" "/Volumes/bcm-ccit-web\$/test-WebLogs-Archive/full/current/" |
NewerOlder