ラベル Editor の投稿を表示しています。 すべての投稿を表示
ラベル Editor の投稿を表示しています。 すべての投稿を表示

2014年3月2日日曜日

stirlingのビットイメージの色付けについて

そういう方面の人にとっては有名なバイナリエディタ stirling には,ファイルをバイナリ列としてとらえて,一バイトずつ色分けして表示するビットイメージ機能がある.この色の定義がどうなってるのか調べたので,メモ.

strling に同梱されているヘルプファイルを読むと,以下のように書いてあった.

「ビットイメージに指定色を反映させる」チェックボックス

この項目をチェックするとビットイメージにデータ文字色、データ背景色、強調表示コード及び色が反映されます。チェックしない場合には以下のデフォルト色でビットイメージが表示されます。

00h
01h~19h 水色
20h~7Fh
80h~FFh
メインウィンドウのメニューから「設定」→「拡張子別設定」→「(ファイル種別)」→設定→「色・フォント」からビットイメージの指定色を変更できるようだ.

2013年11月11日月曜日

Installing CuteMarkEd on Linux Mint 15

CuteMarkEd is a markdown editor with GUI for Linux and Windows. Here is a page on GitHub. Installation instructions are described in here. (Be careful: I have already installed some packages like libc6, so, following procedure may not contain necessary packages. Read the documentation from developers of CuteMarkEd carefully.)
  • git clone https://github.com/loose/CuteMarkEd.git
  • cd CuteMarkEd
  • less README.md
  • git submodule update
  • sudo apt-get install ubuntu-sdk libqt5webkit5-dev qtquick1-5-dev qtlocation5-dev qtsensors5-dev qtdeclarative5-dev libgstreamer-plugins-base0.10 libgstreamer-plugins-base0.10-dev libhunspell-dev libxslt1-dev libsqlite3-dev
  • cd discount
  • ./configure.sh
  • make
  • sudo make install
  • cd ..
  • qmake CuteMarkEd.pro
  • make
  • sudo make install
 With these procedures, CuteMarkEd is successfully installed in my environment. However, it is installed to /usr/lib/x86_64-linux-gnu/qt5/bin/. $PATH does not contain that place. So, if you want to boot the editor with command easily just type 'cutemarked', change a location to install or make symbolic links to a place where $PATH contains. I created symbolic link to /usr/local/bin/ by a following command:
  •  sudo ln -s /usr/lib/x86_64-linux-gnu/qt5/bin/cutemarked /usr/local/bin/
It works well :-)