Original Author: Rui Ueyama (creator of the mold linker)
Translated by @windowsboy111
Minimally edited by @lleyton
autoinstall: | |
version: 1 | |
interactive-sections: | |
- identity | |
- locale | |
- keyboard | |
source: | |
search_drivers: true | |
storage: | |
version: 1 |
// Inspired by Twitter Unfollow All: https://gist.github.com/ziadoz/caa882e75c11be9e8064e570ffec1f5f | |
(() => { | |
const $bookmarkButtons = 'button.status__action-bar__button.bookmark-icon'; | |
const retry = { | |
count: 0, | |
limit: 3, | |
}; |
...and obviously we're building a workaround. But I'm absolutely flabbergasted that a standard <input type="date">
HTML field, in a standard browser, from a company that bases its reputation good design, could be so dreadful.
I'm the developer for a startup that sells a genetic test to recommend medications for high blood pressure. For medical reasons we need to know our customers' birth date. Most of our customers are in their 60s or older. We've found that many of them use iPads or iPhones. And they're the ones who complain to our customer support that our site is unusable.
#!perl | |
use v5.36; | |
use feature (); | |
my( %Features, %Versions ); | |
foreach my $key ( keys %feature::feature_bundle ) { | |
next unless $key =~ /\A5\.\d[02468]\z/; | |
$Versions{$key}++; | |
foreach my $feature ( $feature::feature_bundle{$key}->@* ) { | |
$Features{$feature}{$key}++; |
;; TODO: add backtracking point, to avoid parsing all the way from the beginning! | |
;; | |
;; e.g. | |
;; | |
;; (json-value (new-string-state "[\" \" 123]")) | |
;; ==> (#f "Exhausted all possible JSON value types: Failed to parse JSON number: Expected character '9', but found '[' instead") | |
;; | |
;; we know we are looking for a comma, so add a backtracking point after the string | |
;; return 1 >>= thing1 >>= thing2 >>= thing3 |
It's come to my attention that some people have been spamming issue trackers with a link to this gist. While it's a good idea to inform people of the situation in principle, please do not do this. By all means spread the word in the communities that you are a part of, after verifying that they are not aware yet, but unsolicited spam is not helpful. It will just frustrate people.
A number of things have happened since the last update.
javascript:(function() { | |
function copyToClipboard(text) { | |
if (window.clipboardData && window.clipboardData.setData) { | |
/*IE specific code path to prevent textarea being shown while dialog is visible.*/ | |
return clipboardData.setData("Text", text); | |
} else if (document.queryCommandSupported && document.queryCommandSupported("copy")) { | |
var textarea = document.createElement("textarea"); | |
textarea.textContent = text; |
- CorticoMetrics is working to bring FreeSurfer to the clinic
- To be used in the clinic, it needs to be FDA approved as a "Class II medical device"
- A Medical device must be developed under a QMS (Quality Management System)
- A QMS is a set of business processes and records that must be adhered to
- "Design Review"
- "Validation"
/* | |
Copy this into the console of any web page that is interactive and doesn't | |
do hard reloads. You will hear your DOM changes as different pitches of | |
audio. | |
I have found this interesting for debugging, but also fun to hear web pages | |
render like UIs do in movies. | |
*/ | |
const audioCtx = new (window.AudioContext || window.webkitAudioContext)() |