Welcome document

Welcome to StackEdit!

Hello, I am your first Markdown document within StackEdit1. Don’t delete me, I can be helpful. I can be recovered anyway in the Utils tab of the Settings dialog.


Documents

StackEdit stores your documents in your browser, which means all your documents are automatically saved locally and are accessible offline!

NOTE:

  • StackEdit is accessible offline after the application has been loaded for the first time.
  • Your local documents are not shared between different browsers or computers.
  • Clearing your browser’s data may delete all your local documents! Make sure your documents are backed up using Google Drive or Dropbox synchronization (see Synchronization section).

Create a document

You can create a new document by clicking the button in the navigation bar. It will switch from the current document to the new one.

Switch to another document

You can list all your local documents and switch from one to another by clicking the button in the navigation bar.

Rename a document

You can rename the current document by clicking the document title in the navigation bar.

Delete a document

You can delete the current document by clicking the button in the navigation bar.

Save a document

You can save the current document to a file using the Save as... sub-menu from the menu.

Tip: See Publish a document section for a description of the different output formats.


Synchronization

StackEdit can be combined with Google Drive and Dropbox to have your documents centralized in the Cloud. The synchronization mechanism will take care of uploading your modifications or downloading the latest version of your documents.

NOTE:

  • Full access to Google Drive or Dropbox is required to be able to import any document in StackEdit.
  • Imported documents are downloaded in your browser and are not transmitted to a server.
  • If you experience problems exporting documents to Google Drive, check and optionally disable browser extensions, such as Disconnect.

Import a document

You can import a document from the Cloud by going to the Google Drive or the Dropbox sub-menu and by clicking Import from.... Once imported, your document will be automatically synchronized with the Google Drive / Dropbox file.

Export a document

You can export any document by going to the Google Drive or the Dropbox sub-menu and by clicking Export to.... Even if your document is already synchronized with Google Drive or Dropbox, you can export it to a another location. StackEdit can synchronize one document with multiple locations.

Tip: Using Google Drive, you can create collaborative documents to work in real time with other users. Just check the box Create a real time collaborative document in the dialog options when exporting to Google Drive.

Synchronize a document

Once your document is linked to a Google Drive or a Dropbox file, StackEdit will periodically (every 3 minutes) synchronize it by downloading/uploading any modification. Any conflict will be detected, and a local copy of your document will be created as a backup if necessary.

If you just have modified your document and you want to force the synchronization, click the button in the navigation bar.

NOTE: The button is disabled when you have no document to synchronize.

Manage document synchronization

Since one document can be synchronized with multiple locations, you can list and manage synchronized locations by clicking Manage synchronization in the menu. This will open a dialog box allowing you to add or remove synchronization links that are associated to your document.

NOTE: If you delete the file from Google Drive or from Dropbox, the document will no longer be synchronized with that location.


Publication

Once you are happy with your document, you can publish it on different websites directly from StackEdit. As for now, StackEdit can publish on Blogger, Dropbox, Gist, GitHub, Google Drive, Tumblr, WordPress and on any SSH server.

Publish a document

You can publish your document by going to the Publish on sub-menu and by choosing a website. In the dialog box, you can choose the publication format:

  • Markdown, to publish the Markdown text on a website that can interpret it (GitHub for instance),
  • HTML, to publish the document converted into HTML (on a blog for instance),
  • Template, to have a full control of the output.

NOTE: The default template is a simple webpage wrapping your document in HTML format. You can customize it in the Services tab of the Settings dialog.

Update a publication

After publishing, StackEdit will keep your document linked to that publish location so that you can update it easily. Once you have modified your document and you want to update your publication, click on the button in the navigation bar.

NOTE: The button is disabled when the document has not been published yet.

Manage document publication

Since one document can be published on multiple locations, you can list and manage publish locations by clicking Manage publication in the menu. This will open a dialog box allowing you to remove publication links that are associated to your document.

NOTE: In some cases, if the file has been removed from the website or the blog, the document will no longer be published on that location.


Markdown Extra

StackEdit supports Markdown Extra, which extends Markdown syntax with some nice features.

Tip: You can disable any Markdown Extra feature in the Extensions tab of the Settings dialog.

Tables

Markdown Extra has a special syntax for tables:

Item Value
Computer 1600 USD
Phone 12 USD
Pipe 1 USD

You can specify column alignment with one or two colons:

Item Value Qty
Computer 1600 USD 5
Phone 12 USD 12
Pipe 1 USD 234

Definition Lists

Markdown Extra has a special syntax for definition lists too:

Term 1
Term 2
Definition A
Definition B
Term 3
Definition C
Definition D

> part of definition D

Fenced code blocks

GitHub’s fenced code blocks2 are also supported with Prettify syntax highlighting:

// Foo
var bar = 0;

Tip: To use Highlight.js instead of Prettify, just configure the Markdown Extra extension in the Settings dialog.

Footnotes

You can create footnotes like this3.

SmartyPants

SmartyPants converts ASCII punctuation characters into “smart” typographic punctuation HTML entities. For example:

ASCII HTML
Single backticks 'Isn't this fun?' ‘Isn’t this fun?’
Quotes "Isn't this fun?" “Isn’t this fun?”
Dashes -- is an en-dash and --- is an em-dash – is an en-dash and — is an em-dash

Table of contents

You can insert a table of contents using the marker [TOC]:

[TOC]

Comments

Usually, comments in Markdown are just standard HTML comments.
StackEdit extends HTML comments in order to produce useful, highlighted comments in the preview but not in your exported documents.

MathJax

You can render LaTeX mathematical expressions using MathJax, as on math.stackexchange.com:

The Gamma function satisfying $\Gamma(n) = (n-1)!\quad\forall
n\in\mathbb N$ is via the Euler integral

$$
\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.
$$

Tip: Make sure you include MathJax into your publications to render mathematical expression correctly. Your page/template should include something like:

<script type="text/javascript" src="https://stackedit.io/libs/MathJax/MathJax.js?config=TeX-AMS_HTML"></script>

NOTE: You can find more information:

  • about Markdown syntax here,
  • about Markdown Extra extension here,
  • about LaTeX mathematical expressions here,
  • about Prettify syntax highlighting here,
  • about Highlight.js syntax highlighting here.

  1. StackEdit is a full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites. 
  2. GitHub Flavored Markdown (GFM) is supported by StackEdit. 
  3. Here is the text of the footnote

w3m on ls-wvl

1.install w3m

ipkg install w3m

2. fix some error

  • w3m: error while loading shared libraries: libssl.so.0.9.7: cannot open shared object file: No such file or directory
  • w3m: error while loading shared libraries: libcrypto.so.0.9.7: cannot open shared object file: No such file or directory
root@LS-WVL9BE:/opt/lib# ln -s libssl.so.0.9.8 libssl.so.0.9.7
root@LS-WVL9BE:/opt/lib# ln -s libcrypto.so.0.9.8 libcrypto.so.0.9.7
  • Can’t find termcap entry xterm
root@LS-WVL9BE:/opt/lib# ipkg install termcap
Posted in NAS.

gain root access to LS-WVL

  • 下载acp_commander.jar,没想到固件都升级到1.37了这个破解工具竟然还能用
  • 先测试一下能不能用:
    java -jar acp_commander.jar -t 192.168.1.65 -ip 192.168.1.65 -pw password -c "ls /"

    注意-pw后的参数是web界面登录密码,如果成功的话就能看到输出的根目录列表了

  • 改root密码:
    java -jar acp_commander.jar -t 192.168.1.65 -ip 192.168.1.65 -pw password -c "(echo 123456;echo 123456)|passwd"
  • 改sshd设置以允许root登录:
    java -jar acp_commander.jar -t 192.168.1.65 -ip 192.168.1.65 -pw password -c "sed -i 's/PermitRootLogin no/PermitRootLogin yes/g' /etc/sshd_config"
  • 关掉pam:
    java -jar acp_commander.jar -t 192.168.1.65 -ip 192.168.1.65 -pw password -c "sed -i 's/UsePAM yes/UsePAM no/g' /etc/sshd_config"
  • 重启sshd:
    java -jar acp_commander.jar -t 192.168.0.10 -ip 192.168.0.10 -pw password -c "/etc/init.d/sshd.sh restart"
    • rcS的修改体现在启动代码step3里面加入了sshd.sh

      ‘echo “** step3 **”

      for cmd in diskmon.sh ftpd.sh sshd.sh atalk.sh httpd.sh smb.sh clientUtil_servd.sh bonjour.sh lsprcvd.sh daemonwatch.sh cron.sh checkconfig.sh ups.sh pwrmgr.sh

      do exec_sh ${cmd}

      done’

    • sshd.sh的修改体现在对sftp的判断处,去掉了exit 0,不然SSH就启动不了了.当然你也完全可以连sftp的if都去掉.

      if [ “${SUPPORT_SFTP}” = “0” ] ; then

      echo "Not support sftp on this model." > /dev/console 

      fi

来源: http://log.dongsheng.org/2010/12/14/open-link-station-pro-duo-wvl-firmware/

Posted in NAS.

Ipkg on LS-WVL

Origin : http://buffalo.nas-central.org/wiki/Category:LS-WVL

Optware & IPKG Install Guide

Step 1 – Create a temp folder to download and run Optware installation file

 cd /tmp
 wget http://ipkg.nslu2-linux.org/feeds/optware/cs05q3armel/cross/stable/teraprov2-bootstrap_1.2-7_arm.xsh
 sh ./teraprov2-bootstrap_1.2-7_arm.xsh

Step 2 – Edit /opt/etc/ipkg.conf and add

 src cs08q1 http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/stable/
 # src cs08q1-unstable http://ipkg.nslu2-linux.org/feeds/optware/cs08q1armel/cross/unstable/

(If you wish to use the unstable branch you can uncomment it.)
After that just run `ipkg update` and you can then install packages with `ipkg install package` You can view list of installed packages with `ipkg list_installed`

Note:

In case you don’t use array configuration and lost your Optware configuration after reboot, please

1) Reinstall the ipkg

2) ‘mv /mnt/array1/.optware /mnt/disk1’

3) adapt /etc/init.d/rc.optware by replacing ‘array1’ with ‘disk1’

4) Reboot. )

Posted in NAS.

出游之电子设备篇

1、kindle keyboard wireless

共享3G上网+普通查阅资料

2、huawei e5830+ wcdma 3G

3G上网

3、tplink mr11u

宾馆有线转无线或者无线信号转发

4、Power Bank PINENG  PN-902

移动电源

5、ipad 2

查阅资料、kindle for ipad

6、android motorola milestone

补充meego没有的一些应用程序

7、meego nokia n950

手机、GPS、sports tracker、大众点评、团800、去哪等

8、camera

出游之自行车篇

自行车设备

1、giant ATX680 + 车后座

Image

需要带着妹子以及两人轮换骑

2、台湾 立兆锁

锁车尽量抱树或者景点的铁栅栏,小景点可以给至多1块钱直接停在景点里面

3、装车包

http://item.taobao.com/item.htm?id=3857717265

很给力的装车包,ATX680+后座只需快拆前轮与脚踏就可以直接放进去

4、骑行眼镜

5、魔术头巾

6、束裤带

7、骑行灯+风火轮

这个小地方最好还是带上,安全第一,不过确实很骚

8、拆车工具

只带了拆卸脚踏的扳手,其他的暂时没带

 

关于托运

自行车即使快拆也会收取行李费,按照25kg/辆计算,行李费貌似不区分普通车与动车组,携带自行车最好带着装车包,如果乘坐人多的火车建议托运。

ibus on gnome3

1. ibus doesn’t work with gnome-terminal and other programs.

package.use    app-i18n/ibus gtk3

2. auto start ibus

~% cat .xprofile
export XMODIFIERS=”@im=ibus”
export GTK_IM_MODULE=”ibus”
export QT_IM_MODULE=”xim”
ibus-daemon -d -x

Install gnome3 on gentoo

1. Add gnome repo

layman -a gnome

echo “source /var/lib/layman/make.conf” >> /etc/make.conf

env-update

eix-sync

2. Read the README of gnome

less /var/lib/layman/gnome/README

3. copy/symlink the portage files under /var/lib/layman/gnome/status/portage-configs

4. Install

env-update

emerge -avuDN world

emerge -av gnome-light