This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
div:after { | |
color: red; | |
display: block; | |
content: attr(aria-label); | |
} |
This file has been truncated, but you can view the full file.
This file contains 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
[{"date":"2019-04-24T20:00:15.507Z","payload":[{"version":"2019.12 cb68c3d","count":334,"share":"8.8%"},{"version":"2019.9 8282d10","count":42,"share":"1.1%"},{"version":"2019.8.6 a0a6ece","count":186,"share":"4.9%"},{"version":"2019.8.6.1 7c47b13","count":78,"share":"2.1%"},{"version":"2019.8.5 3aaa23d","count":2621,"share":"69.4%"},{"version":"2019.8.4 530d1d3","count":241,"share":"6.4%"},{"version":"2019.8.3 da116a6","count":137,"share":"3.6%"},{"version":"2019.8.2 5c510a7","count":4,"share":"0.1%"},{"version":"2019.8.1 7ee0493","count":3,"share":"0.1%"},{"version":"2019.7.105 cc3d741","count":9,"share":"0.2%"},{"version":"2019.7.102 82596dc","count":1,"share":"0%"},{"version":"2019.7.61 7727aaf","count":2,"share":"0.1%"},{"version":"2019.7.11 77ce4d4","count":2,"share":"0.1%"},{"version":"2019.5.15 f5def7e","count":58,"share":"1.5%"},{"version":"2019.5.14 53ca475","count":6,"share":"0.2%"},{"version":"2019.5.2 c21b3a5","count":1,"share":"0%"},{"version":"2019.4.3 c63775a","count":3,"share":"0.1%"},{"versi |
This file contains 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
{ | |
"red-1": "#fef0ef", | |
"red-2": "#fcdbd9", | |
"red-3": "#fabeb9", | |
"red-4": "#f79992", | |
"red-5": "#f46e65", | |
"red-6": "#f04134", | |
"red-7": "#d73435", | |
"red-8": "#bd2636", | |
"red-9": "#a31837", |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.example.test</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/node</string> | |
<string>/test.js</string> |
This file contains 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
Nightscream:~ hr$ HOMEBREW_MAKE_JOBS=1 brew install -v mediainfo 2>&1 | |
==> Downloading http://mediaarea.net/download/binary/mediainfo/0.7.67/MediaInfo_CLI_0.7.67_GNU_FromSource.tar.bz2 | |
Already downloaded: /Library/Caches/Homebrew/media-info-0.7.67.tar.bz2 | |
==> Verifying media-info-0.7.67.tar.bz2 checksum | |
tar xf /Library/Caches/Homebrew/media-info-0.7.67.tar.bz2 | |
==> ./configure --disable-debug --disable-dependency-tracking --prefix=/usr/local/Cellar/media-info/0.7.67 | |
checking build system type... x86_64-apple-darwin13.1.0 | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... ./install-sh -c -d |
This file contains 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
<?php | |
ini_set("memory_limit", "256M"); | |
if (isset($argv[1])) | |
{ | |
echo "Verifying image...\n"; | |
verify16777216($argv[1]); | |
} | |
else | |
{ |