这个功能在你使用 Confluence 用户界面为 Confluence 创建翻译的时候会非常有用.当你打开主面板的时候,在你访问的 URL 的最后面添加下面的文字:can add the following action to the end of your Confluence URL: ?i18ntranslate=on 例如: http://myconfluencesite.com?i18ntranslate=on 这个 URL 将会为你 Confluence 界面的每一个元素显示键名称…
#include <osgGA/StateSetManipulator> #include <osgViewer/ViewerEventHandlers> // add the state manipulator显示统计数据W键显示网格 L键控制光照 viewer->addEventHandler( new osgGA::StateSetManipulator(viewer->getCamera()->getOrCreateStateSet()) ); //…
1.Redis 字符串(String) 参考菜鸟教程:http://www.runoob.com/redis/redis-strings.html 设置指定key的值,如果原来有,覆盖 127.0.0.1:6379> set a aaa OK 获取指定key的值 127.0.0.1:6379> get a "aaa" 将给定 key 的值设为 value ,并返回 key 的旧值(old value) 127.0.0.1:6379> getset a bbb &quo…
早上测试脚本的时候,偶然在这篇文章<Git – setting up a remote repository and doing an initial push>看到一个关于 git 的好玩东西,记录于此. 根据文章的提示在 ~/.bashrc 里添加下面的内容,可以让提示符显示当前 git 的分支名称.我按照自己的习惯修改了提示符的格式. __mikespook_ps1() { local none='\[\033[00m\]' local g='\[\033[0;32m\]' local…