谈谈开放的重要性

说明 本文从软件,互联网,区块链,安全的视角谈谈开放的重要性。 软件 软件方面看几个例子吧。 首先看一下chrome浏览器,chrome浏览器首先建立应用市场,对开发者开发浏览器api,各种浏览器插件丰富了chrome的功能,对不同场景有针对性的插件来满足用户的需求。 ...

January 9, 2021

展望2021年的Ethereum

前言 Ethereum作为第一个支持图灵完备的智能合约平台,同时也是最大的智能合约平台。从现在区块链应用角度来看是最重要的公链。个人认为公链的市场规模在万亿美元以上。 ...

January 8, 2021

那些值得多读的历史书

前言 历史是一面镜子。 历史是一个任人打扮的小姑娘。 “Most history is guessing, and the rest is prejudice.” 历史告诉我们过去发生什么,启示我们现在做什么,预示着未来发什么。 做为多年历史爱好者,这里列出我觉得值得阅读的历史书单。 ...

January 6, 2021

说说计算思维

什么是计算思维 wiki对于计算思维定义如下: Computational thinking (CT) refers to the thought processes involved in formulating problems so their solutions can be represented as computational steps and algorithms.[1]In education, CT is a set of problem-solving methods that involve expressing problems and their solutions in ways that a computer could also execute.[2]It involves automation of processes, but also using computing to explore, analyze, and understand processes (natural and artificial) ...

December 21, 2020

加密货币新手应该注意哪些问题

背景 随着eth 2.0信标链启动以及defi的快速发展,加密货币会迎来一个新的牛市。在牛市开启之后,一定有很多新人进场。 作为一名老韭菜,简单说说自己一些想法(不会展开说明)。 ...

December 8, 2020

学会背包问题,再也不怕动态规划 0-1背包

问题描述 Given weights and values of n items, put these items in a knapsack of capacity W to get the maximum total value in the knapsack. In other words, given two integer arrays val[0..n-1] and wt[0..n-1] which represent values and weights associated with n items respectively. Also given an integer W which represents knapsack capacity, find out the maximum value subset of val[] such that sum of the weights of this subset is smaller than or equal to W. You cannot break an item, either pick the complete item, or don’t pick it (0-1 property). ...

August 23, 2020

谈谈GPT3

GPT-3 GPT-3全称是"General Pre-trained Transformer-3",对应中文翻译为:第三代通用预训练转换器。 其wiki定义如下: ...

August 9, 2020

利用WSL和wget从github下载文件

背景 由于GFW的干扰,即使科学上网方式从github下载文件,下载连接经常会被中断。由于chrome重新连接的次数有限,据说chrome重新建立连接重试次数最大为5次。所以遇到一个大的下载文件,通常是不会下载成功,费时费力费心。 ...

July 31, 2020

说说地摊经济

最近地摊经济火了,火遍了朋友圈,激活了段子手。 原因 受到疫情影响,国内与国际经济都受到很大的冲击,国内企业倒闭,减薪,缩员等现象也是时有出现。在这种情况下国内底层人们受到冲击最大。而这些人也主要分布在低端服务(没有找到合适的词汇来表示)、餐饮等行业。 ...

July 8, 2020

第一性原理思考101

定义 第一性原理(First Principles)是指从基本原理出发进行思考和解决问题的方法。其具体含义可以概括为: 不做任何假设,客观看待问题,抛开已有的经验与习惯思维。 ...

July 3, 2020