- Amazon RDSパフォーマンスインサイトの使用 - Amazon Aurora
- Amazon RDSパフォーマンスインサイトの使用 - Amazon Relational Database Service
- この2つが1番最初に読むべき記事。ここで抵抗なく理解をできたら他の要らなそう
- よくある質問 - Performance Insights | AWS
- よくある質問 - Performance Insights | AWS
- [Using Performance Insights to
Twitter has released the official API v2 endpoint for the bookmark feature. https://twittercommunity.com/t/build-with-bookmarks-on-the-twitter-api-v2/168804/
The following descriptions are or will soon be no longer useful; I suggest using the new official API.
RecyclerViewInteraction.<Item>onRecyclerView(withId(R.id.recyclerview)) | |
.withItems(items) | |
.check(new ItemViewAssertion<Item>() { | |
@Override | |
public void check(Item item, View view, NoMatchingViewException e) { | |
matches(hasDescendant(withText(item.getDisplayName()))) | |
.check(view, e); | |
} | |
}); |
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- Social media and other company colors --> | |
<eat-comment /> | |
<color name="facebook">#FF3B5998</color> | |
<color name="twitter">#FF00ACED</color> | |
<color name="google_plus">#FFDD4B39</color> | |
<color name="youtube">#FFBB0000</color> |
import static com.google.android.apps.common.testing.ui.espresso.Espresso.onData; | |
import static com.google.android.apps.common.testing.ui.espresso.Espresso.onView; | |
import static com.google.android.apps.common.testing.ui.espresso.Espresso.pressBack; | |
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.click; | |
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.closeSoftKeyboard; | |
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.typeText; | |
import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches; | |
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withId; | |
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withText; |
require 'test_helper' | |
# testing rake task app:awesome_report | |
# defined in file lib/tasks/app/awesome_report.rake | |
describe 'App::AwesomeReportTaskTest' do | |
it 'generates the awesomeness report' do | |
subject.invoke | |
assert File.exists?('awesomeness_report.csv') | |
end |
個人的には、一番好きな言語。好きな理由としては、Pythonが、 簡潔さと解法の一意性 を求めているからだ。どういうことかといえば、例えばPythonにはSwitchらしいものはない。Switchを実現したければ、elseifを連呼するしかない。そういう意味では、Pythonという言語は「不便な言語」ではある。しかし、その代償に、Pythonは「読みやすくなる」。こう考えてみよう。switchを連打したら、そもそも何の関数を比較しているのかわからなくなるでしょ?ただ、やはりPythonには不満がある。まず一つに、そのマルチバイト文字処理が未成熟であったこと。これは、日本に住んでいる私たちにとっては痛いことである。Python3になってから、文字列はUnicodeで扱うようになったため、この問題は解決する予定ではあるものの、しかしPythonよりもRubyが選ばれるのは、このへんの事情もあるように思う。
嫌われ率No.1の言語ではあるが、個人的には嫌いではない。そして、それは個人的に使う限りにおいてだ。PHPの好きなところというのは、その節操の無さだ。必要な機能は何でも詰め込む。それは、機能が膨張し、汚くなりがちではあるものの、そういう割り切り方は嫌いではないし、その部分は周辺言語と比較して突き抜けている。また、ドキュメントがちゃんと日本語化されていたりという点も好印象。問題は、その緩さ。Warning出しまくっていようが、何だろうが、なんとなーく動いてしまう点とかその辺り。PHP5.3あたりになってから、Classなんかが書けるようになったのは良かった点ではないでしょうか。