name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays
Pandemonium is the complete system of Lemurian demonism and time sorcery. It consists of two principal components: Numogram (time-map) and Matrix (listing the names, numbers and attributes of the demons).
The system is constructed according to immanent criteria latent in decimal numeracy, and involves only basic arithmetical operations (assembled from additions and subtractions).
The Numogram, or Decimal Labyrinth, is composed of ten zones (numbered 0-9) and their interconnections. These zones are grouped into five pairs (syzygies) by nine-sum twinning [zygonovism]. The arithmetical difference of each syzygy defines a current (or connection to a tractor zone). Currents constitute the primary flows of the numogram.
Highly extensible software like Emacs, Vim, and Neovim tend to grow their own package managers. A software developer, for example, might want to install editor plugins that hook into a particular programming language's linter or language server. The programmer's text editor is therefore extended to support managing additional software to extend the text editor. If this loop continues for too long, the programmer's editor becomes more delicate and complex. The remedy for this problem is to manage software using dedicated tools apart
Welcome to the Cinematic Sora Video Prompts tutorial! This guide is meticulously crafted to empower creators, filmmakers, and content enthusiasts to harness the full potential of Sora, an advanced AI-powered video generation tool.
By transforming textual descriptions into dynamic, visually compelling video content, Sora bridges the gap between imagination and reality, enabling the creation of professional-grade cinematic experiences without the need for extensive technical expertise.
| import argparse | |
| import json | |
| import logging | |
| import os | |
| import re | |
| import shutil | |
| from concurrent.futures import ProcessPoolExecutor, as_completed | |
| from dataclasses import dataclass | |
| from datetime import datetime | |
| from typing import Any, Callable, Dict, List, Literal, Optional, Tuple |
Yoav Goldberg, Nov 24, 2024
This piece started with a pair of twitter and bluesky posts:
let's talk about "agents" (in the LLM sense). there's a lot of buzz around "multi-agent" systems where agents collaborate but... i don't really get how it differs from a thinking of a single agent with multiple modes of operation. what are the benefits of modeling as multi-agent?
— (((ل()(ل() 'yoav))))👾 (@yoavgo) November 23, 2024
| import argparse | |
| import random | |
| import sys | |
| from transformers import AutoModelForCausalLM, AutoTokenizer, DynamicCache | |
| import torch | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("question", type=str) | |
| parser.add_argument( |
| import React, { useState, useEffect, useCallback, useRef } from 'react'; | |
| type ColoredChar = { | |
| char: string; | |
| color: string; | |
| }; | |
| const defaultConfig = { | |
| scale: 0.05, |
| import React, { useState, useEffect, useCallback, useRef } from 'react'; | |
| /** | |
| * Represents a point in 3D space within the Lorenz system. | |
| */ | |
| interface Point { | |
| x: number; | |
| y: number; | |
| z: number; | |
| } |