【HNS】试着领一下 HandShake 发给开源社区的 HNS Coin

0x00 前言

最近呢,开源社区出了这么一件事:
《@ 开发者,这个 GitHub 项目可以褥羊毛》
简单概述一下其大致意思呢就是:

GitHub 有一个区块链项目 Handshake 正在面向 GitHub 上前 25 万名开发者派送 4,246.99 HNS 币。大约价值 1358.56 美元,换算成人民币则是差不多近 1 万元人民币。

那么,这里所谓的前25万,它们是如何判定的呢?

The top ~250,000 users on github have had their SSH keys and PGP added to a merkle tree. Out of those ~250,000 users, ~175,000 of them had valid SSH and PGP keys at the time of tree creation.

简单来说,它们在2019年2月4号做了一个快照,在这个时间节点,所有 Followers 数量大于15的用户的 SSH Key(大约17.5万人)都被记录在案。

If you had 15 or more followers on github during the week of 2019-02-04, your github SSH & PGP keys are included in the merkle tree.

Read More

【Autograd】深入理解BP与自动求导

“所有数值计算归根结底是一系列有限的可微算子的组合”
——《An introduction to automatic differentiation

Read More

【Codeforces】33th_Codeforces_Contest

0x00 前言

哇,真的是好久好久没有打Codeforces了呢……
距离上一次(2015-04-14 23:47)竟然已经过了两年半之久…
嘛,总之……还凑合QvQ……

Read More

【Chrome-crx】键盘模拟鼠标点击网页按钮

0x00 前言

最近在做一个标注任务:
简单的说,就是屏幕上有好多小方块,选中其中的部分,
然后在页面下面的四个标注按钮(红绿蓝黑)上点一下,
小方块们就会被染成这个按钮的颜色,需要把所有的小方块们染色完。

请各位想象一下:纯鼠标工作,在一个白底的网页上来回翻飞舞动,眼睛都看花啦!
所以我决定想个法子把这四个染色按钮绑在我键盘上的几个键上(QWER就是你们了)。
(以后标注起来看起来在打DOTA一样哈哈哈)

Read More

【Pytorch】Torch_NN_Learning

1
2
3
4
5
6
7
8
9
10
from __future__ import print_function
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
import torch.autograd as autograd
from torch.autograd import Variable

import numpy as np
print("Import success.\nTorch Version:{}".format(torch.__version__))
Import success.
Torch Version:0.2.1+a4fc05a
Read More