Archives - page 47 / 103

  • amiii
  • 2022-03-24T14:53:10.243000Z
ADBを経由してAndroidでアプリを開くには

0 Likes / 0 Comments

Androidでデバイスにインストールされているアプリを実行、開く方法として、ADB(Android Debug Bridge)を使う方法があります。 (インストールされているアプリ(パッケージ)で実行可能なものをリスト) ``` adb shell pm list packages ``` 例 adb.ex ...

Read the article

  • amiii
  • 2022-03-24T14:53:10.243000Z
node-postgresでPostgreSQLを操作するには

0 Likes / 0 Comments

``` npm install pg ``` ```js const { Pool, Client } = require('pg'); ... if ( chatData !== null ) { var pool = new Pool(); var res = await pool.query(`C ...

Read the article

  • amiii
  • 2022-03-24T14:53:10.243000Z
node-notifierを使いnode.jsでデスクトップ通知を行うには

4 Likes / 5 Comments

デスクトップ通知のためのnode.jsライブラリ、node-notifierのガイドです。 クロスプラットフォームであり、Windows 8/10、macOS、Linuxなどで動作します。 以下はGithubです。 [mikaelbr/node-notifier: A Node.js module for send ...

Read the article

  • amiii
  • 2022-03-24T14:53:10.243000Z
PostgreSQLでselect文を書くには

0 Likes / 0 Comments

```sql SELECT chat.username, chat.innerText, chat.badge, chat.symbol, chat.date from chat -- WHERE LOWER(chat.innerText) ~ 'btc' WHERE LOWER(chat.innerTe ...

Read the article

  • amiii
  • 2022-03-24T14:53:10.243000Z
Imagededupで類似画像を抽出、検出する(Python)

0 Likes / 0 Comments

Pythonのマシンラーニング、ディープラーニング、機械学習、AIライブラリ、imagededupを使用し、似ている画像、類似している画像、写真を検出するためのガイドです。 例えば、同じ画像でも画質や解像度が違う画像、少しだけ角度が違う、トリミングされている、など、単純なハッシュアルゴリズムでは検知できない類似性を見 ...

Read the article