タグ

2020年5月25日のブックマーク (6件)

  • 5/30 ロマンティック数学ナイト@オンライン #15 |

    オンライン 12:30 13:00 交流・観覧チケット3000円 観覧専用一般チケット1500円 観覧専用学生チケット無料 mattyuu、ζWalker、せきゅーん、タカタ先生、たけのこ赤軍、三谷純、千葉逸人、数学を愛する会、竹内英人、辻順平、鈴木貫太郎、鯵坂もっちょ 史上初のオンライン開催!世界中から集まれ!数学を解き放て! ※オンライン化による重要確認事項※ かならず下記をご確認ください 1.参加の仕方が下記の2パターンになります。 ①プレゼンターであるロマンティストのプレゼンを観覧するのみのパターン ②ロマンティストのプレゼン後の交流タイムが今回50分あり、その交流にも参加できる交流+観覧パターン ※後述の全体スケジュールをご確認ください。 ※交流タイム中でも観覧のみの方も楽しめるように別途企画を用意する予定です。 2.交流・観覧チケットと観覧専用チケットの申込みページが別々になり

    5/30 ロマンティック数学ナイト@オンライン #15 |
    yujiorama
    yujiorama 2020/05/25
    何かネタが見つかるかもしれない
  • How to find files in subdirs and sort them by filename in a single command?

    yujiorama
    yujiorama 2020/05/25
    ファイル名だけで並び替えたいときは printf '%f %p' すればよかった。なるほど。 "find . -tyep f printf '%f %p\n' | sort | while read name path; do echo ${name} ${path}; done"
  • Speeding up json processing in go

    We will be speeding up our JSON processing by 11x with a few tricks: reusing allocated memory the Flyweight pattern JSON parsing without reflection As well as the profiling commands for you to run the same. The setup Our example will focus on receiving a blob of json. Represening a box of items that must be turned into structs that will be used by our app. var data = []byte(`{"items":[ {"id": 1},

    Speeding up json processing in go
    yujiorama
    yujiorama 2020/05/25
    メモリの確保(と破棄)にはコストがかかるんだなぁ
  • Mocking time and testing event loops in Go [Dmitry Frank]

  • Three bugs in the Go MySQL Driver

    EngineeringThree bugs in the Go MySQL DriverCheck out what we learned from shipping our busiest Go service in production—we found 3 bugs in the Go MySQL driver. Although GitHub.com is still a Rails monolith, over the past few years we’ve begun the process of extracting critical functionality from our main application, by rewriting some of the code in Go—mostly addressing the pieces that need to ru

    Three bugs in the Go MySQL Driver
    yujiorama
    yujiorama 2020/05/25
    コネクションプール内でコネクションが切断されてる問題は他の言語でもあるやつだった。残り2つは context に関係する、、、難しかった
  • Windows ターミナルの全般的プロファイル設定

    以下に示す設定は、それぞれ一意のプロファイルに固有のものです。 すべてのプロファイルに設定を適用したい場合は、settings.json ファイル内のプロファイル一覧の上にある、defaults セクションにそれを追加できます。 "defaults": { // SETTINGS TO APPLY TO ALL PROFILES }, "list": [ // PROFILE OBJECTS ] 名前 これは、ドロップダウン メニューに表示されるプロファイルの名前です。 この値は、起動時にシェルに渡す "タイトル" としても使用されます。 一部のシェル (bash など) では、この初期値を無視することができますが、他のシェル (Command Prompt、PowerShell) では、アプリケーションの有効期間中、この値を使用することができます。 この "タイトル" の動作は、tabT

    Windows ターミナルの全般的プロファイル設定
    yujiorama
    yujiorama 2020/05/25
    "commandline" に jshell.exe を指定すると jshell をタブで表示できるな。groovysh.bat や irb.cmd も大丈夫だった