投稿

【靴】HAWKINS ホーキンス ビジネスシューズ AL SU8 PLAIN 4E エアライトスーパー8 プレーン を購入

イメージ
【HAWKINS】 ホーキンス ビジネスシューズ AL SU8 PLAIN 4E エアライトスーパー8 プレーン 4E HB30050 BLACKをABC Martで購入。 【購入の決め手】 プレーントゥ、広い足幅、ウォータープルーフ、履きつぶしても気にならない価格帯が購入の決め手。 【使用感(購入直後)】 厚底でクッションが効いていて、歩き安いかも。 以上

[Linux]CentOS 8.0をインストールしてみる on VMware Workstation 14 Player

イメージ
CentOS 8.0をVMware Workstation 14 Playerにインストールしてみた際の手順を記す。 検証環境 CentOS 8.0 媒体 : CentOS-8-x86_64-1905-dvd1.iso ホスト環境 : VMware Workstation 14 Player (14.1.7 build-12989993) on Windows 10

[Linux]CentOS7.0~7.7をインストールしてみる on VMware Player 6.0.x/VMware Workstation 14 Player

イメージ
CentOS 7.0~7.6をVMware Player 6.0.x/VMware Workstation 14 Playerにインストールしてみた。その際の手順を記す。 CentOS7.0インストール直後のログイン後画面 確認環境 CentOS7.7 媒体 : CentOS-7-x86_64-DVD-1908.iso ホスト環境 : VMware Workstation 14 Player (14.1.7 build-12989993) on Windows 10 CentOS7.6 媒体:CentOS-7-x86_64-DVD-1810.iso ホスト環境:VMware Workstation 14 Player (14.1.6 build-12368378) on Windows 10 CentOS7.5 媒体:CentOS-7-x86_64-DVD-1804.iso ホスト環境:VMware Workstation 14 Player (14.1.5 build-10950780) on Windows 10 CentOS7.4 媒体:CentOS-7-x86_64-DVD-1708.iso ホスト環境:VMware Workstation 14 Player (14.1.5 build-10950780) on Windows 10 CentOS7.3 媒体:CentOS-7-x86_64-DVD-1611.iso ホスト環境:VMware Workstation 14 Player (14.1.1 build-7528167) on Windows 10 CentOS 7.2 媒体:CentOS-7-x86_64-DVD-1511.iso ホスト環境:VMwarePlayer 6.0.5 on Windows VISTA Home Premium SP2 CentOS 7.1 媒体:CentOS-7-x86_64-DVD-1503-01.iso ホスト環境:VMwarePlayer 6.0.5 on Windows VISTA Home Premium SP2 CentOS 7.0 媒体:CentOS-7.0-1406-x86_64-DVD.iso ホス...

Windows用画面キャプチャソフト(10対応)

イメージ
アクティブウインドウのキャプチャからファイル保存まで一括で出来てしまうフリーソフトが超便利。 Windows 8.0/Windows 10用 Greenshotが便利。詳しいインストール方法は下記記事参照。 Windows8の画面ショットを撮る【Greenshot詳細レビュー】 設定画面イメージ Windows VISTA以前 VISTA以前はWinShotがおすすめ。 公式HP: http://www.woodybells.com/winshot.html 「WinShotはパソコン画面の保存・印刷等を行うことができる、スクリーンキャプチャソフトです。シンプルかつ効率的な操作性と、あらゆるニーズに対応できる多彩な機能を備えています。 」 とのこと。 便利&簡単。お勧めは左の設定。 以下確認時点の情報。 最新バージョン 1.53a 最終更新日 2007/05/15(公開:2007/10/20) 動作環境 Windows95/98/Me/NT4/2000/XP 種別 フリーソフトウェア レジストリ 使用していない 以上

【プログラミング】いろんな”hello world"

イメージ
いろんなプログラミング言語とインターフェースで"hello world"を試してみる。順次追加予定。 テキストインターフェース系 C言語 C++ rust pascal java FORTRAN UNIX系シェル python perl ruby2.5 Windowsバッチファイル Web系 HTML Android Android テキストインターフェース系 C言語 ソースコード #include <stdio.h> void main(void) { printf("hello world\n"); } ソースコードファイル名 ./helloworld.c コンパイル例 $ cc -o helloworld helloworld.c $ 実行例 $ ./helloworld hello world $

【プログラミング】UbuntuにPascalを導入する

UbuntuにPascalを導入してみた。Free Pascalというものを使ってみた。 環境 Ubuntu 18.04 手順 インストール $ sudo apt install fp-compiler-3.0.4 $ 動作確認 $ fpc -iW 3.0.4+dfsg-18ubuntu2 $ vi helloworld.p program helloworld being writeln ('hello world'); end. $ fpc helloworld.p $ ./helloworld hello world $ 参考 https://wiki.lazarus.freepascal.org/Hello,_World 以上

【プログラミング】UbuntuにRuby 2.5系を導入する

Ubuntuにプログラミング言語のRuby(2.5系)をインストールしてみた。 環境 Ubuntu 18.04 手順 インストール $ sudo apt install ruby $ 動作確認 $ ruby --version ruby 2.5.1p57 (2018-03-29 revision 63029) [x86_64-linux-gnu] $ vi helloworld.rb #!/usr/bin/ruby puts "hello world" $ chmod u+x ./helloworld.rb $ ./helloworld.rb hello world $ 参考 https://www.ruby-lang.org/ja/ 以上