Skip to content

Instantly share code, notes, and snippets.

为什么这位计算机科学家说所有的加密货币都应该“葬身火海”

尽管在昂贵的超级碗广告中被炒作,但加密货币现在正处于一个困难的时刻。正如《纽约时报》所报道的那样:“本周加密货币世界在一次抛售中全面崩溃,图文并茂地说明了实验性和不受监管的数字货币的风险。”加密货币最强烈的怀疑论者之一是尼古拉斯-韦弗(Nicholas Weaver),他是国际计算机科学研究所(International Computer Science Institute)的高级职员研究员和加州大学伯克利分校计算机科学系的讲师。韦弗已经研究加密货币多年了。在与《时事》杂志主编内森·詹姆斯·罗宾逊(Nathan J. Robinson)交谈时,韦弗教授解释了为什么他对这项备受关注的技术抱有如此反感。他认为,加密货币是无用的、破坏性的,应该“葬身火海”。

采访记录在语法和清晰度方面经过了轻微的编辑。

罗宾逊:

这是你在2018年的一段话

@pengan1987
pengan1987 / addpinyin.py
Created November 21, 2018 19:26
Translate item name to pinyin
import json
import pinyin
with open('data.json', 'r') as f:
loaded_data = json.load(f)
newArr = []
for dataElem in loaded_data:
pinName = pinyin.get(dataElem['name'], format="strip", delimiter="")
pinName = pinName.replace(" - ","_")
dataElem['id'] = pinName
newArr.append(dataElem)
@pengan1987
pengan1987 / ImageHelper.java
Created May 30, 2017 00:00
ImageHelper can convert webpage to bitmap
package com.vidao.webtoimage;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.os.Build;
import android.util.Log;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
@pengan1987
pengan1987 / AHBottomNavigationAdapter.java
Last active July 4, 2016 20:46
XML menu resource adapter/inflator for AHBottomNavigation
package com.demo.demo1;
import android.app.Activity;
import android.support.annotation.MenuRes;
import android.support.v7.widget.PopupMenu;
import android.view.Menu;
import android.view.MenuItem;
import com.aurelhubert.ahbottomnavigation.AHBottomNavigation;
import com.aurelhubert.ahbottomnavigation.AHBottomNavigationItem;
1
00:00:04,320 --> 00:00:08,040
现代生活被接管已经是一个不言而喻的事实
2
00:00:10,320 --> 00:00:14,960
当我们寻找爱情,在线购物
3
00:00:14,960 --> 00:00:18,280
@pengan1987
pengan1987 / AzureBlobServiceProvider.php
Created August 24, 2015 05:59
Laravel 5 Windows Azure file system driver
<?php namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use League\Flysystem\Azure\AzureAdapter;
use League\Flysystem\Filesystem;
use Storage;
use WindowsAzure\Common\ServicesBuilder;
/**
* Laravel 5 Windows Azure file system driver
Enter file contents here<?php namespace SleepingOwl\Admin\Http\Middleware;
use AdminAuth;
use Closure;
class AdminAuthenticate
{
/**
* Handle an incoming request.
@pengan1987
pengan1987 / snmp_example.ino
Created August 11, 2013 09:49
The file that is currently on an Arduino Ethernet with a serial number of FTAJY69W
/**
USE_GITHUB_USERNAME=pengan1987
* Agentuino SNMP Agent Library Prototyping...
*
* Original made 2010 Eric C. Gionet <[email protected]>
* Modified by Andy Zhou
*/
#include <Streaming.h> // Include the Streaming library
#include <Ethernet.h> // Include the Ethernet library
#include <SPI.h>