Upstream issue: https://github.com/ipfs/ipfs/issues/337
Below table is tracking work related to move to CIDv1.
- 🍎 = Not started
- 🍊 = In progress
# Stats on AMO are available only after login, | |
# but the user count is included on the listing page ¯\_(ツ)_/¯ | |
curl -s https://addons.mozilla.org/en-US/firefox/addon/ipfs-companion/ | grep -Po '<dd class="MetadataCard-content">\K[[:digit:],]+(?=</dd><dt class="MetadataCard-title">Users</dt>)' | sed 's/,//g' |
# while Google does not provide official API and Stats are available only after login, | |
# for some reason exact user count is included on the listing page ¯\_(ツ)_/¯ | |
curl -s https://chrome.google.com/webstore/detail/ipfs-companion/nibjojkomfdiaoajekhjakgkdhaomnch | grep -Po '<Attribute name="user_count">\K[[:digit:]]*' |
# Note this is both downloads of install packages | |
# AND downloads of latest.yml manifest files used by autoupdate on Windows and macOS | |
curl -s https://api.github.com/repos/ipfs-shipyard/ipfs-desktop/releases | egrep 'download_count' | cut '-d:' -f 2 | sed 's/,/+/' | xargs echo | xargs -I N echo N 0 | bc |
#!/bin/bash | |
set -euo pipefail | |
if [ $# -ne 1 ]; then | |
echo 1>&2 "Usage: $0 URL" | |
exit 3 | |
fi | |
echo "Checking $1" |
Upstream issue: https://github.com/ipfs/ipfs/issues/337
Below table is tracking work related to move to CIDv1.
I hereby claim:
To claim this, I am signing this object:
/* This Source Code Form is subject to the terms of the Mozilla Public | |
* License, v. 2.0. If a copy of the MPL was not distributed with this | |
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
"use strict"; | |
module.metadata = { | |
"stability": "unstable" | |
}; | |
let usingJSON = false; |
package recfun | |
import common._ | |
import scala.annotation.tailrec | |
object Main { | |
def main(args: Array[String]) { | |
println("Pascal's Triangle") | |
for (row <- 0 to 10) { | |
for (col <- 0 to row) | |
print(pascal(col, row) + " ") |