Effective Go - 1

为了减少格式化问题带来的争议,可以使用 gofmt 程序对源码进行格式化。

2021-03-07 · 2 分钟

LeetCode-Word Search II Solution

LeetCode-Word Search II Solution - Given an m x n board of characters and a list of strings words, return _all words on the board

2021-03-07 · 1 分钟

Linux跨文件系统的文件夹和文件映射关系

Everything is a file 是Unix的设计理念,由其派生的Linux也如此。

2021-03-06 · 5 分钟

mount操作导致磁盘数据丢失

cenos7X86_64 + openssh

2021-03-02 · 2 分钟

DIY esp8266 小盒子

前些天看到用esp8266开发的小盒子,按照教程 作者提供了3D模型 我是使用速加网打印的, 质量和价格还不错,大概20元左右不含运费。 可能芯片规格不一样, 如果有打印机的话可以根据芯片尺寸,把盒子厚度加大一些。 主要是两个芯片: 1. ESP8266 D1 Mini:这个普通就可以, 10元左右。 2. 0.96…

2021-02-28 · 3 分钟

LeetCode-Maximum XOR of Two Numbers in an Array

Given an integer array nums, return _the maximum result of nums[i] XOR nums[j]_, where 0 ≤ i ≤ j < n. Follow up: Could you do this in O(n) runtime? Example 1…

2021-02-27 · 1 分钟

比特币,区块链与自由软件

这篇文章 Open source money: Bitcoin, blockchain, and free software

2021-02-24 · 4 分钟

开源许可证

最近在学习python 使用到在操作package的时候,有一个步骤就是要增加一个“LICENSE”文件。

2021-02-21 · 8 分钟

python语言学习

最新学习极客时间物联网课程中,老师使用的语言是python。之前也没有系统学习过,利用假期,跟着两个极客时间专栏学习了一下python 。

2021-02-17 · 9 分钟

python 的 __name__

python 的 name - 这篇文章The Reason Behind if name == ‘main’ in Python 是出自med

2021-02-08 · 4 分钟