はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    ブラックフライデー

『Alex MacCaw』

  • 人気
  • 新着
  • すべて
  • CommonJS for Sprockets

    4 users

    blog.alexmaccaw.com

    April 25, 2012 CommonJS for Sprockets CommonJS modules are a way of encapsulating and packaging up JavaScript files to ensure they’re name-spaced and loosely coupled, a crucial aspect to ensuring JavaScript code quality and maintainability. Traditional JavaScript module management is very manual, often using a single namespace for the whole app. In my opinion this doesn’t go far enough - scripts e

    • テクノロジー
    • 2014/07/17 09:46
    • rails
    • JavaScript
    • Memory Management in JS Web Apps

      12 users

      blog.alexmaccaw.com

      July 14, 2013 Memory Management in JS Web Apps Memory management is a fairly crucial part to building JavaScript web applications, and just because the language has a garbage collector it doesn’t absolve you from all duties. Take your classic controller (or view in Backbone land). In its constructor it may bind to some model events, perhaps re-rendering itself when a record changes. You’ll need to

      • テクノロジー
      • 2014/06/19 19:17
      • memory
      • performance
      • javascript
      • An Engineer's guide to Stock Options

        10 users

        blog.alexmaccaw.com

        There's a lot of fear, uncertainty and doubt when it comes to stock options, and I'd like to try and clear some of that up today. As an engineer, you may be more interested in getting on with your job than compensation. However, if you're working at a fast growing startup, with a little luck and the right planning you can walk away from a liquidity event with a significant amount of money. On the

        • テクノロジー
        • 2013/12/11 08:22
        • unclassified
        • SEO in JS Web Apps

          7 users

          blog.alexmaccaw.com

          JavaScript and search engines have always had a tricky relationship, and SEO is often used as an argument against single page applications. I'm aiming to put some of those misconceptions to rest in this article and show you that it's perfectly possible to create a pure JavaScript web application and still have good SEO. To demonstrate, take a look at the search results for Monocle, a single page w

          • テクノロジー
          • 2013/07/23 04:39
          • seo
          • JavaScript
          • How yield will transform Node.js

            4 users

            blog.alexmaccaw.com

            July 19, 2013 How yield will transform Node.js Node v0.11.2 was released recently, and with it support for v8 generators. Generators can be hard to grasp, but essentially they’re decorated functions that you can execute multiple times and resume execution at different points inside the function. What this means in practice is that we can get rid of the callback hell that has plagued node applicati

            • テクノロジー
            • 2013/07/20 11:22
            • *あとで
            • Speed up Heroku deploys

              3 users

              blog.alexmaccaw.com

              July 10, 2013 Speed up Heroku deploys While building Monocle, I noticed that deploys to Heroku were taking absolutely ages; specifically the asset pre-compilation stage. I tried a variety of things, including removing a bunch of CoffeeScript files, but deploys were still taking in the order of several minutes. After talking to Josh, it seems the solution is a simple one. Simply enable Memcache cac

              • テクノロジー
              • 2013/07/11 10:09
              • Heroku
              • rails
              • Monocle

                4 users

                blog.alexmaccaw.com

                I've been working on a project called Monocle these past few weeks, and it's time to show it to the world. Monocle is an experiment in creating a friendly and intelligent community around sharing quality content with a focus on technology, startups and frankly anything that appeals to the inquisitive mind. PhilosophyOver the next few weeks I'm going to be writing about the more interesting aspects

                • テクノロジー
                • 2013/07/09 09:53
                • Chrome’s requestAutocomplete()

                  6 users

                  blog.alexmaccaw.com

                  May 16, 2013 Chrome’s requestAutocomplete() Another Google I/O, and another raft of awesome products. One announced API that I’m particularly excited about is requestAutocomplete(), a feature which is landing in Chrome Canary for Windows and Mobile (with OSX support coming shortly). What this API does, in a nutshell, is give you programatic access to autocomplete (or autofill) data. Autocomplete w

                  • テクノロジー
                  • 2013/05/18 01:35
                  • chrome
                  • autocomplete
                  • api
                  • form
                  • Browser
                  • development
                  • javascript
                  • requestautocomplete
                  • Setting up Sublime Text 2

                    12 users

                    blog.alexmaccaw.com

                    April 9, 2013 Setting up Sublime Text 2 I recently decided it was finally time to part ways with TextMate, my trusty companion for these last few years, and start the hunt for a new editor. After a quick Twitter poll the unanimous advice was that I should try Sublime Text 2. After a few weeks of using Sublime Text I can safely say that it’s the best editor I’ve used. It’s fast, extendable and hasn

                    • 暮らし
                    • 2013/04/10 11:31
                    • sublime
                    • editor
                    • *software
                    • text
                    • *programming
                    • Abba - JavaScript a/b testing

                      19 users

                      blog.alexmaccaw.com

                      March 12, 2013 Abba - JavaScript a/b testing Abba is a self-hosted a/b testing framework built to help improve conversion rates on your site. Tuning signup and payment forms can have huge effects on your business, and it’s a good idea to supplement design and copy changes with data on how differences actually effect conversion. We built this tool for internal use at Stripe, and today we’re open-so

                      • テクノロジー
                      • 2013/03/13 08:56
                      • javascript
                      • abtest
                      • ABテスト
                      • test
                      • framework
                      • UI
                      • あとで
                      • development
                      • All you need to know about CSS Transitions

                        23 users

                        blog.alexmaccaw.com

                        January 3, 2013 All you need to know about CSS Transitions CSS3 transitions bring simple and elegant animations to web applications, but there’s a lot more to the spec than first meets the eye. In this post I’m going to delve into some of the more complicated parts of CSS transitions, from chaining and events to hardware acceleration and animation functions. Letting the browser control animations

                        • テクノロジー
                        • 2013/01/04 03:30
                        • css3
                        • css
                        • transition
                        • jQuery
                        • animation
                        • Develop
                        • js
                        • tutorial
                        • 5 APIs that will transform the Web in 2013

                          13 users

                          blog.alexmaccaw.com

                          November 28, 2012 5 APIs that will transform the Web in 2013 It’s incredibly exciting to see how the Web is evolving, and 2013 has a lot more in store. Over the next year, there are a number of technologies coming down the pipeline that have the potential to radically transform how we use and develop for the Web. CSS Custom Filters # CSS filters are already in Chrome and Safari, and allow advanced

                          • テクノロジー
                          • 2012/11/29 05:16
                          • JavaScript
                          • Web
                          • *あとで
                          • Killing a library

                            5 users

                            blog.alexmaccaw.com

                            A programming library's main mission should be to make itself redundant, and with that in mind that I'm announcing the deprecation of Juggernaut. Juggernaut was one of the first solutions to pushing data in realtime to clients; at first it was using Flash XMLSockets, and then it moved to WebSockets when they were widely available. This sort of technology has lots of interesting applications, such

                            • テクノロジー
                            • 2012/07/17 02:02
                            • javascript
                            • html5
                            • ruby
                            • Open-sourcing Stylo

                              41 users

                              blog.alexmaccaw.com

                              May 22, 2012 Open-sourcing Stylo I learn by setting projects for myself, and so a few months ago I decided to create an app called Stylo. The idea was to let people design basic web apps using a Fireworks-like interface, ultimately exporting the finished design as CSS. I’d always admired complex apps like 280 Slides, so was excited to be building something with similar problems. I started writing

                              • テクノロジー
                              • 2012/05/23 02:20
                              • CSS
                              • design
                              • editor
                              • engineer
                              • tool
                              • twitter
                              • wireframe
                              • chrome
                              • fireworks
                              • Chrome supports TCP & UDP Sockets

                                16 users

                                blog.alexmaccaw.com

                                May 14, 2012 Chrome supports TCP & UDP Sockets Traditionally browsers haven’t been able to make raw socket requests to arbitrary endpoints, mostly due to security concerns. Although the majority of browsers now have WebSockets, the caveat is that the server needs to have specific support for the WebSocket handshake. This has limited the type of protocols and APIs that the browser could communicate

                                • テクノロジー
                                • 2012/05/15 03:45
                                • chrome
                                • network
                                • Open sourcing all my private projects

                                  3 users

                                  blog.alexmaccaw.com

                                  April 23, 2012 Open sourcing all my private projects I owe everything I have to open source. When I was 15, I was introduced to programming through open source languages and frameworks. Then I got my first job through the publicity surrounding an open source project I was working on. Throughout my career, open source has introduced me to so many opportunities and friends, as well as being crucial

                                  • 学び
                                  • 2012/04/24 03:16
                                  • Rails is just an API

                                    12 users

                                    blog.alexmaccaw.com

                                    March 4, 2012 Rails is just an API There’s been a lot of talk recently about the future of Rails, and how it relates to client-side JavaScript frameworks such as Spine and Backbone. Historically Rails applications have been an amalgamation of Ruby, HTML and snippets of JavaScript. Add an API to the mix, include a ton of conditional rendering logic, and you’ve got your classic Rails spaghetti. So w

                                    • テクノロジー
                                    • 2012/03/22 04:08
                                    • rails
                                    • API
                                    • javascript
                                    • web

                                    このページはまだ
                                    ブックマークされていません

                                    このページを最初にブックマークしてみませんか?

                                    『Alex MacCaw』の新着エントリーを見る

                                    キーボードショートカット一覧

                                    j次のブックマーク

                                    k前のブックマーク

                                    lあとで読む

                                    eコメント一覧を開く

                                    oページを開く

                                    はてなブックマーク

                                    • 総合
                                    • 一般
                                    • 世の中
                                    • 政治と経済
                                    • 暮らし
                                    • 学び
                                    • テクノロジー
                                    • エンタメ
                                    • アニメとゲーム
                                    • おもしろ
                                    • アプリ・拡張機能
                                    • 開発ブログ
                                    • ヘルプ
                                    • お問い合わせ
                                    • ガイドライン
                                    • 利用規約
                                    • プライバシーポリシー
                                    • 利用者情報の外部送信について
                                    • ガイドライン
                                    • 利用規約
                                    • プライバシーポリシー
                                    • 利用者情報の外部送信について

                                    公式Twitter

                                    • 公式アカウント
                                    • ホットエントリー

                                    はてなのサービス

                                    • はてなブログ
                                    • はてなブログPro
                                    • 人力検索はてな
                                    • はてなブログ タグ
                                    • はてなニュース
                                    • ソレドコ
                                    • App Storeからダウンロード
                                    • Google Playで手に入れよう
                                    Copyright © 2005-2025 Hatena. All Rights Reserved.
                                    設定を変更しましたx