New: asyncAll contenthive-129948hive-196917krzzansteemhive-183959hive-166405hive-180932photographyhive-185836uncommonlabhive-150122lifehive-183397hive-144064bitcoinhive-188619krsuccesshive-139150hive-103599hive-124908hive-101145hive-109690hive-184714hive-180301TrendingNewHotLikersamy24 (32)in web • 18 days agoWeb Workers: How to Offload Tasks to Background Threads, Boosting JavaScript PerformanceDoes your JavaScript application struggle to run in tandem with some heavy tasks? Long-running computations, complex algorithms, or huge data could clog up the main thread and make it an infuriating…amy24 (32)in web • 19 days agoAdvanced Event Handling in JavaScript: Custom Events, Event Delegation, and Event LoopWorking on sophisticated web applications requires event handling with JavaScript to be absolutely indispensable when trying to create user interactions that are dynamic and responsive. This is…mein-senf-dazu (63)in deutsch • 2 years agoMein Senf verzweifelt an asyncHallo liebe Community, die meisten unter euch werden vermutlich nur Bahnhof verstehen, aber ich gerade irgendwie auch. Ich bin ja dabei noch für freegifts einiges zu automatisieren und bin schon…odinox (35)in flutter • 4 years ago[Flutter] Flame 의 async 문제튜터리얼에는 void main() async { Util flameUtil = Util(); await flameUtil.fullScreen(); await flameUtil.setOrientation(DeviceOrientation.portraitUp); ... } 이라고 나와있지만... 실제로는 이제는 async / await…liebin (25)in moochain • 5 years ago第3第3 -> 前往 链课whitelizard (25)in javascript • 5 years agoHow Promise.race Solved a Problem In Our Async CI TestingThis article moved herelemooljiang (73)in cn • 5 years agoasync/await完美解决异步队列 / 网络研习社#46在JavaScript中几乎所有的函数都是异步的,这有好处,但也引起了一些问题。比如,如何保证异步函数按顺序执行呢? 举个例子,有三个任务:A, B , C ,因为是异步函数,所以JS几乎会同时调用这三个函数,谁先执行完,谁后执行完并不知道。如果是不相关的三件事倒还好,如果你需要它们顺序执行的话,那可要费点劲了。 前面我提到Promise的解决方案,A -> B -> C…blackanger (38)in rust • 5 years ago【Rust日报】 2019-08-28「系列文章」在Rust中使用C库 #C #FFi 两篇文章介绍了如何绑定C库,并且将其抽象为安全的方法调用。 Part I: Part II: 使用async/await构建高性能TCP客户端 #async #await #tcp…blackanger (38)in rust • 5 years ago【Rust日报】 2019-08-21「官方」async_await将在Rust 1.39稳定版中发布 #async #await #stable 目前,相关的PR已被合并。 Read More: 宣告:async-std 异步标准库的测试版 #async_std…blackanger (38)in rust • 5 years ago【Rust日报】 2019-08-17Facebook内部meetup流出:Rust如何走进Facebook #rust Chaos: 今天刚看到Facebook内部meetup流出的Slides,原文标题很有意思:Bringing Rust Home to Meet the Parents…blackanger (38)in rust • 5 years ago【Rust日报】 2019-08-05「Rust异步之书」中文翻译 #async #book 感谢 @huangjj的分享 Read More nphysics的未来:纯Rust的2D和3D实时物理引擎 #physics #game #Rustsim 作者在本文中探到了Nphysics将来的愿景,是做一个性能水平可与现有流行的C++开源物理引擎(如Box2D和Bullet…blackanger (38)in rust • 5 years ago【Rust日报】 2019-07-22cargo-bloat 0.8 发布 #cargo cargo-bloat 是一个可以帮助你缩减crate大小的库。新的版本有意思的是,cargo-bloat用cargo-bloat缩减了自己,结果令人满意:大小缩减了5倍,性能提升了10倍。 Read More chttp 0.5 发布 #async…blackanger (38)in rust • 5 years ago【Rust日报】 2019-06-19Facebook的数字货币项目Libra由Rust实现 #libra #facebook 谢邀。昨天第一时间看了下白皮书。 看看Libra的愿景,安全是重中之重。使用Rust写区块链,底层的内存安全有保证,也就是说杜绝了系统产生漏洞的可能性。 另外从Libra的智能合约语言MOVE中看得出来,Rust对Libra的影响是很深的。…blackanger (38)in rust • 6 years ago【Rust日报】 2019-05-29orkhon: 机器学习框架和运行时 #Python #ml Orkhon是用于机器学习的Rust框架,用于运行/使用用Python编写的推理/预测代码,冻结模型和处理未知(unseen)数据。 orkhon 「异步系列文章」Part 2: Async/Await语法之外的挑战 : 取消(Cancellation) #async #await…blackanger (38)in rust • 6 years ago【Rust日报】 2019-05-21mini-aio: 新的异步IO库 #async AdGear公司(一家实时广告平台)开源的库。这个库采用了与Rust中大多数其他异步IO库完全不同的方法:它实际上受到了Pony编程语言的启发。 因此,它不使用Futures,它不使用async/await,它只提供简单的trait。 比如,你想要实现HTTP server,只需要实现TcpListenNotify…blackanger (38)in rust • 6 years ago【Rust日报】 2019-05-16「官宣」Rust四周年 #Rust 从2015年5月15日Rust 1.0版发布至今,取得了如下成绩: 连续四年StackOverflow的“最受喜爱的编程语言” (日报君感慨:近一年半看了很多社区内的各种动态,大家形容Rust用的最多的一个词是:Amazing,如果非要翻译成中文,我觉得「赞叹」比较好。) 稳定了嵌入式Rust…blackanger (38)in rust • 6 years ago「Rust日报」2019每周精选 • 第十三期前言: 从2018年开始,我每天会花1个小时关注Rust社区动态,并且分享我每天的见闻,偶尔也夹杂了一些个人的观点。新的一年过去了,Rust日报已经成为了Rust社区群大家每天必看的内容。 从2019年开始,日报小组成立,目前的动态由:@Chaos、 @Mike、 @Damody(台湾)轮番为大家播报。也欢迎感兴趣的朋友加入小组。…blackanger (38)in rust • 6 years ago【Rust日报】 2019-04-08Rust异步进展:Future-proof the Futures API的PR已经被合并 #future #async 该PR解决的问题是: Future::poll 应该获取&Waker还是可以获得&Waker的&Context? 最终答案是:Context Future-proof the Futures API :PR 59119…blackanger (38)in rust • 6 years ago【Rust日报】 2019-03-12稳定 std::task 和 std::future::Future 的RFC已被合并 #RFC #async #await std::task 和 std::future::Future 是将async/await稳定为第一类公民的基础。该RFC涵盖了: std中task模块的所有API core和std的future模块 RFC 2592 pr…blackanger (38)in rust • 6 years ago【Rust日报】 2019-03-02用Rust重写Node.js实现的接口之后所带来的震惊 #node.js 作者用Rust重写了Node.js实现的一个小接口,但是流量很大,每秒180个请求。 之前Node.js版本技术栈: koa,框架 pino,日志 request,转发请求 Rust版本技术栈: actix-web, 框架 serde-json…