2014-05-28 Lingxian Kong
业界动态 OpenStack私有云服务商Metacloud近日完成B轮1500万美元融资,推动企业自建和Metacloud托管私有云服务开发和营销推广。目前Metacloud已经累计融资2700万美元。 EasyStack将会在本次的Atlanta峰会上有一个demo theater,EasyStack是一家OpenStack云解决方案和服务提供商,基于OpenStack为企业用户提供开放、稳定、可靠、可扩展的弹性云计算平台。 北京时间5.12号,OpenStack一年两次的峰会在Atlanta召开,主会议时间将从在亚特兰大时间五月12日早9点(北京时间五月12日晚9点)开始,持续到美国时间周四下午5点。同时,设计峰会将从周二 继续阅读 »
2018-10-10 浩阳
content {:toc} 起因 不知道大家是怎样安排自己的日常计划的,我习惯是建立一个仓库,按照年/周记录在 markdown 里,平时这个仓库也写点简单的 demo,目录类似如下: bash week ├── 2016 ├── 2017 ├── 2018 │ ├── 20180102.md │ ├── 20180108.md │ ├── 20180115.md │ ├── 20180122.md │ ├── 20180126.md │ ├── ... │ ├── ... │ ├── ... │ ├── 20181007.md │ ├── pixi.md │ ├── schedul 继续阅读 »
2016-06-09 ruki
源码 更新内容 此版本重构了90%的代码 新特性 增加task任务机制,可运行自定义任务脚本 实现plugin扩展机制,可以很方便扩展实现自定义插件,目前已实现的一些内置插件 增加project文件导出插件(目前已支持makefile的生成,后续会支持:vs, xcode等工程的生成) 增加hello xmake插件(插件demo) 增加doxygen文档生成插件 增加自定义宏脚本插件(支持动态宏记录、宏回放、匿名宏、批量导入、导出等功能) 增加更多的类库用于插件化开发 实现异常捕获机制,简化上层调用逻辑 增加多个option进行宏绑定,实现配置一个参数,就可以同时对多个配置进行生效 增加显示全局构建进度 继续阅读 »
2016-06-09 ruki
Sources Changelog New features Add task api for running custom tasks Add plugin expansion and provide some builtin plugins Add export ide project plugin(.e.g makefile and will support to export other projects for vs, xcode in feature) Add demo plugin for printing 'hello xmake' Add make doxygen documents plugin Add m 继续阅读 »
2017-08-30 ruki
New features Add ping demo for network Changes Modify license to Apache License 2.0 Rename --smallest=y|n option to --small=y|n Support stat64 Improve copy speed and fix permissions for tb_file_copy Improve path operation for posix platform Improve socket interfaces and support icmp Improve xmake.lua and remove binar 继续阅读 »
2016-10-30 ruki
New features Support make command and compile directly without xmake Add switch context interfaces into platform module Add coroutine module (supports i386, x86_64, arm, arm64 ..) Add simple http server demo using coroutine Add simple spider using coroutine Add io poller interfaces(with epoll, poll, kqueue, select) Su 继续阅读 »
2016-09-25 AnnatarHe
js
最近几天微信不声不响地推送了“微信小程序”,仅仅一天之后就有了破解版。前端圈里铺天盖地的都是这个话题。 我尝试了一下,做了个小demo,由于太小,几乎就是跟着文档刷了一遍而已。所以就不放出截图代码了。 这篇主要说一下我眼中的“微信小程序” 继续阅读 »
2016-07-25 ruki
xmake can run and debug the given target program now. We only need configure the debug mode to compile this target and run it. e.g. ```lua -- enable debug symbols if is_mode("debug") set_symbols("debug") end -- define target target("demo") set_kind("kind") add_files("src/*.c") ``` And we compile and r 继续阅读 »