- Get Started Contributing to Open Source Projects | CodeTriage
- オープンソースプロジェクトにコントリビュートするためのサービス
- コントリビュートしたいリポジトリを購読すると、そのリポジトリのissueやdocについての通知がくる
- 作者はRichard Schneeman
- Railsコミッター、Pumaコミッター、Heroku社員(のはず)
- Railsのissueトリアージュ見てて大変そう、と思ってこのサービスを作ったらしい
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{fs, thread, time::Duration}; | |
use notify::{Config, RecursiveMode, Watcher}; | |
use notify_debouncer_full::{new_debouncer_opt, FileIdMap}; | |
use tempfile::tempdir; | |
fn main() -> Result<(), Box<dyn std::error::Error>> { | |
let dir = tempdir()?; | |
let dir_path = dir.path().to_path_buf(); |
- GitHub Actions
- GitHub公式のサービス
- 現行のサービスはv2と呼ばれているもの(まだbeta)
- 去年話題になっていたのはv1で、実質別物
- About GitHub Actions
- 設定ファイルの書き方も全然違う
- "A High Performance HTTP Server for Ruby"
- 作者はPeter Ohler(@ohler55)
- ohler55/ojの人
- AppSignalに記事(An instrumental intro to GraphQL with Ruby | AppSignal Blogとか)を書いているが、ここの社員ではない
- Linkedinによるとコンサルらしい: https://www.linkedin.com/in/peterohler/
- 普通にHTTP Server
- PumaとかUnicornとかと同じ部類
- 実装は全部C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = 1 | |
eval(:a.to_s) | |
=begin | |
$ ruby -vw a.rb | |
ruby 2.7.0preview1 (2019-05-31 trunk c55db6aa271df4a689dc8eb0039c929bf6ed43ff) [x86_64-linux] | |
a.rb:1: warning: assigned but unused variable - a | |
=end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = 1 | |
eval(:a.to_s) |
This tutorial was created by Shopify for internal purposes. We've created a public version of it since we think it's useful to anyone creating a GraphQL API.
It's based on lessons learned from creating and evolving production schemas at Shopify over almost 3 years. The tutorial has evolved and will continue to change in the future so nothing is set in stone.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Thor | |
module ClassMethods | |
def attr_reader(*) | |
super | |
end | |
def attr_writer(*) | |
super | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :secrets do | |
desc "show secrets" | |
task show: :environment do | |
puts Rails::Secrets.read | |
end | |
end |
NewerOlder