Image
In decentralized version
Given an image, in any file format, when you add it to IPFS (ipfs add
), you get a content
ID like "qm1"
In centralized version
Given an image, in any file format, when you add it to IPFS (ipfs add
), you get a content
ID like "qm1"
In centralized version
struct Token { | |
id: u64, | |
metadata_id: u64, | |
} | |
let metadata_vec = vec![]; | |
let metadata_map = HashMap::new(); // String to metadata_vec index of this String | |
let creator_id_to_metadata_ids = HashMap<String, Vec<u64>>::new(); | |
fn fetch_token(id: u64) -> Token { |
He tried to read an elementary economics text; it bored him past endurance, it was like listening to somebody interminably recounting a long and stupid dream. He could not force himself to understand how banks functioned and so forth, because all the operations of capitalism were as meaningless to him as the rites of a primitive religion, as barbaric, as elaborate, and as unnecessary. In a human sacrifice to deity there might be at least a mistaken and terrible beauty; in the rites of the money-changers, where greed, laziness, and envy were assumed to move all men's acts, even the terrible became banal.
— Ursula K. Le Guin, The Dispossessed
2020-06-26
I think men mostly have to learn to be anarchists. Women don't have to learn.
There was always a kind of psychological clear space around Mitis, like the lack of clouds around the peak of a mountain. The absence of all enhancements and enforcements of authority left the real thing plain. There are people of inherent authority; some emperors actually have clothes.
To be whole is to be part; true voyage is return.
Letters! Letters to propertarians, to subjects of governments founded on the inequity of power, to individuals who were inevitably exploited by and exploiters of others, because they had consented to be elements in the State-Machine. Did such people actually exchange ideas with free people in a nonaggressive, voluntary manner? Could they really admit equality and participate in intellectual solidarity, or were they merely trying to dominate, to assert their power, to possess?
Below is my proposal for the near.org home page. Each main heading corresponds to a section of the site.
The first section, as I explain it below, requires significant legwork:
near generate
While I think this legwork will pay significant dividends, I want the rest of these suggestions urgently enough that I don't think it's worth waiting all that time to start implementing. The second and third sections outlined below could be implemented much more quickly; let's start there.
And maybe there's some version of the first section that we could implement more quickly. I'm open to suggestions.
npx
near-shell
does not need to be installed globallynpx create-near-app
npx
near-shell
does not need to be installed globallynpx create-near-app
Hey! I'm Chad Ostrowski! On the Internet I go by chadoh. It's not the best nickname, but we go way back, this nickname and me.
Hopefully you're reading this page to learn:
const jsdom = require("jsdom") | |
const { JSDOM } = jsdom | |
const fetch = require('node-fetch'); | |
const newItemRegex = new RegExp('<span class="LIGHT_HIGHLIGHT">New Listing</span>') | |
const scrapeEbaySearchResults = dom => console.log( | |
Array.from( | |
dom.querySelectorAll('ul.srp-results li.s-item') | |
).map(li => ({ |