Code for Keras plays catch blog post
python qlearn.py- Generate figures
| package com.fisglobal.lfi.pnc.framework.util; | |
| import android.support.v4.view.animation.PathInterpolatorCompat; | |
| import android.view.animation.Interpolator; | |
| /** | |
| * Cheatsheet: http://easings.net/ | |
| */ | |
| public class EasingsConstants { | |
| public static final Interpolator easeInSine = PathInterpolatorCompat.create(0.47f, 0f, 0.745f, 0.715f); |
Code for Keras plays catch blog post
python qlearn.py| https://code.google.com/p/android/issues/detail?id=32696#c5 | |
| If you have a certificate that is not | |
| trusted by Android, when you add it, it goes in the personal cert store. | |
| When you add a cert in this personal cert store, the system requires a | |
| higher security level to unlock the device. But if you manage to add your | |
| cert to the system store then you don't have this requirement. Obviously, | |
| root is required to add a certificate to the system store, but it is quiet | |
| easy. |
| //place this content in your buildSrc/build.gradle file | |
| //Then apply your plugin to its own build in build.gradle | |
| import org.codehaus.groovy.control.CompilerConfiguration | |
| apply plugin: 'groovy' | |
| repositories { | |
| jcenter() | |
| } |
| #!/bin/bash | |
| # Following the guide found at this page | |
| # http://programmingarehard.com/2014/03/17/behat-and-selenium-in-vagrant.html | |
| echo "\r\nUpdating system ...\r\n" | |
| sudo apt-get update | |
| # Create folder to place selenium in |
Worked as frontend-developer from 15 December 2016 to 4 January 2021 in Gurtam on Wialon product.
Initially project was built on Vanilla JS (with jQuery) plus there was server-generated HTML by TCL (which was used as PHP). After 2-3 years we started to implement new features on React, eliminated TCL pages, and migrated them to OpenResty (Lua). I hope that it will be migrated then to nodejs/will be fully static frontend (at the time of first migration there was no expertise with nodejs in the company, but there was a team that used Lua).
| Step 1. Preparation | |
| -------------------- | |
| First take care of the dependencies for Android Application Development. | |
| Dependencies are - | |
| 1. Java | |
| 2. ant | |
| 3. Eclipse and Android Development tools (IDE) | |
| 4. Android SDK and NDK | |
| 5. adb |
| (Users.name + Users.cityId * Cities.name).filter { Users.id.equals("andrey") } forEach { | |
| val (userName, cityName) = it | |
| println("$userName lives in $cityName") | |
| } |
| /* | |
| * Copyright (c) 2010 Google Inc. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | |
| * in compliance with the License. You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software distributed under the License | |
| * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| <?php | |
| /** | |
| * Использование: | |
| * $v = new VideoThumb($link); | |
| * $v->getVideo(); //Ссылка на видео | |
| * $v->getTitle(); //Название ролика | |
| * $v->fetchImage($path) //Скачать самое большое превью ролика | |
| * | |
| * Прогнать тест: |