ARCGIS WEB API: 地图/地理类研究成果的在线可视化

在一切皆云的背景下,各大公司纷纷加入了数据上云的行列。 ESRI也不甘示弱,推出ArcGIS Web API 。今天翻看了一下网站,已经十分完善了。虽然目前已经有大量的在线地图网站,但长期的ArcGIS使用使得我们对其有着更高的熟悉感和亲切感(这何尝不是 ESRI 的一种套路)。 这样一来,我觉得可以带动地

Windows 的键盘快捷键

Windows 的键盘快捷键 文章来源: 微软官方文档 概要 本文列出了在 Windows 中可以使用的键盘快捷键。 Windows 系统组合键 F1:帮助 CTRL+ESC:打开“开始”菜单 ALT+TAB:在打开的多个程序之间切换 ALT+F4:退出程序 SHIFT+DELETE:永久删除项目 Windows 徽标+L:锁定计算机 (不使用 CTRL+ALT+DELETE) Windows 程序组合键 C

不刷机的解决方法:适用小米mini的 Misstar Tool 插件

使用前的准备:开启小米路由ssh 警告!此举动会使你的路由器丧失保修资格!慎重! ssh开启地址:Miwifi开放平台 拉到页面中部开启ssh 开启后,获得root密码和ssh工具。按页面说明操作即可。 **注意:** 1、路由器版本需要升级到开发版0.5.28及以上 2、现将U盘中的内容进行

Hyper-V 常见问题的解决

虚拟监视服务未启动 检查硬件是否支持: Bios 中开启虚拟化相关选项 启用关闭 windows 功能中勾选监视选项。如果已经勾选,那么先取消,确定,再重新勾选,确定。重启。 Linux 系统镜像无法加载/无法启动安装 先关闭虚拟机 检查启动项,调整为硬盘第一 DVD 第二 关闭安全启动( SecureBoot ) 重新开机 无法全屏/窗口分辨率太小 对于 windows 系统

中文文案排版指北

借用说明中的一句话:

统一中文文案、排版的相关用法,降低团队成员之间的沟通成本,增强网站气质。

查看指北

Python下虚拟环境的使用

虚拟环境的切换:

me@mymachine:~$ workon env1
(env1)me@mymachine:~$ workon env2
(env2)me@mymachine:~$ workon env1
(env1)me@mymachine:~$

虚拟环境退出:

deactivate

CentOS升级Python版本2.6至2.7.8

补充: 设置path部分,命令行ln -s /usr/local/bin/python2.7 /usr/bin/python

不能使用的,先删除python软链接再运行即可。

[root@localhost bin]# ln -s /usr/local/bin/python2.7  /usr/bin/python
ln: 创建符号链接 "/usr/bin/python": 文件已存在
[root@localhost bin]# rm -rf /usr/bin/python
[root@localhost bin]# ln -s /usr/local/bin/python2.7  /usr/bin/python
[root@localhost bin]# python -V
Python 2.7.8

其余部分参见: 参考链接: CentOs 6.x 升级 Python 版本

软链接操作及软硬链接区别

Academic Word List:Refs

AWL

The Academic Word List (AWL) was developed by Averil Coxhead as her MA thesis at the School of Linguistics and Applied Language Studies at Victoria University of Wellington, New Zealand. The list contains 570 word families which were selected according to principles. The list does not include words that are in the most frequent 2000 words of English. The AWL was primarily made so that it could be used by teachers as part of a programme preparing learners for tertiary level study or used by students working alone to learn the words most needed to study at tertiary institutions. The Academic Word List replaces the University Word List.

http://www.victoria.ac.nz/lals/resources/academicwordlist/

http://www.uefap.com/vocab/select/awl.htm#top

Vocabulary.com:TOP 1000

https://www.vocabulary.com/lists/52473

Tilt Brush & Tango:来自Google的VR应用。

下午逛了逛Google的网站,发现了挺有意思的东西。

Tilt Brush

Painting from a new perspective. Tilt Brush lets you paint in 3D space with virtual reality. Your room is your canvas. Your palette is your imagination. The possibilities are endless.

通过虚拟现实制作你的艺术作品。 Links: Tilt Brush 主页 Tilt Brush 作品示例

Tango

探索更加丰富多彩的世界

一个VR应用开发平台。 Tango 主页 Tango 体验apps

R function:summarySE(Rmisc)

get了Rmisc中的summarySE函数,快速求标准差标准误,便于分析及作图。 我使用的代码: library(Rmisc) ymeans <- summarySE(BJp.melt, measurevar="value", groupvars=c("year","type")) 运行效果: year type N value sd se ci 1 2000 A 507 121.918057 83.597116 0.155100427 0.303992518 2 2000 B 516 1.165986 1.088938 0.002362149 0.004629753 3 2001 A 851 51.867964 37.227834 0.081073688 0.158902421 4 2001 B 488 63.837853 61.232232 0.133148791 0.260968328 5 2002 A 788 129.482674 103.948437 0.237981082 0.466437309 下面是使用说明 Description Gives count, mean, standard deviation, standard error of the mean, and confidence interval (default 95%). Usage summarySE(data = NULL, measurevar, groupvars = NULL, na.rm = FALSE,