Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

37
votes
19answers
8k views

Tips to create a useful user-manual

If I start writing a user-manual for applications I have written, I have a hard time to look at the application from a users standpoint. I know it's not very useful to write something like: To use ...
18
votes
2answers
664 views

Sources on S4 objects, methods and programming in R

As I'm often confronted with situations where S4 programming is needed to keep an overview, I've collected quite some sources on S4 objects, methods and programming. I've listed them here as a ...
12
votes
3answers
6k views

How to use '-prune' option of 'find' in sh?

I don't quite understand the example given from the 'man find', can anyone give me some examples and explanations? Can I combine regular expression in it? the more detailed question is like this: ...
10
votes
5answers
475 views

c++0x standard library reference manual

I've been coding in C++ for years and recently heard that there's a new revision of the C++ standard coming along. I've studied the standard drafts and found out that there's a lot of new stuff that ...
10
votes
7answers
4k views

Is there a CakePHP offline manual

There used to be, but there don't seem to be any direct links. A little digging around revealed some answers which I thought it would be useful to share. These are links to the manual in one page - ...
9
votes
1answer
2k views

Git - how to force merge conflict and manual merge on selected file

We maintain web application which has common master branch and many parallel branches, one for each installation, each have few specific changes. Source code is managed in git and it is terrific tool ...
9
votes
10answers
2k views

ANSI SQL Manual

Can anyone recommend a good ANSI SQL reference manual? I don't necessary mean a tutorial but a proper reference document to lookup when you need either a basic or more in-depth explanation or ...
8
votes
6answers
754 views

Reference manual for Apache Pig Latin

Pig is a dataflow programming environment for processing very large files. Pig's language is called Pig Latin. Does anyone know of a good reference manual for PigLatin? I'm looking for something that ...
7
votes
7answers
462 views

Java : “xx”.equals(variable) better than variable.equals(“xx”) , TRUE?

I'm reviewing a manual of best practices and recommendation coding java I think is doubtful. Recomendation: String variable; "xx".equals(variable) // OK variable.equals("xx") //Not recomended ...
7
votes
3answers
3k views

Python Cheatsheet

Is there any definitive cheatsheet available for Python (3.1 especially). I'm learning from a book but I keep forgetting the various methods explained for lists, dicts, strings etc.. I'd like a ...
6
votes
4answers
1k views

Eclipse CDT: How to clear Problems window without invoking Clean Project or Build Project?

Is there a way to clear the Problems window (and any related source code error/warning annotations) without invoking "Build All/Project/..." or "Clean project" (or deleting the project and then ...
6
votes
3answers
117 views

Is there an equivalent to php.net for JavaScript?

I am looking for an equivalent to the php.net manual (http://us3.php.net/manual/en/) but for javaScript methods and syntax. Is there a single site that lists out all the javaScript functions ...
5
votes
4answers
234 views

Haskell Documentation on Terminal

Is it possible to get Haskell Documentation from Terminal or from ghci? In ruby I usually do ri thefunc In perl I usually do perldoc -f thefunc Or I can get interactive help in python. How to ...
5
votes
2answers
204 views

Is There a Standard Help Document/Manual in Android?

I am writing and publishing my apps on android and would like to provide help document (manual) to users of my apps. I've seen apps open up external web pages as their help, or use html view to open ...
4
votes
3answers
837 views

Computing the mode (most frequent element) of a set in linear time?

In the book "The Algorithm Design Manual" by Skiena, computing the mode (most frequent element) of a set, is said to have a Ω(n log n) lower bound (this puzzles me), but also (correctly i guess) that ...
4
votes
3answers
175 views

Is there a way to automatically update the documentation in an R package?

I used 'package.skeleton()' to generate .Rd help files a few months ago. I have edited these files, and I have also changed the functions, removed some functions, added others. Is there a function ...
4
votes
1answer
233 views

Tutorials/manuals for writing class and style files in LaTeX?

I've searched the net and stackoverflow and found a number of great LaTeX sources, but I couldn't find any decent manual about writing your own class and style files. Some issues I have is which part ...
4
votes
2answers
431 views

Where can I get a printed TikZ manual?

The manual for PGF and TikZ weighs in at 560 pages. I would like to have a printed version with a decent binding. Does anyone know where I can get one?
4
votes
4answers
2k views

Linux user-space ELF loader

I need to do a rather unusual thing: manually execute an elf executable. I.e. load all sections into right places, query main() and call it (and cleanup then). Executable will be statically linked, so ...
3
votes
2answers
83 views

Where can I find a good tutorial for HTML5?

I'm looking for a good tutorial or manual or book or whatever to start developing in HTML5. I've read over the W3C standard, but what I need is something more practical (with examples and so on), so ...
3
votes
2answers
58 views

Why are php errors linked?

Just a curious question. I noticed that when you generate a non fatal php error, <b>Warning</b>: implode() [<a href='function.implode'>function.implode</a>]: Invalid ...
3
votes
5answers
3k views

cakePHP 1.2/1.3 Manual in CHM format

Can anyone provide me some useful links to download CakePHP 1.2/1.3 Manual including API version in CHM format, which runs locally without any internet usage? It would be helpful for me!
3
votes
2answers
165 views

How to link library to compile/install a Perl module manually?

I want to compile/install a Perl module that depends on a library that is not in Strawberry Perl 5.12. I used Strawberry on a Windows box to install the module (Net-SSH2). The installation failed ...
3
votes
2answers
1k views

Manual merge on GIT

I develop in a proprietary script language with very resumed code in which most configurations are contained inside the code itself. The obvious problem would be the differences in the code itself ...
3
votes
3answers
900 views

Concise SSE and MMX instruction reference with latencies and throughput

I am trying to optimize some arithmetic by using the MMX and SSE instruction sets with inline assembly. However, I have been unable to find good references for the timings and usages of these enhanced ...
3
votes
4answers
432 views

How can I find all R packages that include graphics functions?

I always have difficulty in finding all available alternative ways to produce a specific graph, either one that I have already decided to use (looking for different variations) or one that I have not ...
3
votes
2answers
156 views

What are your required software development operation manuals?

After reading E-myth Revisited, I realize that I can do a better job at making my company less reliant upon me... I spend a tremendous amount of time answering silly questions (silly to me, but ...
2
votes
1answer
27 views

spring transactions strategy for component integration

We have a typical situation. Two java service components are being developed in parallel. Lets say A and B. A is JMS application that picks up message from queue and does some business rules ...
2
votes
0answers
52 views

Any Intel 8048 assembly resources out there?

Are there any out there? I'm looking at developing something for a retro console, and can't seem to find any resources. I have found an assembler and disassembler package, asm48, however. I've seen ...
2
votes
2answers
80 views

Reference manual for python?

Is there a recommended reference manual for python that's better than the official docs? I'm an experienced programmer (PHP, C#, javascript, and some C most recently), and I find the python manual ...
2
votes
2answers
132 views

Manual binding in Cocoa

I have an ImageView which shows a lock, informing if an opened file is locked or not. I have 2 images for locked and unlocked cases. I want synchronize the displayed image with boolean value of my ...
2
votes
2answers
219 views

Software for colaborative manual writing

Im trying to find a piece of software to help a small (~3-5 people) team write A) a user guide and B) an API reference for the extensible parts of the software. We quite like the idea of using a wiki ...
2
votes
3answers
526 views

Teamcity NTLM Authentication change - admin user lost in transition

I've switched in teamcity from using basic authentication to using NTLM, on an existing installation. This works fine, except that the admin user didn't have a corresponding NT account, and so ...
2
votes
0answers
367 views

Is there a complete solution manual for “ foundations of computer science C edition”?

There is this excellent book online (for free) that teaches induction to automata to etc: http://infolab.stanford.edu/~ullman/focs.html The only problem is it has solutions to only selected ...
2
votes
1answer
1k views

How to disable autoload in jqGrid?

How to disable autoload in jqGrid and load data manually when I need it? Thanks.
2
votes
3answers
139 views

Documenting a Access Application for Developers

I need to document a MS-Access application that was created, developed and maintained completely by a power-user over 10 years. This is an interesting situation because what they want is a manual ...
2
votes
2answers
836 views

Mercurial: How to merge with manual control over changes & files?

Note: The scenario I describe here is not answered in Stack Overflow: Completely manual Mercurial merge. I will explain my query with an example. Assume I start off a Mercurial repository to design a ...
2
votes
6answers
6k views

Manual Page Break in TCPDF

I am using TCPDF to generate the PDF in one of my projects. I simply create a HTML file and give it to the TCPDF to handle the PDF generation. But now I have some HTML where multiple certificates are ...
2
votes
1answer
3k views

iPhone dev - Manually rotate view

How can I manually rotate a view using the autoresizingMasks, as if the user had rotated the phone and it had auto-rotated. Also I want it to be instant, no animation. I you want to know why I need ...
2
votes
3answers
244 views

How to get specific section inside a MAN page?

I want to get only specific sections of MAN page inside a shell (or perl) script and print it. For eg: only the SYNOPSIS section of MAN page Is there any standard way to do that? Regards, Anandan
2
votes
6answers
180 views

Switching data access strategy far into a project?

In a project we have implemented the data access layer (DAL) with a visual designer that auto-generates a lot of code (in our case: strong-typed DataSets and DataSetTableAdapters in .NET). However, ...
1
vote
3answers
79 views

how to prevent 'manual execution' of external PHP script

In simplest terms, I utilize external PHP scripts throughout my client's website for various purposes such as getting search results, updating content, etc. I keep these scripts in a directory: ...
1
vote
1answer
78 views

Manual quality switching in Flowplayer

I've been looking through Flowplayer's docs to find a way to switch between 3 different quality modes, manually. I am able to find in the docs that Flowplayer supports manual switching of multiple ...
1
vote
2answers
84 views

Where can I find Refrence manuals for SQL and PLSQL

Are there any Manuals available,which cater to the needs of SQL and PLSQL developers in the industry. I tried to search,but I found nothing like that of of equal to PHP's manual quality in .chm ...
1
vote
1answer
107 views

Using Data Annotations Validation Manually and Object Graphs

Let's assume that I have two simple classes: public class CustomerDetails { [Required] public string Address { get; set; } } public class Customer { public Customer() { ...
1
vote
1answer
195 views

CodeIgniter manual database connection problem - usage

I'm between a hard place and a rock with a CI problem. I have to dynamically connect to a DB with the username and password that users type. Those are their oracle usernames and passwords. So, with ...
1
vote
1answer
69 views

svn --incremental: How to use it and what it does?

I've been looking at SVN manuals but unable to find out simple usage examples or explanations of the "--incremental" option for "svn log" and "svn st". I'm writing an open-source SVN GUI front-end so ...
1
vote
5answers
172 views

Manual Cygwin Installation without using Setup.exe

I am having issues with finding all of the necessary files to actually install Cygwin correctly when not using the premade setup utility. The reason behind this is the fact that my company computer ...
1
vote
2answers
169 views

Looking for free tool or template to generate an online user's guide for web-based system

I am looking for a a free template or tool to help creating an online user's guide (manual) for a web-based system. I have been searching on the web for hours and just found some expensive commercial ...
1
vote
1answer
200 views

How to prompt user for manual parameters when running build in Team City?

Say you make an automatic deploy script in TeamCity. The script uses SSH for connection to the prod-environment. I do not trust my build server and don't want to store the credentials in the ...

1 2 3