This file contains hidden or 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
http://aopensource.com | |
https://github.com/arpitkh96/AmazeFileManager/issues |
This file contains hidden or 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
/home/artem/projects/MyCV/app/build/outputs/apk/app-release.apk |
This file contains hidden or 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
{ | |
BackpressureMode.NONE, | |
BackpressureMode.ERROR, | |
BackpressureMode.BUFFER, | |
BackpressureMode.DROP, | |
BackpressureMode.LATEST | |
} | |
This file contains hidden or 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
public class ExampleUnitTest { | |
@Test | |
public void testSelenium() throws IOException { | |
Element body = Jsoup.connect("http://172.22.89.65/litecart/admin").get().body(); | |
driver.get("http://localhost/litecart/admin/login.php"); | |
driver.findElement(By.name("username")).sendKeys("admin"); | |
driver.findElement(By.name("password")).sendKeys("admin"); | |
for(Element e : driver.findElements(By.className("li"))){ | |
for(Element child : e.findElements(By.className("li"))){ |
This file contains hidden or 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
git clone ssh://[email protected]:29418/renesas/device/renesas/salvator/common | |
git checkout r-ncar | |
gitdir=$(git rev-parse --git-dir); scp -p -P 29418 [email protected]:hooks/commit-msg ${gitdir}/hooks/ | |
git add [changes] | |
git commit -s #-s for signed by | |
git push gl-mirror HEAD:refs/for/r-car-7.1 |
This file contains hidden or 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
sudo docker images | |
export CONTAINER | |
export FILE | |
docker save CONTAINER > /media/artem/hddgl/tf.tar | |
docker cp FILE CONTAINER:/notebooks | |
docker run -it -v /media/artem/hddgl/tf/tf_files:/tf_files gcr.io/tensorflow/tensorflow:latest-devel | |
docker run -it -v $TF:/tf_files gcr.io/tensorflow/tensorflow:latest-devel | |
python tensorflow/examples/image_retraining/retrain.py \ | |
--bottleneck_dir=/tf_files/bottlenecks \ |
This file contains hidden or 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
Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/html"); intent.putExtra(Intent.EXTRA_EMAIL, "[email protected]"); intent.putExtra(Intent.EXTRA_SUBJECT, "Subject"); intent.putExtra(Intent.EXTRA_TEXT, "I'm email body."); startActivity(Intent.createChooser(intent, "Send Email"));Jan 2, 2012 | |
http://umeshisran4android.blogspot.com/2015/11/how-to-readparse-ussd-messages.html | |
read sms | |
Intent intent = getIntent(); | |
Bundle bundle = intent.getBundleExtra("mySMS"); | |
if (bundle != null) { |
This file contains hidden or 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
console=ttymxc1,115200 init=/init nosmp | |
video=mxcfb0:dev=hdmi,1280x720M@60,bpp=32 video=mxcfb1:off | |
fbmem=10M vmalloc=400M androidboot.console=ttymxc1 androidboot.hardware=freescale | |
dumpsys window displays | |
dumpsys display | |
This file contains hidden or 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
find /home/artem/projects/libgdx/Runner/core/src/ -type f -exec \ | |
> sed -i 's/com\.gamestudio24\.martianrun/com.stc.runner/g' {} + |
This file contains hidden or 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
git clone ssh://[email protected]:29418/renesas/device/renesas/salvator/common | |
git checkout r-ncar | |
gitdir=$(git rev-parse --git-dir); scp -p -P 29418 [email protected]:hooks/commit-msg ${gitdir}/hooks/ | |
git add [changes] | |
git commit -s #-s for signed by | |
git push gl-mirror HEAD:refs/for/r-car-7.1 | |
#repo init | |
repo init -u ssh://[email protected]:29418/renesas/platform/manifest -b r-car-7.1 | |
repo init -u ssh://[email protected]:29418/renesas/platform/manifest -b r-car-7.1.2 |