Shammer's Philosophy

My private adversaria

2013-12-01から1ヶ月間の記事一覧

給与支払金額と給与所得控除後の金額

年末調整の時期。源泉徴収を受け取ってもいつもよくわからない箇所があるので調べてみた。源泉徴収票の左上の方の「支払金額」とその右の「給与所得控除後の金額」の相関がわかりにくい。源泉徴収票内の他の数字と引き算してみても合致するものなし。一体ど…

Mac Mavericks に OpenOffice をインストール

Mac

持っていた iWorks が 2008 で、iWorks 2008 だと Number が真っ白な画面になってしまうので OpenOffice を入れることにした。しかし、、、Open Office も信頼されていない開発者とか出て開けない。 “OpenOffice” can’t be opened because it is from an uni…

AWK CAT

AWK

AWKは、何かのテキストファイルを対象に処理することがほとんどだ。そのため、引数にテキストファイルを取らないと話にならない。中身をどのように処理するかはスクリプト次第だが、テキストファイルを扱う際の挙動を知っておきたい。手始めに、catと同じよ…

LaunchDaemon plist file example

Mac

<plist version="1.0"> <dict> <key>Label</key> <string>MyDaemon</string> <key>UserName</key> <string>root</string> <key>GroupName</key> <string>wheel</string> </dict></plist>

Mavericks apache config

Before Mavericks, at least Lion, Mac Users make apache enabled by System Configuration. In particular, checking web sharing checkbox enabled apache on localhost. But web sharing checkbox is removed on Mavericks, this means the change how t…

AWK Hello World

AWK

AWKはこれまでもちょくちょく使ってきたが、本格的にやってみようと思う。いつもワンライナーでやっていたがスクリプトで実行したい。と、言うわけでお約束のハローワールド。 #!/usr/bin/awk -f BEGIN { printf("%s\n", "Hello World!!!"); } 実行結果は以…

How to change Apache error page on Debian?

This step is described at /etc/apache2/conf.d/localized-error-pages. # The internationalized error documents require mod_alias, mod_include # and mod_negotiation. To activate them, uncomment the following 37 lines. a2enmod alias(default en…

How to get Linux Hardware/System Information?

We can get Linux Hardware information like Serial Number without launching BIOS, via Linux OS. The command "dmidecode" enables this action. Here is an output example. root@MyMachine:~# dmidecode # dmidecode 2.11 SMBIOS 2.7 present. 56 stru…