PyCon JP 2021 (2021/10/16) @Hirosaji @Hirosaji_draw
https://2021.pycon.jp/time-table/?id=273843
※表示画面が小さいと感じる場合は、次のSpeakerDeckをご覧ください。
https://speakerdeck.com/hirosaji/the-art-of-reading-illustrations
=====
Title (English): The Art of Reading Pictures: Illustration Analysis in Python
PyCon JP 2021 (2021/10/16) @Hirosaji @Hirosaji_draw
https://2021.pycon.jp/time-table/?id=273843
※表示画面が小さいと感じる場合は、次のSpeakerDeckをご覧ください。
https://speakerdeck.com/hirosaji/the-art-of-reading-illustrations
=====
Title (English): The Art of Reading Pictures: Illustration Analysis in Python
Few command line tools for help Android developmentTomoki YAMASHITA
This document introduces several command line tools created by the author to help with Android development tasks:
- adb-peco allows selecting a device when using adb commands to avoid errors with multiple devices
- pidcat colorizes logcat output and allows filtering by process ID
- android-command-line-tools bundles commands for installing, uninstalling, screenshotting and clearing apps
- notifier-plugin plays a sound file on build completion to notify the developer without checking the build status
The author demonstrates how to install and use these tools to streamline common Android development workflows from the command line. He encourages contributions to improve the tools on GitHub.
This document discusses Universally Unique Identifiers (UUIDs). It begins with an introduction to UUIDs and their uses. It then describes the five versions of UUID and how to generate them in Java. Specifically, it explains that Java can generate version 3 UUIDs using name and MD5 hash, and version 4 UUIDs randomly. It also provides steps to generate version 1 UUIDs in Java and Android by using a third-party library and removing unsupported CORBA APIs. The document concludes with references to RFC 4122 and Wikipedia for more information on UUID standards and properties.