タグ

2014年12月5日のブックマーク (3件)

  • The Elixir programming language

    All Elixir code runs inside lightweight threads of execution (called processes) that are isolated and exchange information via messages: current_process = self() # Spawn an Elixir process (not an operating system one!) spawn_link(fn -> send(current_process, {:msg, "hello world"}) end) # Block until the message is received receive do {:msg, contents} -> IO.puts(contents) end Due to their lightweigh

    The Elixir programming language
  • Open sourcing Twitter emoji for everyone

    Earlier this year, we collaborated with our friends at @Iconfactory on a set of 872 beautiful emojis so Tweets containing emoji characters would look as sharp on the web as they do in mobile apps. Now we’re pleased to announce that these emoji are available as an open source library to the developer community at large. Since we’ve gotten many requests to use our emoji in various projects, as of to

    Open sourcing Twitter emoji for everyone
  • 記事タイトルを変更しただけでアクセスが2.5倍増加した実例

    先日「[SEO]アクセスアップのヒントはウェブマスターツールにあり」という記事を投稿しました。ウェブマスターツールのデータからタイトルが適切かどうかを調べる方法を紹介した記事でした。今回は、その方法をさらに手を加えてデータを見やすくする方法をご紹介すると共に、講じた対策が実を結んだので報告したいと思います。具体的には、タイトルにも書いている通り、アクセスが2.5倍増加しました。 ウェブマスターツールの検索クエリを開きます。 [表示]を変更します。25列だと少なすぎるし、100列だと多すぎると思ったので、僕は50列に設定しました。 [フィルタ]ボタンをクリックして、検索を[すべて]に、場所を[日]に、トラフィックを[表示回数/クリック数が10以上のクエリ]に変更し、[適応]をクリックします。 平均掲載順位を昇順に(掲載順位が高い順に)並び替えます。 すると、いくつか関連するキーワードが見

    記事タイトルを変更しただけでアクセスが2.5倍増加した実例
    tetsukamp
    tetsukamp 2014/12/05