12 search resultsShowing 1~12 results

Stocked
hisshi00

@hisshi00

Kotlin のクラス

Kotlin を勉強中なので、自分用まとめ クラス クラスの定義とインスタンス化 class MyClass { private var str = "aaa" var num = 1 fun ...

0
1
Comment0
hisshi00

@hisshi00

Kotlin の関数

Kotlin を勉強中なので、自分用まとめ 関数 // 関数定義 fun 関数名 (仮引数: 型, ...): 戻り値の型 {処理} // 関数の使用 関数名(実引数, ...) fun add...

0
0
Comment0
hisshi00

@hisshi00

Kotlin の制御構文

Kotlin を勉強中なので、自分用まとめ if val a = 10 if (a <= 5) { println("a <= 5") } else if (a <= 10) ...

0
0
Comment0
hisshi00

@hisshi00

Kotlin の変数

Kotlin を勉強中なので、自分用まとめ 変数宣言 var 変数名: 型 = 初期値 val 定数名: 型 = 初期値 // read-only var a: Int = 1 val b: ...

1
0
Comment0
hisshi00

@hisshi00

TypeScript 勉強まとめ

最近 TypeScript の勉強をしているので、学んだことメモ TypeScript とは JavaScript を拡張した言語 最終的に JavaScript にコンパイルして使用される 型...

1
0
Comment0
hisshi00

@hisshi00

PythonでWeb APIを叩く

PythonでHTTPにアクセスする方法 urllibライブラリを使う 標準で搭載 Requestsライブラリを使う 要インストール。こちらの方がシンプルにコードを書ける。 今回は、Reques...

104
105
Comment1
hisshi00

@hisshi00

PowerShellの色を変える

背景色と文字色が似ていて、何が書いてあるかわからないことがあるので色を変える Color Tool のインストール 下記サイトから最新版のリンクをたたき、「ColorTool.zip」をダウンロ...

0
1
Comment0
hisshi00

@hisshi00

Pythonでサウンドを扱う

Pythonでサウンドを扱う Pythonでサウンドを扱う方法がいろいろあってよくわからなかったので、ざっくりまとめ 基本的にはこちらのサイト Playing and Recording Sou...

99
82
Comment1
hisshi00

@hisshi00

Tkinterを使ってみる

PythonでGUIプログラムを書けるTkinterを使ってみる。 Tkinter PythonでGUIアプリケーションを作成できるライブラリ。Pythonに標準で入っているため、特にインストー...

0
3
Comment3
hisshi00

@hisshi00

CentOSのホームディレクトリを英語化する

日本語のCentOSをインストールすると、ホームディレクトリが日本語化される。 このままだと、ターミナルで操作するときに入力をいちいち日本語に切り替える必要があり不便なため、英語化する。 英語化...

2
0
Comment0
hisshi00

@hisshi00

CentOS7で/tmp に書き込めるようにする

CentOS7では、アプリケーションから /tmp ディレクトリにファイルを書き込めないので、使えるように設定する方法。 設定 CentOS7では、PrivateTmpというオプションがあり、P...

1
2
Comment1
hisshi00

@hisshi00

Pythonで環境変数を扱う

Pythonのコード内で環境変数を扱う方法。 import os 取得 一括取得 os.environ 環境変数名を指定して取得 os.environ[環境変数名] # 例 os.environ...

0
2
Comment0

12 search resultsShowing 1~12 results

Qiita is a knowledge sharing service for engineers.

  1. You can follow users and tags
  2. You can stock useful information
  3. You can make edit suggestions for articles
Functions that can be used after logging in