タグ

2014年7月17日のブックマーク (2件)

  • TechCrunch | Startup and Technology News

    While all of Wesley Chan’s success has been well-documented over the years, his personal journey…not so much. Chan spoke to TechCrunch about the ways his life impacts how he invests in startups.

    TechCrunch | Startup and Technology News
    s99e209
    s99e209 2014/07/17
    ここ1年でのユーザー数の増加が半端ないけど、比例してサーバ負荷すごそう。とりあえず、マメにデータバックアップ取っておいたほうが良いかもね。
  • jquery 1.xと2.x の違い、さらに動作を高速にするための設定 | まとめーたー

    photoBy: http://www.jose-aguilar.com/blog/wp-content/uploa…まずは jquery 1.x と 2.x の違い 1.x 系は IE8 以前をサポートするが遅い、重い 2.x 系は IE8 以前のサポートは捨てて、いるが軽い、早い アイルトン・セナじゃあるまいしそんなに早くしてどうすんの?Webページがたった1秒高速化するだけでECサイトなんか、売上が10%向上した事例もあります。 使い分ける対応していないIE8以下には古いjqueryを読み込ませます <!--[if lt IE 9]> <script src="jquery-1.9.1.js"></script> <![endif]--> <!--[if gte IE 9]><!--> <script src="jquery-2.0.0.js"></script> <script s

    s99e209
    s99e209 2014/07/17
    JQuery2.xってそんなに高速なのか・・!ユーザーエージェントでIE8以前かどうかで判断する形で、JQuery2.xを積極的に使ったほうが良さそうな気がしてきた。