Skip to content

Instantly share code, notes, and snippets.

@RickyRomero
RickyRomero / facebook-comment-aria.html
Created March 21, 2021 19:19
Test file for Facebook comments
<!DOCTYPE html>
<html>
<head>
<style>
div:after {
color: red;
display: block;
content: attr(aria-label);
}
@RickyRomero
RickyRomero / data.json
Last active June 16, 2019 05:58
Tesla AP2.5 Software Rollouts
This file has been truncated, but you can view the full file.
@RickyRomero
RickyRomero / ant-design.json
Created April 18, 2018 22:12
Example Color Palette JSON files for Zebralyzer
{
"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",
@RickyRomero
RickyRomero / com.example.test.plist
Created November 5, 2014 19:08
Simple StartCalendarInterval launchd test with node.
<?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>
@RickyRomero
RickyRomero / Command 1
Last active August 29, 2015 13:57
mediainfo failed to build on 10.9.2
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
@RickyRomero
RickyRomero / 16777216.php
Created July 28, 2012 18:24
Creates and verifies full 16,777,216-color PNGs.
<?php
ini_set("memory_limit", "256M");
if (isset($argv[1]))
{
echo "Verifying image...\n";
verify16777216($argv[1]);
}
else
{