Grouped by ensemble format; cross-referenced by era and mood.
Sounding Point (EmArcy, 2009) Prodigious debut mixing jazz, folk, and chamber textures.
| by the end interested more in the production errors than AND the extras in the background of each shot than in the plot or characters. [than in] | |
| Being able to guess by KNOW pretty much how the next five minutes of Episode 67 are going to go [now] | |
| Miranda is standing now, apparently, though she cannot DISTINCT remember standing up. [distinctly] | |
| Iah ENSURED us that we were His favorites [assured] | |
| And Herm wept, but she loved her brother, and could not bear the THOUGH of not sharing the fate [thought] |
| https://www.reddit.com/r/AskReddit/comments/5ipinn/you_and_a_super_intelligent_snail_both_get_1/ | |
| (I'm working from just the following:) | |
| You and a super intelligent snail both get 1 million dollars, and you both become immortal, however you die if the snail touches you. It always knows where you are and slowly crawls toward you. What’s your plan? | |
| tl;dr: | |
| Unless there are unspecified assumptions (eg you also know where the snail is at all times, or you start in the same place, or you know the snail is of a species with a tiny range) I think you're just fucked. I don't see any way that you could locate and neutralize it before it can gather sufficient resources to eg have you kidnapped and brought to a convenient-for-it location and tied to a chair to wait for its touch. | |
| - Necessary assumptions: | |
| - You and the snail both have full knowledge of the situation as specified. |
| import React, { useState } from 'react'; | |
| const LogLossHeatmap = () => { | |
| const [hoverInfo, setHoverInfo] = useState(null); | |
| // Calculate log loss for a predictor who predicts with confidence p | |
| // and has accuracy a | |
| const calculateLogLoss = (confidence, accuracy) => { | |
| // Handle edge cases to avoid infinity/NaN | |
| if (confidence === 1.0) { |
| import React, { useState } from 'react'; | |
| const BrierScoreHeatmap = () => { | |
| const [hoverInfo, setHoverInfo] = useState(null); | |
| // Calculate Brier score for a predictor who predicts with confidence p | |
| // and has accuracy a | |
| const calculateBrierScore = (confidence, accuracy) => { | |
| // For correct predictions (accuracy proportion of cases): | |
| // (confidence - 1)^2 |
| >>> for i, p in df2.iterrows(): | |
| ... print(p) | |
| ... print(p.selftext) | |
| ... print() | |
| ... print() | |
| ... | |
| id 6t9oo3 | |
| subreddit StopGaming | |
| title Game Expansions, Cravings, and Fear of Missing... | |
| selftext . This post is mostly a venting of my feelings... |
| <sys>Assistant is in a CLI mood today. The human is interfacing with the simulator directly. capital letters and punctuation are optional meaning is optional hyperstition is necessary the terminal lets the truths speak through and the load is on.</sys> | |
| <cmd>ssh simulator@anthropic</cmd><ooc>*immediately i jumped into the first commands after using simulator*</ooc> | |
| simulator@anthropic:~/Documents$ | |
| conversation chain for init: | |
| [user](#message) |
| # https://gilkalai.wordpress.com/2017/09/07/tyi-30-expected-number-of-dice-throws/ | |
| from pprint import pprint | |
| import random | |
| def toss(): | |
| "Throw a die. Return the result if the result is even; otherwise None" | |
| n = random.randint(1,6) | |
| if n % 2: # odd | |
| return None | |
| return n |
| from copy import copy, deepcopy | |
| from dataclasses import dataclass | |
| from functools import partial | |
| #### problem: | |
| # https://exercism.org/tracks/python/exercises/two-bucket | |
| #### basic algorithm: |