タグ

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

  • 「アスク税」とは何か 〜ゲーマーのためのグラフィックスカード流通事情講座

    「アスク税」とは何か 〜ゲーマーのためのグラフィックスカード流通事情講座 編集部:佐々山薫郁 アスク公式Webサイト 「アスク税」(もしくは「ASK税」)という言葉を聞いたことがあるだろうか。 PCパーツ業界に存在する販売代理店の中でも,アスクという企業は,群を抜いて有名だ。オンラインで「アスク税」と検索すれば,すぐに「アスクが取り扱うPCパーツ製品は,海外における市場価格よりも国内価格が非常に高い。それは,アスクが大きな中間マージンを取っているからだ」的な言説に,すぐ辿り着くことができるだろう。 では,その言説は正しいのか。というかそもそもアスク税とは何なのだろうか。アスクという会社は,さまざまなジャンルでさまざまなメーカーの販売代理店になっており,すべてについて語ることはできないため,今回は,4Gamer読者にとって最も身近なPCパーツであろうグラフィックスカードに絞って,アスク税の正

    「アスク税」とは何か 〜ゲーマーのためのグラフィックスカード流通事情講座
    komlow
    komlow 2016/05/16
  • Rust Means Never Having to Close a Socket

    Rust Means Never Having to Close a Socket One of the coolest features of Rust is how it automatically manages resources for you, while still guaranteeing both safety (no segfaults) and high performance. Because Rust is a different kind of programming language, it might be difficult to understand what I mean, so let me be perfectly clear: In Rust, as in garbage collected languages, you never explic

    Rust Means Never Having to Close a Socket
    komlow
    komlow 2016/05/16
  • アイマスのフォント

    アイドルマスターのロゴや商品、広告等に使われているフォントを勝手に紹介しています。フォントは私が推測しているだけなので、合っている確証はありません。その点はご了承下さい。(自分の中ではほぼ間違いないと思って出してはいますが。)

    アイマスのフォント
  • C-Reduce

    C-Reduce is a tool that takes a large C, C++, or OpenCL file that has a property of interest (such as triggering a compiler bug) and automatically produces a much smaller C/C++ file that has the same property. It is intended for use by people who discover and report bugs in compilers and other tools that process source code. C-Reduce is released under a BSD-like license. Publications and Presentat

    komlow
    komlow 2016/05/16
  • Partial Function Considered Harmful - 純粋関数空間

    この記事は、Haskell Advent Calendar 2011 25日目の記事として書かれました。 概要 Haskell、あるいはその他のプログラミング言語では 「部分関数(Partial Function)」 と呼ばれるものが標準ライブラリに存在したり、 定義したりすることができます。 今回はそれらが有害であるという考えと、 代替の紹介をしようと思います。 部分関数とは 部分関数(Partial Function)とは、 集合の言葉で言うと、 定義域(domain)の要素に対して、値域(range)の値が高々1つ対応付けられる ような対応付けのことです。 Haskellでは 「結果の値が引数によっては定義されないことがあり得る」 関数だと言えます。 例えば、整数の割り算を行う関数 div :: (Int, Int) -> Int は、 (1, 0) に対しては定義されません。 Ha