- Railsにプルリクストを送るときに知っておくと便利なお作法集
- Railsにプルリクエストを送りたいけど何から始めたらいいのかわからない人向けの指針
お作法についてはRuby on Rails に貢献する方法 | Rails ガイドを参考にしています。
Railsのコードを読むには、最低限次の二つの知識があったほうがよいです
#!/usr/bin/env sh | |
# | |
# Copyright (c) Microsoft Corporation. All rights reserved. | |
# Licensed under the MIT License. See License.txt in the project root for license information. | |
if [ "$VSCODE_WSL_DEBUG_INFO" = true ]; then | |
set -x | |
fi | |
COMMIT="abd2f3db4bdb28f9e95536dfa84d8479f1eb312d" | |
APP_NAME="code" |
#! /usr/bin/perl | |
# | |
# Written in 2017 by Kazuho Oku | |
# | |
# To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. | |
# You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. | |
# | |
use strict; | |
use warnings; |
CREATE EXTERNAL TABLE IF NOT EXISTS cicero.papertrail ( | |
`id` bigint, | |
`generated_at` string, | |
`received_at` string, | |
`source_id` bigint, | |
`source_name` string, | |
`source_ip` string, | |
`facility_name` string, | |
`severity_name` string, | |
`program` string, |
お作法についてはRuby on Rails に貢献する方法 | Rails ガイドを参考にしています。
Railsのコードを読むには、最低限次の二つの知識があったほうがよいです
iPhone の解像度はこんな感じ、
デバイス | 解像度 | ppi | 比率 | 必要な画像ファイル |
---|---|---|---|---|
iPhone 6 Plus | 1920x1080 | 401ppi | 16:9 | @3x |
iPhone 6 | 1334x750 | 326ppi | 16:9 | @2x |
iPhone 5/5S/5C | 1136×640 | 326ppi | 16:9 | @2x |
iPhone 4/4S | 960×640 | 326ppi | 3:2 | @2x |
だけど、そもそも解像度ってなんなのか?
更新: | 2017-05-09 |
---|---|
作者: | @voluntas |
バージョン: | 3.14 |
URL: | http://voluntas.github.io/ |
MQTT をググって調べた人向け
tl;dr IdotabaのGemfileは"全プレ"になりました。ご笑納ください。→ Gemfile
rebuild.fmのep36でお知らせさせていただきました、Idobataの最新版Gemfileプレゼントをお届けいたします。 過日はIdobata会議01への多数のご参加ありがとうございました。おかげさまで盛況なミートアップとなりました。 (当日会場を提供いただいたEngine Yardさまのブログにて、Idobata会議01当日の様子がまとめられています。ありがとうございます!)
By default when Nginx starts receiving a response from a FastCGI backend (such as PHP-FPM) it will buffer the response in memory before delivering it to the client. Any response larger than the set buffer size is saved to a temporary file on disk.
This process is outlined at the Nginx ngx_http_fastcgi_module page manual page.
@mixin stack-classes ($classes) { | |
$i: 10; | |
@each $class in $classes { | |
.#{$class} { | |
z-index: $i; | |
$i: $i + 10; | |
} | |
} | |
} |