DOTween

「DOTween」というUnityのアセットを使ってみました。

DOTween (HOTween v2)
http://dotween.demigiant.com/index.php

これまでTween系はiTweenを使っていたのですが、DOTweenに乗り換えてみようかなと思っています。

有料版「Pro」と無料版がありますが、自分でスクリプトを書いていく場合は無料版でも大丈夫かなと思います。

リンク

DOTween – Documentation
http://dotween.demigiant.com/documentation.php

DOTweenをふわっとまとめてみた
https://qiita.com/kagigi/items/bdf4d42835add07b0077

CentOS 7.4にPHP 7.3をインストール

CentOSのPHPをPHP 7.3に更新する手順をメモ 注1

リポジトリーの設定

EPELとRemiのリポジトリーを追加します。

# yum install epel-release
# yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm

古いPHPをアンインストール

PHPがインストールしてある場合は念のため削除しておきます。注2

# yum remove php-*

PHP 7.3をインストール

# yum install --disablerepo=* --enablerepo=epel,remi,remi-php73 php

必要に応じて、関連パッケージもインストールします。

# yum install --disablerepo=* --enablerepo=epel,remi,remi-php73 php-mbstring php-mysql

PHP 7.3のインストールは、以上で完了です。

php.iniの設定(書き戻し)やApacheの再起動も必要に応じて行ってください。

# vi /etc/php.ini
# systemctl restart httpd

リンク

Remi’s RPM repository
http://rpms.remirepo.net/


注1 yum install phpでインストールできるのはPHP 5.4となっているみたいです。
注2 php.iniなど、必要なファイルがある場合は、アンインストール前にバックアップしておいてください。

Gentoo LinuxのKernel Upgradeガイド

Gentoo LinuxのKernel Upgradeガイド(自分用メモ)です。

1. インストール

# emerge --ask sys-kernel/gentoo-sources

2. eselect

 # eselect kernel list
 # eselect kernel set <target>

3. ビルド&インストール

# cd /usr/src/linux
# cp -i ../linux-<current version>/.config .
# make menuconfig
# make && make modules_install
# make install

もしくは、make installの代わりに

# cp arch/x86_64/boot/bzImage /boot/kernel-<version>-gentoo

grub-mkconfigmake installの場合と同じです。

4. GRUB

# grub-mkconfig -o /boot/grub/grub.cfg

自分用メモなので、環境によって変わってくる部分もあるかと思います。

リンク

Configuring the Linux kernel – Gentoo Wiki
https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel

Kernel/Upgrade – Gentoo Wiki
https://wiki.gentoo.org/wiki/Kernel/Upgrade

GRUB2 – Gentoo Wiki
https://wiki.gentoo.org/wiki/GRUB2


Retpoline関係のエラーでビルドできない場合はGCCを更新してみると良いかもしれません。