Bobbie's Notes

  • Home

  • About

  • Tags13

  • Categories4

  • Archives5

  • Sitemap

  • Search

iPhone Xs 设计规范

Posted on 2019-10-12 | In Design | Comments: | Views:
iOS设计规范整理
Read more »

Ethereum Developer Tools List

Posted on 2019-10-12 | In Ethereum | Comments: | Views:
A guide to available tools, components, patterns, and platforms for developing applications on Ethereum.

Ethereum Developer Tools List

A guide to available tools, components, patterns, and platforms for developing applications on Ethereum.

Creation of this list was spurred by product managers at ConsenSys who saw a need for better sharing of tools, development patterns, and components amongst both new and experienced blockchain developers.

This resource is meant to be focused on developer tools, but the repo also includes:

  • Ethereum Ecosystem Resources for useful DApps, educational resources, wallets, and services.
Read more »

以太坊Solidity开发入门ERC20发币

Posted on 2018-11-11 | In Ethereum | Comments: | Views:
  • 使用ERC20的开源代码
  • 部署到本地测试链/公测链
  • 项目所有代码(在erc20文件夹)

环境部署

  • 安装 geth(以太坊客户端)
  • 安装 truffle(智能合约开发工具包,用于编译与自动部署)
  • 安装 ganache-cli (简易的本地以太坊测试链服务器)

安装命令

1
2
3
4
$ brew tap ethereum/ethereum
$ brew install ethereum
$ npm install -g truffle
$ npm install -g ganache-cli
Read more »

Linux常用命令-完整手册

Posted on 2018-11-06 | In Linux | Comments: | Views:

最近都在和Linux打交道,感觉还不错。我觉得Linux相比windows比较麻烦的就是很多东西都要用命令来控制,当然,这也是很多人喜欢linux的原因,比较短小但却功能强大。

系统信息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
arch 显示机器的处理器架构(1) 
uname -m 显示机器的处理器架构(2)
uname -r 显示正在使用的内核版本
dmidecode -q 显示硬件系统部件 - (SMBIOS / DMI)
hdparm -i /dev/hda 罗列一个磁盘的架构特性
hdparm -tT /dev/sda 在磁盘上执行测试性读取操作
cat /proc/cpuinfo 显示CPU info的信息
cat /proc/interrupts 显示中断
cat /proc/meminfo 校验内存使用
cat /proc/swaps 显示哪些swap被使用
cat /proc/version 显示内核的版本
cat /proc/net/dev 显示网络适配器及统计
cat /proc/mounts 显示已加载的文件系统
lspci -tv 罗列 PCI 设备
lsusb -tv 显示 USB 设备
date 显示系统日期
cal 2007 显示2007年的日历表
date 041217002007.00 设置日期和时间 - 月日时分年.秒
clock -w 将时间修改保存到 BIOS
Read more »

HTML5-语义化

Posted on 2018-11-04 | In 前端 | Comments: | Views:

​ 距HTML5标准规范制定完成并公开发布已经有好些年了,面试时也少不了要问对HTML5语义化得理解。但是在实际运用时,真正使用HTML5标签来开发的似乎不是很多(ps:查看了几个巨头公司网站推论),可能一部分原因是仍有部分用户使用在使用低版本浏览器。

​ 但是就我个人而言,因选取一些标签时会比较纠结,所以仍使用了div。(PS:正是因为这样,才有了这篇文章的,没错,以后要注意语义化了)

​ 什么是语义化?就是用合理、正确的标签来展示内容,比如h1~h6定义标题。

​ 语义化优点:

  • 易于用户阅读,样式丢失的时候能让页面呈现清晰的结构。
  • 有利于SEO,搜索引擎根据标签来确定上下文和各个关键字的权重。
  • 方便其他设备解析,如盲人阅读器根据语义渲染网页
  • 有利于开发和维护,语义化更具可读性,代码更好维护,与CSS3关系更和谐。
Read more »
BOBBIE WANG

BOBBIE WANG

Great Code. Great Life.

5 posts
4 categories
12 tags
Favorites
  • Behance
  • Dribbble
  • Ant.design
  • Element.io
  • Adobe Color
  • Google Fonts
  • Font awesome
  • TuTu生活志
0%
© 2018 – 2019 Bobbie's Notes