git aliases by mail.ru
floating point visually explained
floating point visually explained (ru) (pdf)
Числа с плавающей точкой для гуманитариев. Что это такое и как они работают
[https://habr.com/ru/articles/745640/]
google app index
Android Debug Bridge ADB
[code language=”java”]
$ ID="foo"
$ adb shell am start -a android.intent.action.VIEW \ -d "https://events.google.com/io2016/schedule?sid=$ID" \ com.google.samples.apps.iosched
[/code]
Activity
[code language=”java”]
@Override
protected void onCreate(Bundle savedInstanceStates) {
mClient = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
}
public void onStart() {
String url = "https://events.google.com/io2016/schedule?sid=" + sessionId;
Action action = Action.newAction(Action.TYPE_VIEW, title, url);
AppIndex.AppIndexApi.start(mClient, action);
}
[/code]
Activity. User came from Google
[code language=”java”]
//referrer string for Intents from Google Search in a browser
static final String Google_web_referrer = "https://www.google.com";
//referrer string for Intents from the Google app
static final String Google_app_referrer = "android-app://com.google.android.googlequicksearchbox/https/www.google.com";
public void onStart() {
String referrer = this.getReferrer().toString();
if (Google_web_referrer.equals(referrer) || Google_app_referrer.equals(referrer)) {
// user came from google
}
}
[/code]
Phrase
to do
To do someone a favour (Оказать кому-то услугу)
To do the cooking (Готовить)
To do the housework (Выполнять работу по дому)
To do the shopping (Делать покупки)
To do the washing up (Мыть посуду)
To do your best (Постараться)
To do your hair (Причесаться)