Mind Maps! Setting Up Xmind in Fedora 20

Download the XMind debian package from http://www.xmind.net/downloads.

Open a terminal and change it to a sandbox folder and:

$ ar -x xmind-x.x.x.xx.deb
$ tar -xf data.tar.gz
$ sudo mv share/applications/xmind.desktop /usr/share/applications/
$ sudo mv share/mime/packages/xmind.xml /usr/share/mime/packages/
$ sudo mv local/xmind/ /opt/
$ sudo update-mime-database /usr/share/mime/

Change /usr/local to /opt in the desktop file:

$ sudo subl /usr/share/applications/xmind.desktop

Make a link to your bin (so you can call from ALT+F2 or terminal):

$ sudo ln -s /opt/xmind/XMind /usr/local/bin/xmind

Try it!

$ xmind



source - https://coderwall.com/p/9x63vg/mind-maps-setting-up-xmind-in-fedora-20








* in xmind-linux-3.5.3.201506180105_amd64.deb

$ ar -x xmind-x.x.x.xx.deb

$ tar -xf data.tar.gz

$ sudo mv ./usr/lib/xmind/ /opt/

$ sudo mv ./usr/share/applications/xmind.desktop /usr/share/applications/

$ sudo mv ./usr/share/mime/packages/xmind.xml /usr/share/mime/packages/

$ sudo update-mime-database /usr/share/mime/


$  cat /usr/share/applications/xmind.desktop

[Desktop Entry]

Type=Application

Version=3.5.3

Encoding=UTF-8

Name=XMind

Comment=Launch XMind 6

Icon=/usr/share/pixmaps/xmind.png

Exec=/opt/xmind/XMind

Terminal=false

StartupNotify=true

Categories=Office;

MimeType=application/xmind;x-scheme-handler/xmind;



Posted by linuxism
,


bitnami redmine 3.0.3-0 버전에서 파일 또는 저장소 메뉴에서 파일명/디렉토리명이 한글인 경우

"Internal server error" 가 발생한다.


다음 수정으로 이 문제를 해결하자.

\설치 폴더\apps\redmine\htdocs\vendor\bundle\ruby\2.0.0\gems\actionpack-4.2.0\lib\action_dispatch\middleware\static.rb

path = File.join(@root, p) 을

path = File.join(@root, p.force_encoding('UTF-8')) 으로 변경

Posted by linuxism
,


CSS Syntax

position: static|absolute|fixed|relative|initial|inherit;

Property Values

ValueDescriptionPlay it
staticDefault value. Elements render in order, as they appear in the document flowPlay it »
absoluteThe element is positioned relative to its first positioned (not static) ancestor elementPlay it »
fixedThe element is positioned relative to the browser windowPlay it »
relativeThe element is positioned relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT positionPlay it »
initialSets this property to its default value. Read about initialPlay it »
inheritInherits this property from its parent element. Read about inherit



source - http://www.w3schools.com/cssref/pr_class_position.asp








absolute는 조상요소가 relative가 아니면 fixed와 동일하게 위치됨?


'Development > CSS' 카테고리의 다른 글

css - version update, cache flush  (0) 2014.08.27
css - sass  (0) 2014.06.27
css - z-index  (0) 2014.05.15
css - position absolute center  (0) 2014.05.04
css - Background-color displaying incorrectly in IE8 and IE9  (0) 2014.04.29
Posted by linuxism
,