J Leaves's Blog

Thinking will not overcome fear but action will.

世界货币一览

Currencies Around the World

以下为世界主要货币一览表。(横向滚动查看更多) Region 货币 Currency Code Symbol Rank Proportion 大致汇率 中行现钞 中行现汇 中行汇款 工行外币/汇款 工行信用卡 ...

世界时区一览

Time Zones Around the World

下面呈现全球时区分布图。(点击查看大图) 以下为世界主要的时区分布表。(横向滚动查看更多) Primary TZ Database ID Other Canonical TZ Database IDs Regions Name of Standard Time Abbr of Standard Time ...

世界的自然地理分区

Natural Zones of the World

气候 Climate 科本气候分类法 Köppen climate classification 科本气候分类法是目前被最广泛使用的气候分类法,由德国气候学家 Wladimir Köppen 于 1864 年最先提出,后于 1918 年和 1936 年两次修订。 柯本气候分类将气候分为五个主要气候类别。所有气候都被分配了一个一级分类(第一个字母)。 一级分类根据降水和温度进行划...

手机频段一览

Band Frequencies

规格 频率 频段 中国电信 中国联通 中国移动 中国广电 备注 5G(sub-6G FDD) 2.1GHz n1 x x       ...

读书笔记:代码编写的原则

Principles in Coding

本文是 Clean C++ by Stephan Roth 的读书笔记。 KISS “Keep it simple, stupid” / “Keep it simple and stupid”. 在能实现功能的前提下,尽量简洁。 好处:不会加入不必要的代码而使得其复杂化。 YAGNI “You Aren’t Gonna Need It!”. 不要写那些当下用不到而未来可能用到的...

十二星座与二十四节气一览

Astrological Signs & Solar Terms

十二星座 / Astrological Sign 注释 / Gloss Emoji 大致日期 / Approximate Date 二十四节气 / Solar Term 白羊座 / Aries 绵羊 / The Ram ♈︎ 3/21 ...

安卓系统版本与 API 级别一览

Android Versions and API Levels

版本 / Version 代号 / Codename(内部版本号 / Internal Codename) API 级别 / API Level Android 1.0 - 1 Android 1.1 花色小蛋糕 / Petit...

Emoji 版本一览

About Emoji Versions

This is a collection of different Emoji versions, useful for checking Emoji support of a device. Emoji First supported iOS version Samples Emoji 14...

关于 Bash 的一些知识

About Bash Shell

登录 Linux 系统的时候,你可能会发现已经定义的别名、颜色等个人配置并没有被使用,这是为什么呢? 首先从 Shell 的类型说起。 Shell 的类型 Interactive Shell 交互式 Shell:任何你能够输入指令,并能得到输出的 Shell。 与之相反,非交互式 Shell:通过运行 Shell 脚本而自动启动的 Shell,通常在脚本结束运行时便自动退出不会保留...

R 中的 apply 系列函数

apply Functions in R

R中apply相关函数有不少,有的不常见,比如eapply,就不展开说了。常见的有apply,lapply,sapply,tapply。 1 apply 1.1 apply 的用法 查看R语言中apply函数的帮助文档,对apply函数是这样说明的: Returns a vector or array or list of values obtained by applying...