User CaptSolo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T02:35:01Zhttp://stackoverflow.com/feeds/user/23104http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/176955/offline-access-to-moinmoin-wiki-using-google-gears2Offline access to MoinMoin wiki using Google GearsCaptSolo2008-10-07T01:53:38Z2009-09-06T11:53:57Z
<p>How to add offline access functionality to <a href="http://moinmo.in" rel="nofollow">MoinMoin wiki</a>?</p>
<p>As a minimum, I would love to have browsing access to all pages on a server-based wiki (while being offline). Search and other things, which do not modify the content, are secondary. An added bonus would be if this solution allowed to update wiki content while offline and push it back to the wiki when online.</p>
<p>Google Gears looks like a good candidate for trying to solve this, but other solutions are also welcome.</p>
<p>An interesting property of MoinMoin is that it keeps content in regular files instead of the database. This can make it easier to port wiki content from one location to another, but I don't know if that can play any role in answering this question.</p>
<p>Note: if you see a good reply please rate it up. i'd love to do that, but the site does not let me do ratings yet.</p>
http://stackoverflow.com/questions/1358694/latex-remove-blank-page-after-a-part-or-chapter/1375156#13751560Answer by CaptSolo for LaTeX: remove blank page after a \part or \chapterCaptSolo2009-09-03T18:31:43Z2009-09-03T18:31:43Z<p>A solution that works:</p>
<p>Wrap the part of the document that needs this modified behavior with the code provided below. In my case the portion to wrap is a \part{} and some text following it.</p>
<pre><code>\makeatletter\@openrightfalse
\part{Whatever}
Some text
\chapter{Foo}
\@openrighttrue\makeatother
</code></pre>
<p>The wrapped portion should also include the chapter at the beginning of which this behavior needs to stop. Otherwise LaTeX may generate an empty page before this chapter.</p>
<p>Source: folks at the #latex IRC channel on irc.freenode.net</p>
http://stackoverflow.com/questions/1358694/latex-remove-blank-page-after-a-part-or-chapter0LaTeX: remove blank page after a \part or \chapterCaptSolo2009-08-31T18:17:51Z2009-09-03T18:31:43Z
<p>How to remove a blank page that gets added automatically after \part{} or \chapter{} in a book document class?</p>
<p>I need to add some short text describing the \part. Adding some text after the part command results in at least 3 pages with an empty page between the part heading and the text:</p>
<ol>
<li>Part xx</li>
<li>(empty)</li>
<li>some text</li>
</ol>
<p>How to get rid of that empty page?</p>
<p>P.S. <a href="http://stackoverflow.com/questions/491904/latex-how-to-remove-blank-pages-coming-between-two-chapters-in-appendix">Latex: How to remove blank pages coming between two chapters IN Appendix?</a> is similar but it changes the behavior for the rest of the text while I need to remove the empty page for this one \part command only.</p>
http://stackoverflow.com/questions/459493/monitor-cocoa-apps-for-execution-of-external-utilities-e-g-ffmpeg-on-mac-os-x0Monitor Cocoa apps for execution of external utilities (e.g., ffmpeg) on Mac OS X ?CaptSolo2009-01-19T22:44:08Z2009-01-21T17:16:26Z
<p>There are Mac GUI applications which provide a front-end to more geeky commandline tools (often included as a part of the application package). I would like to look at what is happening under the hood of such GUIs.</p>
<p>How to "attach" to an application, monitor it for calls to command line utilities and log a filename and command line parameters of these calls?</p>
<p>A solution can also be an application that logs execution of all applications on Mac OS X (filtering out the most common system calls).</p>
<p>Example GUI frontend: <a href="http://xact.sourceforge.net/" rel="nofollow">http://xact.sourceforge.net/</a> (since it is open source one can just debug it, but xACT is just an example. let's pretend we have just a ready-made *.app to monitor). </p>
<p><strong>Update:</strong> dtrace can monitor exec calls and print name of the command called. that's a half of the solution, the other half is getting its command line arguments. that's unsolved yet (until someone confirms they have got dtrace to do this).</p>
http://stackoverflow.com/questions/392321/is-there-an-rdf-ontology-for-blogs/459919#4599193Answer by CaptSolo for Is there an RDF ontology for blogs?CaptSolo2009-01-20T02:09:31Z2009-01-20T02:09:31Z<p><a href="http://rdfs.org/sioc/spec/" rel="nofollow">the SIOC ontology</a> might be what you are looking for. its purpose is to express information about blogs, forums, wikis and other kinds of social media sites.</p>
<p>useful information:</p>
<ul>
<li><a href="http://rdfs.org/sioc/applications/" rel="nofollow">a list of SIOC applications</a> </li>
<li><a href="http://sioc-project.org/wordpress/" rel="nofollow">SIOC plugin for WordPress</a> </li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/3886" rel="nofollow">Semantic Radar extension for Firefox</a></li>
</ul>
http://stackoverflow.com/questions/459493/monitor-cocoa-apps-for-execution-of-external-utilities-e-g-ffmpeg-on-mac-os-x/459850#4598500Answer by CaptSolo for Monitor Cocoa apps for execution of external utilities (e.g., ffmpeg) on Mac OS X ?CaptSolo2009-01-20T01:21:44Z2009-01-20T01:21:44Z<p>Graham: dtrace would be perfect here. could you (or anyone else here) show a dtrace script that would print the commandline of the process?</p>
<p>This oneliner prints names of processes being executed:</p>
<pre><code>dtrace -qn 'syscall::exec*:return { printf("%Y %s\n",walltimestamp,curpsinfo->pr_psargs); }'
</code></pre>
<p>But how to get / print their command line arguments?</p>
http://stackoverflow.com/questions/154749/communicating-with-a-flash-server-using-rtmp-without-flash/459528#4595282Answer by CaptSolo for Communicating with a flash server using rtmp without FlashCaptSolo2009-01-19T22:56:01Z2009-01-19T22:56:01Z<p><a href="http://tr.im/abba" rel="nofollow">"RTMP: Flash video streaming protocol"</a> discusses libraries and applications for communicating with RTMP servers. </p>
<p>rtmpdump utility for downloading RTMP video streams uses the libRTMP from XBMC media center. this library is written in C++ and seems to be quite self-contained (at least as used in rtmpdump).</p>
http://stackoverflow.com/questions/83752/semantic-web-framework/207050#2070501Answer by CaptSolo for Semantic Web FrameworkCaptSolo2008-10-16T00:51:07Z2008-10-16T00:57:27Z<p><a href="http://librdf.org/" rel="nofollow">Redland</a> is a good RDF framework (just like Andreas said). I am mainly using its Python bindings and am installing it on Mac OS X via MacPorts (e.g., port install redland-bindings +python). </p>
<p>You could use it with other languages too (see its bindings for Perl, Ruby, ...).</p>
<p>For pointers to some larger lists of RDF frameworks see <a href="http://www.w3.org/2001/sw/SW-FAQ#tools" rel="nofollow">Semantic Web FAQ: Tools</a>.</p>
http://stackoverflow.com/questions/150669/do-you-use-microformats-rdf-dublin-core-or-another-type-of-sematic-markup/207032#2070322Answer by CaptSolo for Do you use Microformats, RDF, Dublin Core or another type of sematic markup?CaptSolo2008-10-16T00:41:32Z2008-10-16T00:41:32Z<p>I use SIOC, FOAF, DOAP and some other lightweight RDF vocabularies. A popular trend these days is to embed RDF in web documents using RDFa. At that point the border b/w RDF vocabs and microformats starts to disapper.</p>
<p>With search engines getting better the need for semantic markup will rather rise. For an example, take a look at microformats and vocabs that Yahoo SearchMonkey apps can use:
<a href="http://developer.yahoo.com/searchmonkey/smguide/profile_vocab.html" rel="nofollow">SearchMonkey vocabularies</a></p>
<p>Once search engines can make sense of richer data (even if at first it is just to display richer data about a match found) people will also get more motivation to use semantic markup.</p>
<p>What additional documentation do you think is missing and would be useful to have?</p>
http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/177199#1771990Answer by CaptSolo for Algorithm to determine if array contains n...n+m?CaptSolo2008-10-07T04:00:48Z2008-10-08T15:17:43Z<p><strong>note</strong>: this comment is based on the original text of the question (it has been corrected since)</p>
<p>If the question is posed <em>exactly</em> as written above (and it is not just a typo) and for array of size n the function should return (True/False) if the array consists of the numbers 1...n+1, </p>
<p>... then the answer will always be false because the array with all the numbers 1...n+1 will be of size n+1 and not n. hence the question can be answered in O(1). :)</p>
http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/177268#1772680Answer by CaptSolo for Algorithm to determine if array contains n...n+m?CaptSolo2008-10-07T04:55:13Z2008-10-07T05:25:18Z<blockquote>
<p>Why do the other solutions use a summation of every value? I think this is risky, because when you add together O(n) items into one number, you're technically using more than O(1) space.</p>
</blockquote>
<p>O(1) indicates constant space which does not change by the number of n. It does not matter if it is 1 or 2 variables as long as it is a constant number. Why are you saying it is more than O(1) space? If you are calculating the sum of n numbers by accumulating it in a temporary variable, you would be using exactly 1 variable anyway.</p>
<p>Commenting in an answer because the system does not allow me to write comments yet.</p>
<p>Update (in reply to comments): in this answer i meant O(1) space wherever "space" or "time" was omitted. The quoted text is a part of an earlier answer to which this is a reply to. </p>
http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/177222#177222-1Answer by CaptSolo for Algorithm to determine if array contains n...n+m?CaptSolo2008-10-07T04:20:32Z2008-10-07T04:30:36Z<p>If that was a typo and the question is about all numbers being in range 1...n instead, then:</p>
<pre><code>def try_arr(arr):
n = len(arr)
return (not any(x<1 or x>n for x in arr)) and sum(arr)==n*(n+1)/2
$ print try_arr([1,2,3])
True
$ print try_arr([1,3,1])
False
$ print try_arr([1,2,4])
False
</code></pre>
<p>Notes:</p>
<ul>
<li><p>I am using the definition from the original version that numbers start from 1. Sure code can be modified to account for starting from another number.</p></li>
<li><p>If the size of the array (n) was known, you could modify this to stream data from e.g., input file, and use almost no memory (1 temp variable inside sum() and 1 variable for the current item taken from the stream)</p></li>
<li><p>any() is new in python 2.5 (but you have alternative ways to express the same thing in earlier versions of python)</p></li>
<li><p>it uses O(n) time O(1) space. (update: i wrote it does account for duplicates, but apparently that is not true as demonstrated by a comment to another answer here).</p></li>
</ul>
http://stackoverflow.com/questions/918/how-to-learn-python-good-example-code/149523#1495232Answer by CaptSolo for How to learn Python: Good Example Code?CaptSolo2008-09-29T16:36:14Z2008-09-29T16:36:14Z<p>Generators are one of the coolest new additions to Python.</p>
<p>In order to learn more about them and to see practical code examples of advanced generator usage take a look at this presentation on <a href="http://www.dabeaz.com/generators-uk/index.html" rel="nofollow">Generator Tricks for System Programmers</a>.</p>
<p>It was an eye-opener for me.</p>
http://stackoverflow.com/questions/773/how-do-i-use-pythons-itertools-groupby/144918#1449180Answer by CaptSolo for How do I use Python's itertools.groupby()?CaptSolo2008-09-28T01:05:12Z2008-09-28T01:05:12Z<p>A correction to answer by @<a href="#37252" rel="nofollow">nt</a>:</p>
<blockquote>
<p>[(c,len(list(<strong>cs</strong>))) for c,cs in groupby(some_string)]</p>
</blockquote>
<p>Thanks, the list(cs) part was what I was missing when trying to make use of the _grouper() objects returned by groupby(). This example can be an elegant solution for generating <a href="http://www.ocf.berkeley.edu/~stoll/number_sequence.html" rel="nofollow">Morris sequence</a>.</p>
http://stackoverflow.com/questions/630184/what-is-a-good-wiki-software-for-programming-tutorialsComment by CaptSolo on What is a good wiki software for programming tutorials?CaptSolo2009-10-13T19:24:33Z2009-10-13T19:24:33ZMoinMoin (already mentioned in at least one answer) fits your requirements. At this moment you are probably not looking for an answer to this question any more. Still, a couple of things why I like MoinMoin is:
- Latvian localisation included - see <a href="http://moinmo.in/LatvianTranslation" rel="nofollow">moinmo.in/LatvianTranslation</a>
- ACL and all the rest of things you asked for (some like mathematical formulas are not built-in but available as modules)
- written in Python and easy to extend, create modules for, etc.
Re. Latvian localisation here is an example of a wiki that uses it - <a href="http://semweb.mii.lu.lv/wiki" rel="nofollow">semweb.mii.lu.lv/wiki</a>http://stackoverflow.com/questions/1358694/latex-remove-blank-page-after-a-part-or-chapter/1375156#1375156Comment by CaptSolo on LaTeX: remove blank page after a \part or \chapterCaptSolo2009-09-03T23:51:59Z2009-09-03T23:51:59Zno, it is the 2nd part of the three. both the 1st and the 3rd part remain as they were, unaffected.
or are you saying that this solution would not work if I needed to modify the 1st \part?http://stackoverflow.com/questions/1358694/latex-remove-blank-page-after-a-part-or-chapter/1358780#1358780Comment by CaptSolo on LaTeX: remove blank page after a \part or \chapterCaptSolo2009-09-03T18:25:50Z2009-09-03T18:25:50ZThat would not answer my question about changing the behavior locally, for one individual instance of \part{} and not for the whole document. However, I have got the solution now. Will post it below.http://stackoverflow.com/questions/1358694/latex-remove-blank-page-after-a-part-or-chapter/1358895#1358895Comment by CaptSolo on LaTeX: remove blank page after a \part or \chapterCaptSolo2009-09-02T22:51:42Z2009-09-02T22:51:42Zi am cautious of switching document classes as i need to focus on writing right now and not exploring LaTeX. but if switching to memoir is seamless, i might try to do it.http://stackoverflow.com/questions/1358694/latex-remove-blank-page-after-a-part-or-chapter/1358780#1358780Comment by CaptSolo on LaTeX: remove blank page after a \part or \chapterCaptSolo2009-09-02T21:55:25Z2009-09-02T21:55:25ZI tried your suggestion by replacing the \if@openright block with \clearpage (since i know that @openright is not defined) but it did not work - \part{}s after this definition turned into garbage...
Thanks for the suggestion, it seems a good way to go. Could you suggest how to get it working?http://stackoverflow.com/questions/1358694/latex-remove-blank-page-after-a-part-or-chapter/1359496#1359496Comment by CaptSolo on LaTeX: remove blank page after a \part or \chapterCaptSolo2009-09-01T15:45:14Z2009-09-01T15:45:14ZI need this modification locally, just for one \part{} statement only.http://stackoverflow.com/questions/867949/is-a-versioning-system-or-code-repository-necessary-for-a-single-developer/867975#867975Comment by CaptSolo on Is a versioning system or code repository necessary for a single developer?CaptSolo2009-05-15T10:45:05Z2009-05-15T10:45:05Zfor a single developer a distributed source control system (Hg, GIT, ...) could be better because the repository is local and you don't need a server.http://stackoverflow.com/questions/459493/monitor-cocoa-apps-for-execution-of-external-utilities-e-g-ffmpeg-on-mac-os-x/459850#459850Comment by CaptSolo on Monitor Cocoa apps for execution of external utilities (e.g., ffmpeg) on Mac OS X ?CaptSolo2009-01-21T23:30:27Z2009-01-21T23:30:27Zhere's a reference re dtrace not exposing the whole commandline: "curpsinfo->ps_args doesn’t contain the entire command-line of the process; it only contains the first word"
<a href="http://benjamin.smedbergs.us/blog/2008-11-20/282/" rel="nofollow">benjamin.smedbergs.us/blog/2008-11-20/282</a>http://stackoverflow.com/questions/459493/monitor-cocoa-apps-for-execution-of-external-utilities-e-g-ffmpeg-on-mac-os-x/459850#459850Comment by CaptSolo on Monitor Cocoa apps for execution of external utilities (e.g., ffmpeg) on Mac OS X ?CaptSolo2009-01-21T14:32:00Z2009-01-21T14:32:00Zthis doesn't work. seems like there is a bug in dtrace on Mac OS X in that it does not expose command line parameters. a script meant to do this also only shows just the name of the program (w/o params): <a href="http://www.brendangregg.com/DTrace/execsnoop.d" rel="nofollow">brendangregg.com/DTrace/execsnoop.d</a>http://stackoverflow.com/questions/459493/monitor-cocoa-apps-for-execution-of-external-utilities-e-g-ffmpeg-on-mac-os-x/459505#459505Comment by CaptSolo on Monitor Cocoa apps for execution of external utilities (e.g., ffmpeg) on Mac OS X ?CaptSolo2009-01-21T14:19:34Z2009-01-21T14:19:34ZCool, thanks. I don't think it is wrong to ask someone "show me the code" as often example code is the best explanation and of most value to others who look for answers to this question.
(Well, unless someone is paid to write the code and then asks others to do it instead. Not in this case.) http://stackoverflow.com/questions/459493/monitor-cocoa-apps-for-execution-of-external-utilities-e-g-ffmpeg-on-mac-os-x/459505#459505Comment by CaptSolo on Monitor Cocoa apps for execution of external utilities (e.g., ffmpeg) on Mac OS X ?CaptSolo2009-01-20T02:01:50Z2009-01-20T02:01:50Zsee a comment in the my answer below. could you give an example dtrace script?http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/177268#177268Comment by CaptSolo on Algorithm to determine if array contains n...n+m?CaptSolo2008-10-16T03:25:28Z2008-10-16T03:25:28ZIn most programming languages a number would take fixed amount of bytes regardless of the number of digits. Even if it were to increase (e.g., as a result of switching from int to longit), it would increase so rarely that it would not matter. http://stackoverflow.com/questions/176955/offline-access-to-moinmoin-wiki-using-google-gears/178209#178209Comment by CaptSolo on Offline access to MoinMoin wiki using Google GearsCaptSolo2008-10-07T13:42:54Z2008-10-07T13:42:54ZDoes the Gears Offline Wikipedia script (from the URL you gave) work for you? I am getting an error message "The page at <a href="http://en.wikipedia.org" rel="nofollow">en.wikipedia.org</a> says:
Problem in initializing Gears: unsafeWindow.GearsFactory is not a function"http://stackoverflow.com/questions/176955/offline-access-to-moinmoin-wiki-using-google-gearsComment by CaptSolo on Offline access to MoinMoin wiki using Google GearsCaptSolo2008-10-07T13:36:07Z2008-10-07T13:36:07ZThanks, that's a good idea. What about ability to do updates? You could do two-way rsync but there is a risk of loosing data if the server was updated while you were offline.http://stackoverflow.com/questions/176955/offline-access-to-moinmoin-wiki-using-google-gears/177321#177321Comment by CaptSolo on Offline access to MoinMoin wiki using Google GearsCaptSolo2008-10-07T13:31:54Z2008-10-07T13:31:54ZThe Desktop Edition is just a wiki which you can run locally. It is easy to install and has a web server built-in but this won't solve the original problem of offline access to a web-based wiki.
However, it might work in combo with rsync solution suggested in @codeape's comment to the question.