Questions tagged [documents]
293 questions
0
votes
2 answers
What is the equivalent of windows user Favorites directory on Mac OS and linux based OS?
say in on windows 7 using python language: os.path.expanduser('~') gets me 'E:\Users\san'
and in there is a Documents folder so i can get to it by os.join()
what is it called on MAC OSx or other linux distros?

Ciasto piekarz
- 7,853
- 18
- 101
- 197
0
votes
2 answers
How to print information programmatically on a doc template?
I have an application in C# that would print invoices and payslips. The client have sent me a template which would be used for the day to day operations. I don't know how to print to it, though I already know how to print a programmatically made…

John Ernest Guadalupe
- 6,379
- 11
- 38
- 71
0
votes
1 answer
Accessing a file on IOS in Documents/Inbox from my Application
I've been at this all night and its driving me nuts, I have an application which is called by openURL calls from Safari. Safari sends me the fileURL and copies the file in to Documents/Inbox and I then want to read the contents of that file in to a…

Plasma
- 2,622
- 2
- 20
- 35
0
votes
2 answers
iOS 5.1 Simulator "Documents" ghost directory
Before I start, I need to stress the fact that I have looked at every post dealing with the documents directory.
So I will try to disect my problem to better help you help me.
I am developing an iOS application targeted for 5.1. I am using XCode …

Fotis Paraskevopoulos
- 1,001
- 2
- 12
- 19
0
votes
1 answer
jQuery or PHP: Comparing Documents
Just wondering if anyone can suggest a tool (either jquery or php) that allows document comparison? The documents are stored in MySQL (if that's relevant).
I've googled it, and found a couple of things (looks like there's something for jquery, but…

user1154488
- 157
- 4
- 12
0
votes
1 answer
MongoDB - Condition on sub documents using Linq
I'm using the mongo-csharp-driver to query my Mongo entities.
I have the following objects which are stored in the Mongo:
public class Table
{
public int Id { get; private set; }
public string Description{ get; private set; }
…

nirpi
- 715
- 1
- 9
- 24
0
votes
1 answer
Good tool for document indexing and parsing?
I was wondering what is a good tool to use to index documents (pdf, xml, web documents) etc.
I want to be able to index them, parse them and return results appropriately.
I tried solr/lucene but i must be missing something because I did not find it…

12rad
- 829
- 2
- 13
- 28
0
votes
1 answer
Document creation and editing online
What language or technology would I need to be able to create documents online? I want to be able to add text and images and move them into position, resize etc, similar to this.
And then when complete, create a PDF from them.
Sorry if this is a bit…
-1
votes
3 answers
Clustering using K-means algorithm for documents
How i calculate the distance between two documents? In the k-means for numbers you have to caculate the distance between two points. I know that i can use the cosinus function.
I want to perform clustering to rss documents. I have done stemming and…

Mihai
- 1
- 2
-1
votes
2 answers
Improving performance of preprocessing large set of documents
I am working on a project related to plagiarism detection framework using Java. My document set contains about 100 documents and I have to preprocess them and store in a suitable data structure. I have a big question that how am i going to process…

Nuwan
- 360
- 3
- 8
- 20
-1
votes
1 answer
Customize document link rendering from RichTextBlock
I'm working in modernize a old website and i saw that the use buttons for redering document's URLs.
I saw that we can import documents from draftail but i'm not sure how can we modify document's rendering to show a button instead a link as…

SalahAdDin
- 2,023
- 25
- 51
-1
votes
1 answer
How do you create a folder containing all the files in a project?
I'm creating an application In C# that shows a dialog on startup and will ask for the project name. Meanwhile, there are 2 buttons I added: Create and Exit.
If you'd press create, the name of the project you'd type in the TextBox will be saved with…

Robin
- 127
- 10
-1
votes
3 answers
How to get all documents saved in iPhone?
I used the following code to get the documents
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
if([paths count] > 0)
{
NSString *documentsDirectory = [paths objectAtIndex:0];
…

Shahzad Ali
- 43
- 5
-1
votes
2 answers
Querying nested documents in JSON using MongoDB
So am I trying to use the Node.js driver to query a set of JSON data. I've seen all the posts using dot notation, and all that, but I am not getting anywhere. Below is an example JSON of the data that I am working with. I am trying to query all the…

B. Duarte
- 35
- 1
- 9
-1
votes
1 answer
How do I access the Documents folder of an iPhone application?
I'm trying to back up the save file of a video game. I'm pretty sure the save data is stored in /Documents because the folder's "last updated" time stamp changes every time I complete a level. Yet when I open /Documents using iExplorer, iFunBox,…

Markus E
- 27
- 1
- 4