タグ

2018年3月2日のブックマーク (6件)

  • Node.js — Node v9.7.0 (Current)

    2018-03-01, Version 9.7.0 (Current), @rvagg, prepared by @addaleax Notable Changes libuv: Updated to libuv 1.19.2 (Colin Ihrig) #18918 src: Add initial support for Node.js-specific post-mortem metadata (Matheus Marchini) #14901 timers: The return value of setImmediate() now has ref() and unref() methods (Anatoli Papirovski) #18139 util: It is now possible to get the name for a numerical platform-s

    Node.js — Node v9.7.0 (Current)
    efcl
    efcl 2018/03/02
    Node.js 9.7.0リリース。 `util.getSystemErrorName`の追加、`immediate.ref()`と`immediate.unref()`の追加など
  • GitHub - fabiandev/ts-runtime: Runtime Type Checks for TypeScript

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

    GitHub - fabiandev/ts-runtime: Runtime Type Checks for TypeScript
    efcl
    efcl 2018/03/02
    TypeScriptのコードをランタイムチェックできるように変換するツール
  • Angular v6で導入されるTree-Shakable DIの紹介 - 余白

    追記: 最新では scope が providedIn に変わってます。 github.com Angular v6では、これまでのDependency Injectionの仕組みをTree-Shaking可能にするためのオプション機能を追加します。 概要を説明するために簡単なスライドを作りました。 現状の問題 現在のDependency Injectionの仕組みでは、Injectionされるサービス(Injectable)はProviderの登録と、Injectorからの参照の2箇所で、静的に参照される必要があります。 たとえどこからもInjectionされないサービスでも、Providerを登録する時点でNgModuleからの参照が発生するため、ビルド時に不要なコードをふるい落とすTree-Shakingの対象にすることができませんでした。 新しいアプローチ Angular v6では

    Angular v6で導入されるTree-Shakable DIの紹介 - 余白
    efcl
    efcl 2018/03/02
    Angular 6で導入される新しいDependency Injectionの仕組みと目的について。 bundleする際のdead codeを削除し易い依存関係にしたDIの仕組み
  • Janitor Technology

    ปัจจุบันในรูปแบบความคุ้มครองประกันรถยนต์ที่ได้รับความนิยมมากที่สุดคงเป็นรูปแบบประกันรถยนต์ชั้นหนึ่งซึ่งเป็นรูปแบบประกันที่ให้ความคุ้มครองมากที่สุดมีราคาเบี้ยประกันแพงที่สุดแต่เมื่อเทียบกับความคุ้มค่าในความคุ้มครองเป็นการเพิ่มเกราะป้องกันให้กับผู้ขับขี่แล้วก็ถือว่าเหมาะสมกับราคาเบี้ยประกันที่จะต้องจ่ายในแต่ละปี ดังนั้นสำหรับใครที่กำลังมองหารูปแบบความคุ้มครองประกันรถยนต์ให้กับตัวเองอยู่แล้วก็ลองเข้า

    efcl
    efcl 2018/03/02
    FirefoxやChromium、Rustなど巨大なOSSのコードに対してすぐにアクセスできる環境を揃えてくれるサービス。 Cloud9 IDEなどを使ってオンラインで編集できる
  • Tracing from JS to the DOM and back again · V8

    Show navigation Debugging memory leaks in Chrome 66 just became much easier. Chrome’s DevTools can now trace and snapshot C++ DOM objects and display all reachable DOM objects from JavaScript with their references. This feature is one of the benefits of the new C++ tracing mechanism of the V8 garbage collector. Background #A memory leak in a garbage collection system occurs when an unused object i

    efcl
    efcl 2018/03/02
    JavaScriptからDOMの世界を辿りメモリリークを見つける方法について
  • Elegant patterns in modern JavaScript: RORO

    I wrote my first few lines of JavaScript not long after the language was invented. If you told me at the time that I would one day be writing a series of articles about elegant patterns in JavaScript, I would have laughed you out of the room. I thought of JavaScript as a strange little language that barely even qualified as “real programming.” Well, a lot has changed in the 20 years since then. I

    Elegant patterns in modern JavaScript: RORO
    efcl
    efcl 2018/03/02
    Receive an object, return an object (RORO)について