江口 晋之介

株式会社六の代表。2013年に東京工業大学在学中に起業しシステム開発に10年以上携わる…

江口 晋之介

株式会社六の代表。2013年に東京工業大学在学中に起業しシステム開発に10年以上携わる。Shopifyに特化し、250名以上の日本人開発者が参加するSlackコミュニティを運営。現在は顧客のShopify関連の開発の他、自他問わず生成AIを組み込んだシステムなどを開発しています。

記事一覧

Ubuntu20にMariaDBをインストールする

MariaDB初期設定最新バージョンのレポジトリをインストールする。 $ curl -LsS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash$ sudo apt update…

江口 晋之介
2週間前

Djangoの開発環境の構築手順

Anacondaの環境を用意conda create -n myenvname 作成した環境を有効化 & Pythonをインストール (最初に「conda create -n myenvname python=3.12」とかの実行でも可) co…

江口 晋之介
1か月前

Ubuntu22でAirPodsの最大音量が小さい時の対処法

Linux では、Bluetooth ヘッドセットの Absolute Volume(AVRCP の絶対音量制御)に完全に対応していない場合があり、これによりAirPodsや他の最新のBluetoothデバイスの音…

江口 晋之介
1か月前

孫正義Softbank World講演の動画をChatGPTで要約しました。

2023年12月のSoftbank Worldにおける、孫正義ソフトバンク創業者の講演を見たかったのですが、長いのでChat GPTで要約しました。下記にまとめます。動画は下にも埋め込んで…

江口 晋之介
6か月前
2

Handling CSV Imports and Exports in PostgreSQL

As a memo, I will write how to import csv and export csv in PostgreSQL. First , login PostgreSQL Database and execute command below. Export to CSV\copy TABLE_…

江口 晋之介
6か月前

Creating Custom Commands in Django

As a note, I will summarize below the method for creating your own custom commands in Django. Create app_name/management/commands Directorycreate management di…

江口 晋之介
6か月前

Fetching Data Recursively with Python APIs

Here is the standard pattern for retrieving list-type data via an API using Python. def getAllContents(page_num=1): contents = [] page_num = 1 endpoin…

江口 晋之介
6か月前

PostgreSQL Command Cheat Sheet

Here is a summary of commonly used PostgreSQL commands: Connect to databasebash command $ psql -h HOST_NAME -p PORT_NUMBER -U USER_NAME -d DATABASE_NAME From…

江口 晋之介
6か月前
1

Install and Setting PostgreSQL in Ubuntu22.04

As a memo, I will compile the steps for installing PostgreSQL on Ubuntu Desktop for development. Install PostgreSQLInstall according to the instructions on the…

江口 晋之介
6か月前

Send or Get files with SCP

ssh_configHost server_bane User eguchi Port 22 HostName xxx.xxx.xxx.xxx IdentityFile ~/.ssh/id_rsa_xxxx Send uploadscp /path/to/file.xxx server:/full/path/…

江口 晋之介
6か月前

Ubuntu 22.04 Settings to use AirPods and Logicool Mouse

Airpods setting in Ubuntu22.04Rewrite /etc/bluetooth/main.conf $ sudo vi /etc/bluetooth/main.conf Change ControllerMode value. ControllerMode = bredr Restar…

江口 晋之介
6か月前

Ubuntu22.04.4をWindows 11でデュアルブートする

Windows 11とにUbuntu22.04.4をデュアルブートでインストールした際のメモ 1,インストール用のUbuntu USBを作成(UUIを使用 正しいリンク:https://pendrivelinux.com/

江口 晋之介
6か月前

Desktop Ubuntuをインストールしたらやること

Ubuntu GUI版を何度もインストールすることがあるので、備忘録に 1,Google Chromeを入れる 2,ログインして、PW管理の拡張機能を入れる 3,VS code入れる 4,github…

江口 晋之介
6か月前

Shopify 商品を登録しよう

こちらの記事は移動しました。 ↓ https://factory.d3-jp.com/shopify/basic-register-products

5

Shopify開発勉強会レポート

こんにちは。江口です。 「Shopifyの開発で、困った時に、ここで聞けばなんとかなる」みたいな場所を目指してShopify開発者向けのSlackグループと定期的な勉強会を開催し…

6

Shopify入門

こちらの記事は移動しました。 ↓ https://factory.d3-jp.com/shopify/shopify-basic

13
Ubuntu20にMariaDBをインストールする

Ubuntu20にMariaDBをインストールする

MariaDB初期設定最新バージョンのレポジトリをインストールする。

$ curl -LsS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash$ sudo apt update$ sudo apt install mariadb-server libmariadb-dev

動作確認

$ systemctl

もっとみる
Djangoの開発環境の構築手順

Djangoの開発環境の構築手順

Anacondaの環境を用意conda create -n myenvname

作成した環境を有効化 & Pythonをインストール
(最初に「conda create -n myenvname python=3.12」とかの実行でも可)

conda activate myenvnameconda install python==3.12

Djangoを入れて起動Djangoをインストール、

もっとみる
Ubuntu22でAirPodsの最大音量が小さい時の対処法

Ubuntu22でAirPodsの最大音量が小さい時の対処法

Linux では、Bluetooth ヘッドセットの Absolute Volume(AVRCP の絶対音量制御)に完全に対応していない場合があり、これによりAirPodsや他の最新のBluetoothデバイスの音量問題を生じることがあります。

通常、LinuxはHSP/HFPとA2DPのプロファイルをサポートしていますが、これらはAVRCPの絶対音量制御をサポートしていないことが多いです。ただ

もっとみる
孫正義Softbank World講演の動画をChatGPTで要約しました。

孫正義Softbank World講演の動画をChatGPTで要約しました。

2023年12月のSoftbank Worldにおける、孫正義ソフトバンク創業者の講演を見たかったのですが、長いのでChat GPTで要約しました。下記にまとめます。動画は下にも埋め込んでいるので、気になる方は本編を見てください

要約内容🌅 おはようございます、孫正義です。久しぶりのスピーチです。

🐟 金魚の例を使って、知能の強さの本質について話します。

🧠 知能の強さは、ハードウェア

もっとみる
Handling CSV Imports and Exports in PostgreSQL

Handling CSV Imports and Exports in PostgreSQL

As a memo, I will write how to import csv and export csv in PostgreSQL.

First , login PostgreSQL Database and execute command below.

Export to CSV\copy TABLE_NAME to path_to_filename.csv delimiter '

もっとみる
Creating Custom Commands in Django

Creating Custom Commands in Django

As a note, I will summarize below the method for creating your own custom commands in Django.

Create app_name/management/commands Directorycreate management directory and create __init__py file and c

もっとみる
Fetching Data Recursively with Python APIs

Fetching Data Recursively with Python APIs

Here is the standard pattern for retrieving list-type data via an API using Python.

def getAllContents(page_num=1): contents = [] page_num = 1 endpoint = "https://example.com/content?page_nu

もっとみる
PostgreSQL Command Cheat Sheet

PostgreSQL Command Cheat Sheet

Here is a summary of commonly used PostgreSQL commands:

Connect to databasebash command

$ psql -h HOST_NAME -p PORT_NUMBER -U USER_NAME -d DATABASE_NAME

From here on, I will list SQL commands.

Sho

もっとみる
Install and Setting PostgreSQL in Ubuntu22.04

Install and Setting PostgreSQL in Ubuntu22.04

As a memo, I will compile the steps for installing PostgreSQL on Ubuntu Desktop for development.

Install PostgreSQLInstall according to the instructions on the official website.

# Create the file re

もっとみる
Send or Get files with SCP

Send or Get files with SCP

ssh_configHost server_bane User eguchi Port 22 HostName xxx.xxx.xxx.xxx IdentityFile ~/.ssh/id_rsa_xxxx

Send uploadscp /path/to/file.xxx server:/full/path/to/dir/

Get downloadscp server:/full/pa

もっとみる
Ubuntu 22.04 Settings to use AirPods and Logicool Mouse

Ubuntu 22.04 Settings to use AirPods and Logicool Mouse

Airpods setting in Ubuntu22.04Rewrite /etc/bluetooth/main.conf

$ sudo vi /etc/bluetooth/main.conf

Change ControllerMode value.

ControllerMode = bredr

Restart Bluetooth service

$ sudo systemctl re

もっとみる
Ubuntu22.04.4をWindows 11でデュアルブートする

Ubuntu22.04.4をWindows 11でデュアルブートする

Windows 11とにUbuntu22.04.4をデュアルブートでインストールした際のメモ

1,インストール用のUbuntu USBを作成(UUIを使用 正しいリンク:https://pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/
2,予めインストールするディスクを決めておく
3,PC起動時にF2やDel押下でブートメニューへ

もっとみる
Desktop Ubuntuをインストールしたらやること

Desktop Ubuntuをインストールしたらやること

Ubuntu GUI版を何度もインストールすることがあるので、備忘録に

1,Google Chromeを入れる
2,ログインして、PW管理の拡張機能を入れる
3,VS code入れる
4,githubにログインして、SSH接続する(ssh-keygen)
5,短縮語を辞書登録する
6,拡張機能を入れる
 extension-manager, User Themes, Vitalsなど

Shopify開発勉強会レポート

Shopify開発勉強会レポート

こんにちは。江口です。

「Shopifyの開発で、困った時に、ここで聞けばなんとかなる」みたいな場所を目指してShopify開発者向けのSlackグループと定期的な勉強会を開催しているのですが、この記事は7/18と8/8の勉強会開催レポートです。

Questionを投げてもらってわかる人で答えるような形式で進めているのですが、どんな内容を勉強会でやってるのかなどを感じてもられば幸いです。

もっとみる