Product updates, customer stories, and tips and tricks on Google Cloud Platform
© 2013, NVIDIA CORPORATION. All rights reserved. Code and text by Sean Baxter, NVIDIA Research. (Click here for license. Click here for contact information.) Modern GPU is code and commentary intended to promote new and productive ways of thinking about GPU computing. This project is a library, an algorithms book, a tutorial, and a best-practices guide. If you are new to CUDA, start here. If you'r
Whether starting from scratch or rebuilding a rich ecosystem, get pipelines flowing with preconfigured environments for your language and a minimal syntax with up to 50% less YAML or JSON. language: python python: - "3.7" - "3.8" - "3.9" # Command to install dependencies install: - pip install -r requirements.txt - pip install pytest pytest-cov # Command to run tests script: - pytest --cov=./ test
Creating the possibilities of humans and society, Like sports. CEO Dai Tamesue 人間と社会の可能性を拓く、 スポーツのように。 タイムというはっきりとした結果が出る競技を追求しながら、人間の限界はどこにあるのだろうかと考え続けてきました。伸び悩んだり、重圧に苦しんだりする中で、限界は自分自身の思い込みが作っているのではないかと、そう思うようになりました。 社会を見渡せばそんな出来事が溢れています。思い込みによって制約がかかり可能性が狭まっている。自分がスポーツと向き合ってきた方法が、人間と社会の可能性を拓く上で活かせるのではないかと思い、会社を始めました。 私は「スポーツとは身体と環境の間で遊ぶこと」だと定義しています。遊びには計画も、義務もありません。面白いから行われる自由な活動です。そんな「遊ぶ」という感覚が
Sparkのエンタープライズ対応が「成熟」――Clouderaが宣言:800ノード超のSparkクラスターを運用するユーザーも HadoopディストリビューターもあらためてSparkへの注力をアピール。既に800ノード超のSparkクラスターを運用するユーザーも存在するという。 Hadoopディストリビューションを提供する米Cloudera(クラウデラ)は2015年11月30日(米国時間)、Apache Sparkへの対応が「成熟した」とのリリースを発表した。2015年11月19日に発表した「Cloudera Enterprise 5.5」および「Cloudera's Distribution including Apache Hadoop 5.5」ではSpark SQLとSpark MLlibへの対応を発表していたが、今回、あらためてSpark対応の「本気度」とHadoopプラットフォー
本を読む人は何を手にするのか 日本に“階級社会”がやってくる:水曜インタビュー劇場(藤原和博さん)(1/5 ページ) 子どものころに、学校の先生や親から「本を読みなさい」と言われたことはないだろうか。当時は仕方がなく伝記を読んだり、小説を読んだり、冒険ものを読んだり。月日は流れ、今はサラリーマン。仕事が忙しくて、本なんて読む時間はないよ、という人もいるだろう。 でも、それではダメ。「これからの日本は身分やお金による階級社会ではなくて、『本を読む習慣がある人』と『そうでない人』に二分される“階層社会”がやってくるだろう」と言う人がいる。リクルートでフェローとして活躍され、その後、杉並区で中学校の校長を務められた藤原和博さんだ。「階層社会がやって来る」なんて言われると、ちょっと身震いしてしまうが、その真意はどこにあるのか。話を聞いた。聞き手は、ITmedia ビジネスオンライン編集部の土肥義則
Ramen is one of the most common fast foods in Japan and small shops serving the soup-and-noodle concoction can be found on almost every corner. Photograph: Alamy
Grizzly bear named Stepan looks intimidating posing next to model Irina. Photo: Caters News A mother and daughter picnicking in the woods kept their composure when a grizzly bear joined them in Moscow, Russia, resulting in several stunning photos. Fact is, the grizzly bear was an invited guest to the picnic for a photo shoot that was originally to be with a model named Irina. But Stepan the grizzl
Newcomers to python-ideas occasionally make reference to the idea of "Python 4000" when proposing backwards incompatible changes that don't offer a clear migration path from currently legal Python 3 code. After all, we allowed that kind of change for Python 3.0, so why wouldn't we allow it for Python 4.0? I've heard that question enough times now (including the more concerned phrasing "You made a
Details of what I'm wasting my time on at the moment, in particular what homebrew game or console project I'm working on. Have you ever noticed that the Java System class doesn't let you set environment variables? You can retrieve them using getenv() but there is no equivalent setenv() function. First off, what is the environment? The manual entry for environ(7) describes the environment as: an ar
Torrents on the desktopThe streaming torrent client for Mac, Windows, & Linux WebTorrent Desktop is for streaming torrents. Whether it's video from the Internet Archive, music from Creative Commons, or audiobooks from Librivox, you can play it right away. You don't have to wait for it to finish downloading. WebTorrent Desktop is fast, free, non-commercial & open source. What is WebTorrent? WebTorr
CPUやメモリ、IOといったリソースの制限下でとあるコマンドを実行させたい場合に、cgroup上に何かgroupを作ったりしてからcgexecを実行して、実行後はそのgroupを消す、といったような一手間かかる方法がほとんどでした。 実行後のgroupも綺麗にしたい、といった所まで考えるとなかなか手間がかかっていたので、それらを全てワンラインでできるrconというワンバイナリで動くツールを作りました。 github.com 例えば、負荷サーバでの調査ツールを流す際に、CPUとかIOとかを制限しつつドロドロ実行したい場合等に便利です。Linuxのcgroup対応した環境でのみ動きます。 使い方 ほぼREADME通りなのですが、オプションは代替以下のようになっています。 --memは変なので--memoryに変更しました!! ./rcon --help Usage: rcon [options
Dean Hume (@DeanoHume) is a software developer and author based in London, U.K. He is passionate about web performance, and he regularly writes on his blog - deanhume.com. He is the recent author of Fast ASP.NET Websites, a book aimed at improving the performance of ASP.NET applications. If you are building a website today there’s a good chance that you rely on 3rd party libraries to provide you w
sealed trait IntList case object IntNil extends IntList case class IntCase(head: Int, tail: IntList) extends IntList def sum(list: IntList): Int = list match { case IntNil => 0 case IntCons(head, tail) => head + sum(tail) } def product(list: IntList): Int = list match { case IntNil => 1 case IntCons(head, tail) => head * product0(tail) } sealed trait IntList case object IntNil extends IntList case
外食率ほぼ100%のトイアンナです。家庭のご飯がマズかった反動でグルメに目覚めてから、数百軒は店を回りミシュラン有料会員にまでなってしまいました。 そこで私が今はもう卒業したけれど20代のころに好きだった、正直もっと繁盛して欲しいお店をご紹介します。月に1万~5万を食費へ突っ込みたい方へおすすめです。 私はひたすら味重視なので雰囲気もステキ☆夜景キラキラ☆な店舗を知りたい方は東京姉妹さんのデート向きレストランガイドへ行ってください。 和食・日本料理 カフェ・喫茶店 ビストロ・カジュアルバー 肉料理、焼肉 中華料理 イタリアン、フレンチ 和食・日本料理 北町 善知鳥 (うとう) - 牛込神楽坂/懐石・会席料理 [食べログ] 本来なら3万円以上払わないと学ぶことができない、懐石・割烹のすばらしさを学べる場所です。穏やかな時間と旬の食材、丁寧な接客に感動。 旬熟成 - 麻布十番/牛料理 [食べロ
Reach out to get featured—contact us to send your exclusive story idea, research, hacks, or ask us a question or leave a comment/feedback!
apache や nginx の設定をしたことがあれば以下の様な行を見たことがある人も多いのではないでしょうか。(※ 下記は nginx の設定。apache の場合は SSLCipherSuite です。) ssl_ciphers AES128-SHA:AES256-SHA:RC4-SHA:DES-CBC3-SHA:RC4-MD5; これが暗号スイートを指定している箇所です。そしてこの部分、わけのわからない文字列の羅列なのですごく取っつきにくくて何を指定したらいいかわからないので、コピペしてしまう人も多いんじゃないでしょうか。かくいう私も数年前に趣味で TLS 対応の Web サービスを作った時はコピペで済ませていました。この暗号スイートは、以下のような OpenSSL のコマンドを使って対応している一覧を見ることができます。 $ openssl ciphers -v AES128-SH
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く