2017-10-13 ruki
This release fix some bugs and improve some details. And provide xmake-vscode plugins to integrate vscode editor and xmake. If you want to known more usage, please see online documents。 Source code: Github, Gitee. New features Add add_imports to bulk import modules for the target, option and package script Add xmak 继续阅读 »
2013-11-12 Lingxian Kong
业界动态 Mirantis在上周末发布了Mirantis OpenStack 4.0 Technical Preview for Havana,仅仅是一个技术预览版,不能作为生产环境使用。4.0预览版: 支持H版(但如果部署在RedHat上,仍然是G版) 将健康检查工具集成到命令行中 仍然没有包含Ceilometer和Heat 没有SLA的支持 关于Mirantis的稳定版3.2,请参见我的另一篇博客: http://lingxiankong.github.io/blog/2013/11/19/mirantis-openstack/ 还记得之前的那本由社区的大师们在5天时间内写出的书籍《OpenSt 继续阅读 »
2020-10-17 ruki
xmake 是一个基于 Lua 的轻量级跨平台构建工具,使用 xmake.lua 维护项目构建,相比 makefile/CMakeLists.txt,配置语法更加简洁直观,对新手非常友好,短时间内就能快速入门,能够让用户把更多的精力集中在实际的项目开发上。 在这个新版本中,我们对 Intel 系列的 C++ 和 Fortran 编译器做了全平台支持,并且改进了上个版本新加的 Wasm 工具链支持,同时对 Qt SDK for Wasm 也进行了支持。 另外,我们还将 luajit 升级到最新的 v2.1 版本,在跨平台方面,xmake 也做了很大的完善,增加了 mips64 架构的运行支持。 项目源码 官方文档 入门课程 入门 继续阅读 »
2014-01-14 Lingxian Kong
sys.argv 最简单、最原始的方法就是手动解析了。 import sys def TestSys(): for arg in sys.argv[1:]: print (arg) getopt getopt模块是原来的命令行选项解析器,支持UNIX函数getopt()建立的约定。它会解析一个参数序列,如sys.argv,并返回一个元祖序列和一个非选项参数序列。目前支持的选项语法包括短格式和长格式选项:-a, -bval, -b val, --noarg, --witharg=val, --witharg val。如果只是简单的命令行解析,getopt还是不错的选择。一个例子如下: try: option 继续阅读 »
2011-01-24 walter lee
This article goes out to all those special people in my heart Every person that matters the most,you know who you are Does not matter for now,does not matter latter All I gonna to do is make that call Turn around,there you are And so to you from the bottom of my heart,I wanna say one thing:Thank you 继续阅读 »
2014-10-24 W.Y.
如果用 D3 来构建一个简单的散点图,我们需要创建一些圆点(circle)来展示你的数据。当你发现 D3 并没有提供内置的方法来同时创建多个 DOM 元素时,也许你会感到惊讶,但是,等等,为什么呢? more 当然,你可以使用 append 方法来创建单个元素: js svg.append("circle") .attr("cx", d.x) .attr("cy", d.y) .attr("r", 2.5); 这仅仅是一个圆点,我们需要的是一系列圆点,每个圆点代表一条数据。当然你可以用 for 循环来创建,但开始之前,请看看下面官方例子中的代码: js svg.selectAll("circle") 继续阅读 »
2014-02-15 Lingxian Kong
编者按 由于过年的原因,跟踪不是很及时,各个模块的内容明显偏少,后续会补充到下期周报,请朋友们谅解。 业界动态 Cisco发布InterCloud,为企业提供私有云与公有云之间的迁移,同时支持不同类型的云,可以是基于OpenStack,也可以是AWS,甚至可以是 Microsoft Azure。InterCloud与Red Hat的CloudForm集成。在1月底米兰的展示会上,除了InterCloud,Cisco还发布了其他几个产品/服务: 1、Cisco Services For OpenStack:帮助客户了解并部署OpenStack,包括:strategy and assessment; validation; 继续阅读 »
2015-11-19 Klaus Ma
Native Docker Networking Status Docker now supports both single-host and multi-host networking this means that both containers on the same Docker host and containers on different Docker hosts can connect with each other with native docker network support. For multi-host networking support, docker is using overlay net 继续阅读 »
2018-09-28 Vaniot
ERROR 1698 (28000) 错误 错误详情:密码正确时用户依旧无法经如数据库中 shell mysql -u root -p Enter password: ERROR 1698 (28000): Access denied for user 'root'@'localhost' 错误的起因是root的plugin设置为auth_socket,用密码登陆的plugin应该是mysql_native_password。 解决办法: 在/etc/mysql/mysql.conf.d/mysqld.cnf这个文件里找到[mysqld]在该配置项下添加 skip-grant-tables这个配置,之后可以使用mysql命 继续阅读 »
2016-08-03 曹强
引用类型 Object类 ```text ECMAScript中的所有类都是由Object类继承而来。 Object类具有下列属性: Constructor:对创建对象的函数的引用(指针),对于Object类,该指针指向原始的Object()函数 Prototype:对该对象的对象原型的引用。 Object类还有几个方法: 1、PropertyIsEnumerable(property):判断给定的属性是否可以用for...in语句进行枚举 2、ToString():返回对象的原始字符串表示。 3、ValueOf():返回最适合该对象的原始值。对于许多类,该方法返回的值都与toString()的返回值相同。 继续阅读 »