タグ

2016年5月10日のブックマーク (4件)

  • Vue.js Tokyo v-meetup="#1" (2016/05/31 19:00〜)

    注意 現在X(旧Twitter)でのソーシャルログインができない事象を確認しています。事前にX(旧Twitter)側で再ログインした上でconnpassのソーシャルログインを行うか、 「ユーザー名(またはメールアドレス)」と「パスワード」の組み合わせでのログインをお試しください。合わせてFAQもご確認ください。 お知らせ 2024年9月1日よりconnpassサービスサイトへのスクレイピングを禁止とし、利用規約に禁止事項として明記します。 9月1日以降のconnpassの情報取得につきましては イベントサーチAPI の利用をご検討ください。 お知らせ connpassではさらなる価値のあるデータを提供するため、イベントサーチAPIの提供方法の見直しを決定しました。2024年5月23日(木)より 「企業・法人」「コミュニティ及び個人」向けの2プランを提供開始いたします。ご利用にあたっては利用

    Vue.js Tokyo v-meetup="#1" (2016/05/31 19:00〜)
    kuy
    kuy 2016/05/10
    参加したい。
  • Custom elementsはES6のclass記法で定義可能になりそうです - Qiita

    class FlagIcon extends HTMLElement { constructor() { super(); this._countryCode = null; } static get observedAttributes() { return ["country"]; } attributeChangedCallback(name, oldValue, newValue) { // observedAttributes によって、 name はいつも "country" になる this._countryCode = newValue; this._updateRendering(); } get country() { return this._countryCode; } set country(v) { this.setAttribute("country", v)

    Custom elementsはES6のclass記法で定義可能になりそうです - Qiita
    kuy
    kuy 2016/05/10
    楽しみだ。問題はReactコンポーネントとどう組み合わせて使うかだなー。
  • Why is `(0,obj.prop)()` not a method call?

    This blog post explores references, a mechanism used by the ECMAScript language specification to explain the difference between the following two expressions: obj.prop() (0, obj.prop)() Method calls versus function calls  # Consider the following object: var obj = { getThis: function () { "use strict"; return this; }, }; If you call obj.getThis, you have a method call (this points to the object in

    kuy
    kuy 2016/05/10
    thisをdetachするということか。なるほど。
  • 初めてのnpm パッケージ公開 - Qiita

    履歴 @qsona さんの編集リクエストより記載ミスを修正 @diescake さんの編集リクエストよりコマンドのtypo を修正 ありがとうございます 注意: 現在はGemnasium はGitLab に統合されたため利用できないようです。代わりはhttps://libraries.io/ あたりになるでしょうか NodeJS パッケージの作成にあたって NodeJS のパッケージを作成してnpm に登録するときに、実際に行った手順について備忘録として残しておきます。 実施環境 OS

    初めてのnpm パッケージ公開 - Qiita
    kuy
    kuy 2016/05/10
    優しさを感じる。