Skip to content

Instantly share code, notes, and snippets.

View BekaValentine's full-sized avatar

Rebecca Valentine BekaValentine

View GitHub Profile
Alice wishes to get some information from Bob.
Both Alice and Bob each have a key pair:
```
pk_alice (Alice's public key), sk_alice (Alice's secret key)
pk_bob (Bob's public key), sk_bob (Bob's secret key)
```
To get the information, Alice sends Bob a message consisting of:

lovedaresnot protocol proposal

The protocol has two components: an absolute consensus component, and then a way to calculate thresholded consensus, and finally an efficiency improvement on the thresholded consensus.

absolute consensus

N voters want to determine if they all agree on a binary proposition.

I wonder what Illich would think of these. I think these are more convivial than not, now that they're in a more affordable price range. Hackerspaces especially have the feel of convivialization, because when they're Open, they have the tendency to reduce the need for specialization and such by not only making the tool available to all financial levels, but also eliminating the need for controlled specialized knowledge.

But this raises some questions: many of the tools we use in hackerspaces DO have some amount of constraints here: a novice who breaks the only 3D printer in the space makes it unusable for everyone and thus is a thing we wish to avoid. Some

“The core idea was that radical or difficult ideas were held back by the
thought that no one else had them. That fear of isolation led people to stay
"in the closet" about their ideas, making them the "love that dares not speak
its name." So lovedaresnot (shortened to "Dare Snot") gave you a way to find
out if anyone else felt the same, without forcing you to out yourself.
Anyone could put a question -- a Snot Dare -- up, like "Do you think we should
turf that sexist asshole?" People who secretly agreed signed the question with
a one-time key that they didn't have to reveal unless a pre-specified number
of votes were on the record. Then the system broadcast a message telling
import python
import semmle.python.objects.Callables
import semmle.python.web.RateLimiters
import semmle.python.web.django.General
class DjangoModel extends ClassValue {
DjangoModel() {
Module::named("django.db.models").attr("Model") = this.getASuperType()
}
}
---
title: Letter from Chelsea Manning to Judge Anthony Trenga
date: "2019-05-28"
---
Dear Judge Trenga,
During the contempt hearing on May 16, 2019, this Honorable Court directed me to take the opportunity during my confinement to reflect on my principles with respect to the institution of grand juries in the United States. This letter responds to that directive.
- Descriptivism vs. Prescriptivism and what words mean
- Social Construction
- Context and Utopia LARPing
! Local vs. Global Optimization
- Use/Mention distinction
- Logic and Pluralism
- Evolution/Survival of the fittest is not prettiest/strongest wins
- Philosophizing as introspection - reasoning about one's own beliefs in order
to probe one's feelings
- Intentions, consequences, and not intending harm
-- So basically, consider the follwing type class definition:
class Functor f => MonoidalApplicative f where
unitA :: f ()
pairA :: f a -> f b -> f (a,b)
-- We can make a Maybe instance like so:
instance MonoidalApplicative Maybe where
unitA = Just ()
import sys
from time import sleep
import random
import cursor
class Renderer:
def __init__(self, width, height):