making PDF file to flipbook [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I need an open source html that convert PDF to Flipbook and I want to use it in linux server.
I've searched but found .exe document that doesn't work on linux server.
Thanks if you can help me to find one

There are a number of different ways of doing this but from your question it looks like you want to convert your documents on your server? FlexPaper supplies sample scripts in PHP and Java for how you can convert PDF documents to HTML5 and Flash in both GPL and commercial versions. You can give it a try here:
http://flexpaper.devaldi.com/download/

Plain HTML can't convert pdf to flipbook.. Program called ghostscript can convert pdf to jpg/png in linux but the flipbook it self have to be maid/viewed usually with flash.

You can have a try with this two programs runing over linux, I hope its usefull for you
https://apps.ubuntu.com/cat/applications/ghostscript/ and
https://apps.ubuntu.com/cat/applications/imagemagick/

Related

Beautify HTML Code in Sublime Text 3 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
How can I do this? I have Package Control installed and I'm running Ubuntu. There are similar questions that detail some faulty plugins, and I'm wondering if this is still the case as of 2014
Check out HTML-CSS-JS Prettify. It requires node.js to work, so make sure you read through the entire README to get your system set up properly. I've been using it for a while, and I really like it. There are lots of configuration options, so you can customize it to your particular needs.

How can i use tcl to create xls file with multisheets and colored boxes as per requirement? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am using Linux operating System. and my most of the application is in TCL. I am thinking of adding a module to it for creating xls file with multiple sheets and colored boxes as per requirement. Is there a way by which i can created xls file? csv will not help me for the task. Any Help/Suggestion/Keyword will be appreciated. Thanks in advance.
The excel formats are formidably tricky (only CSV is remotely easy to handle, and that's because it doesn't do much). I'd use Apache POI for this, even bearing in mind that it is Java code and so likely to be a bit awkward to integrate with your Tcl code.
If you were able to run on Windows instead, the TCOM package would let you talk to a running Excel instance to do the work more directly. That package is platform-specific though…
This i made it done by simple hit and trial of perl and half day learning of Spreadsheet::WriteExcel
http://homepage.tinet.ie/~jmcnamara/perl/WriteExcel.html
Creating perl file using tcl data and at the end executing the perl script. Final output of xls file generated. Thanks everyone for your effort.

Colloborative programming with compiler [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Does anyone know of any software like Google Docs, or collabedit that allows you to edit realtime collaboratively and even compile a .cpp or other program over the web?
I haven't used this website, but seems like http://codebunk.com/ does the job.
It doesn't work for Java though.
I know of this website that will compile the code for you:
http://ideone.com/
Unfortunately, I cannot help in the real time editing front.
I wrote a little webapp that does exactly that, i.e. it lets you compile Google Docs documents: http://compiler.m01.eu
You can write C++ code into a Google Document (and do that collaboratively if you like), and then click on a bookmark (provided on the site) to compile your code, which will either start the download of your binary or show a compiler error message.

How can I search for a code snippet in all folders/files of a site? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
How can I search for a code snippet in all folders/files of a site?
I can't find the line of code I'm looking for. It's a large site and looking through file by file is not reasonable. How can I go about finding this snippet?
Other details:
It's a Drupal site
I use a Mac
Code editing software I currently have avail: Coda, Text Wrangler, Dreamweaver
Any help would be incredibly appreciated.
Just use grep - take a closer look at this tool here: http://www.cyberciti.biz/faq/unix-linux-finding-files-by-content/
FYI: it is a command-line tool.
Also consider that Drupal may be storing something within the database, even the PHP code (which happens when you have PHP filter enabled for some contents and put PHP inline). Thus you may not find the specific code snippet within the code of the application and then you will probably need to look into the database.
While grep via a terminal will work wonderfully for OSX and *nix users, those on Windows may find that grep isn't available.
For Windows users who want a solution to this, you can try the following:
1) Using cygwin (http://www.cygwin.com), which can be installed with grep
or
2) Grabbing a copy of grepWin (http://tools.tortoisesvn.net/grepWin.html); a grep tool with a frontend UI.

Any tool to convert PDF to XLs on linux? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
All,
Is there any tool to convert PDF to XLS on linux....
Thanks.
try
pdftotext -layout input_file.pdf output.txt
from then you could try pasting into a spread sheet and setting the correct diameter. All depends on the pdf in question.
If you know some python you can also check out pdfminer to get the formatting you need.
Convert pdf to txt, then convert txt to xls ;)
Maybe you wanted it the other way? xls to pdf?
Use Koffice. Koffice can import PDF files and save them as doc. Then you can convert DOC files to XLS... I tested this method ;)
If you can use java, maybe a combination of apache poi and itext.

Resources