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 lang="en" data-theme="light"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>dark mode</title> | |
<link rel="stylesheet" href="style.css" /> | |
<script src="script.js" defer></script> | |
</head> |
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 | |
// ASN.1 parsing library | |
// Attribution: http://www.krisbailey.com | |
// license: unknown | |
// modified: Mike Macgrivin hide@address.com 6-oct-2010 to support Salmon auto-discovery | |
// from openssl public keys | |
class ASN_BASE { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
on run {input, parameters} | |
with timeout of 360 seconds | |
tell application "System Events" | |
activate | |
display dialog input buttons {"OK"} default button 1 with title "File Hashes" giving up after 300 --seconds | |
end tell | |
end timeout | |
end run |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
import Foundation | |
import AVKit | |
// This extension is based upon https://www.thonky.com/qr-code-tutorial/data-encoding | |
extension AVMetadataMachineReadableCodeObject | |
{ | |
var binaryValue: Data? | |
{ | |
switch type | |
{ |
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
/* SYSTEM FONTS */ | |
.body { font: -apple-system-body; } | |
.headline { font: -apple-system-headline; } | |
.subheadline { font: -apple-system-subheadline; } | |
.caption1 { font: -apple-system-caption1; } | |
.caption2 { font: -apple-system-caption2; } | |
.footnote { font: -apple-system-footnote; } | |
.short-body { font: -apple-system-short-body; } |
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
Akabeko | |
Anchor | |
Ancient Tea Set | |
Art of War | |
Astrolabe | |
Bag of Marbles | |
Bag of Preparation | |
Bird-Faced Urn | |
Black Blood | |
Black Star |
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
[ | |
{ | |
"hex":"fff1ce", | |
"name":"blanc", | |
"hbw":72, | |
"id":"32001", | |
"collection":1931 | |
},{ | |
"hex":"585d5e", | |
"name":"gris foncé 31", |
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 | |
//check for PHP version requirements | |
if(version_compare(phpversion(), '5.3.0', '<')) die('This requires at least PHP 5.3 to run.'); | |
date_default_timezone_set('Europe/Berlin'); | |
$conversions = array( | |
array( | |
'text' => 'UTF-8 Decode', | |
'function' => function($input) { | |
return utf8_decode($input); |
NewerOlder