wiki

Setup a personal wiki in Emacs Org-mode

▼魔方 西西 提交于 2019-12-03 02:28:17
I would like to setup a personal wiki in org-mode. So far, I have tried this two ways. My first attempt was using a single "Scientific Notebook.org" file. In this went all my notes - each with its own headline, date and tags (same format as a blog post). I then turned on org-velocity to quickly navigate the file. But this created two problems: first, I use a lot of math in my notes (LaTeX previews are one of the reasons I want to us org). But these take sooooo long to load, I can't images trying to open a file with several thousand entries (all filled with math!!) The other problem I have is

Maintaining a Programmer Wiki [closed]

僤鯓⒐⒋嵵緔 提交于 2019-12-03 02:26:08
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 years ago . I was recently put in charge of the wiki for the development team. The wiki is still in its infancy, so I have a lot of room to work with. It goal is to house internal to the development team. Currently, the main piece of information that the wiki holds is Coding Standards. What

Effortless export from github wiki (?)

∥☆過路亽.° 提交于 2019-12-03 02:12:33
问题 I am collecting quite a lot of material in a GitHub wiki. I really like to use the wiki to cooperate with other people and IMHO the platform is really nice, I like it! So, I would like to keep using the GH wiki to collect stuff, edit, save,etc but I also would like to export the content in order to create a pdf file that we can call "a manual". I would like to generate an updated version of the manual automatically everytime I want just running a couple of scripts, I can not put too much

What tools does your team use for writing user manuals? [closed]

≯℡__Kan透↙ 提交于 2019-12-03 01:39:54
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . Basic requests are: human readable / text format (for easy version control) online (for collaboration) easy formatting (markdown ok,

How do I create some kind of table of content in GitHub wiki?

橙三吉。 提交于 2019-12-03 01:25:42
问题 If you look here: http://en.wikipedia.org/wiki/Stack_Overflow You'll notice there's a little "Content" section, if you click on one of the links, it will send you to a specific section on the page. How do I do this in GitHub wiki? With Markdown or whatever they use? 回答1: It is nicely demonstrated in the Table of Contents of the Markdown Cheatsheet. ##### Table of Contents [Headers](#headers) [Emphasis](#emphasis) ...snip... <a name="headers"/> ## Headers If you hover over a Header in a GitHub

Lighweight markup (wiki) language for documenting

岁酱吖の 提交于 2019-12-02 23:58:07
When I write papers or documentation it makes think using LaTeX or OpenOffice is overkill as I usually only need some markup elements (bold, headlines, lists, ...) . I'd like to write my documents using a wiki style markup as this is very efficient. For example: = Introduction = '''HTML''' is a markup language... In the end I'd like to simply convert it to PDF. (Cross-platform was nice too.) compiler.exe -pdf input.wiki output.pdf Is there a tool (or simple tool chain) to do this job? I'd personally like to not make use of LaTeX as a transformation step. There are tools doing this job

What can I do to prevent write-write conflicts on a wiki-style website?

℡╲_俬逩灬. 提交于 2019-12-02 21:08:23
On a wiki-style website, what can I do to prevent or mitigate write-write conflicts while still allowing the site to run quickly and keeping the site easy to use? The problem I foresee is this: User A begins editing a file User B begins editing the file User A finishes editing the file User B finishes editing the file, accidentally overwriting all of User A's edits Here were some approaches I came up with: Have some sort of check-out / check-in / locking system (although I don't know how to prevent people from keeping a file checked out "too long", and I don't want users to be frustrated by

Guava-使用向导

北战南征 提交于 2019-12-02 20:27:23
Guava中包含了Google的一些核心类库:比如集合,缓存,并发包,常用注解,字符串处理,I/O等等。这些工具类被谷歌的工程师们经常用到。 但是通过查阅文档不是一个有效的学习类库的方式。这儿, 我们尝试提供一写方便查阅的比较常用的Guava工具类。 基础工具: 更加舒适的使用java。 Using and avoiding null : null 可不能被含糊, 能引起一些莫名的错误。许多Guava工具拒绝null并且会快速失败,而不是盲目的接受null。 Preconditions : 非常容易的为你的方法做个先决测试。 Common object methods : 简单的实现Object方法,像 hashCode() and toString() . Ordering : Guava强大的比较类。 Throwables : 简化传播 , 检查异常和错误。 Collections: Guava对JDK集合的扩展。Guava中用的比较多的地方 。 Immutable collections , 防御性编程,常量集合, 提高效率。 New collection types , 一些JDK Collect ion s中没有解决的 : multisets, multimaps, tables, 双向maps等 。 Powerful collection utilities , 一些

Any better way to create MediaWiki numbered lists?

▼魔方 西西 提交于 2019-12-02 19:53:55
When using MediaWiki's markup language, the only thing that I hate is creating numbered lists. The only way I know to create a list is to do something like this: #Item1 #Item2 However, if I want to add spaces or some other text between those lines, the numbering gets lost. For example, the following will create text that has two number one items: #Item1 Somestuff #Item2 Is there any way around this, or should I just use bullet points instead? I noticed just now that the stackoverflow system does not allow numbering like this, you have to do it all manually. Like this: #Item1 #:Somestuff #Item2

Rolling Your Own Plaintext Wiki (Wiki inside a DB)

半城伤御伤魂 提交于 2019-12-02 16:53:34
Anyone know of an API (php preferable but I'd be interested in any language) for creating wiki-like data storage? How about any resources on rolling your own plaintext wiki? How do other plaintext wikis handle the format of the text file? I understand I can use Markdown or Textile for the formatting. But what I'm most interested in is how to approach the plaintext storage of multi-user edits. I'm writing a web application that is primarily database driven. I want at least one text field of this database to be in a wiki-like format. Specifically, this text can be edited by multiple users with