Copied from a comment someone left on a post of mine:
firing something at innocent person on their porch:
cop appearing to be enjoying himself today:
commit 6c5f5233db596c2c7708d5807d9a925a3a0ee73a | |
Author: naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | |
Date: Tue Nov 8 09:31:52 2016 +0000 | |
Moved deleted ChangeLog into doc/ChangeLog-2.4.0 | |
And Add doc/ChangeLog-2016 as an anchor. | |
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56671 b2dd03c8-39d4-4d8f-98ff-823fe69b080e |
Copied from a comment someone left on a post of mine:
firing something at innocent person on their porch:
cop appearing to be enjoying himself today:
I hereby claim:
To claim this, I am signing this object:
class String | |
def prettyb | |
self.chars.reverse.each_slice(4).map(&:join).join("_").reverse | |
end | |
def floatify | |
string = self.gsub('_', '') | |
if string.length % 16 != 0 | |
raise RuntimeError, "must be a single or a double precision float" |
javascript:void( | |
(function() { | |
window.open( | |
`https://play.rust-lang.org/?code=${encodeURIComponent( | |
window.getSelection().toString() | |
)}`, | |
"_blank" | |
); | |
})(); | |
) |
I am in the midst of an argument about vaccine safety and efficacy so I have compiled a list of meta analyses detailing both:
Immunogenicity and safety of pandemic influenza A (H1N1) 2009 vaccine: systematic review and meta‐analysis - Yin - 2011 - Influenza and Other Respiratory Viruses - Wiley Online Library https://onlinelibrary.wiley.com/doi/full/10.1111/j.1750-2659.2011.00229.x
Immunogenicity and safety
-- Story.base.positive_ranked.joins(:taggings).where(taggings: { tag_id: tags.map(&:id) }) | |
EXPLAIN SELECT `stories`.* | |
FROM `stories` | |
INNER JOIN `taggings` | |
ON `taggings`.`story_id` = `stories`.`id` | |
WHERE `stories`.`merged_story_id` IS NULL | |
AND `stories`.`is_expired` = false | |
AND ( ( Cast(upvotes AS signed) - Cast(downvotes AS signed) ) >= 0 ) | |
AND `taggings`.`tag_id` = 159; |
import { FluentBundle } from 'fluent/compat'; | |
import { negotiateLanguages } from 'fluent-langneg/compat'; | |
const MESSAGES_ALL = { | |
'pl': ` | |
title = Witaj świecie! | |
today-is = Dziś jest { DATETIME($date, month: "long", day: "numeric") }. | |
`, | |
'en-US': ` | |
title = Hello, world! |
javacript:void((() => { | |
const topLevelComments = [...document.querySelectorAll('ol.comments > li > div')].slice(1), | |
hide = (node) => { node.closest('li').style.display = 'none' }, | |
show = (node) => { node.closest('li').style.display = null }, | |
reset = () => { topLevelComments.forEach(show) }; | |
window.query = (query) => { | |
// Convenient for using it as an event handler | |
if (query && query.target) { query = query.target.value } |
javascript:void( | |
(function() { | |
this.distanceFromTop = (a, b) => { | |
return Math.sign(a.getBoundingClientRect().top - b.getBoundingClientRect().top); | |
}; | |
this.setUnreadElements = () => { | |
document.unreadElements = [...document.querySelectorAll('[class*=unread]')].sort(this.distanceFromTop); | |
}; |