Tagged Questions
The writing tag has no wiki summary.
17
votes
11answers
976 views
Should programmers be able to write clearly?
I read Richard P. Gabriel's book "Patterns of Software" (pdf) which contains an essay called "Writing Broadside" in which he contends that programmers should develop their ability to write clearly. I ...
12
votes
5answers
2k views
Is there a standout programming language to write a virus? [closed]
Just for curiosity; I wonder what is the most popular programming language to write a computer virus?
May the most popular one could be considered as the most capable for manipulating vital data and ...
12
votes
10answers
472 views
Is there open source software available that analyses a string and guesses the gender of the author?
I can't find anything other than closed-source web applications. Are there any active projects? I'd be interested in using the software in something I'm developing and getting involved.
10
votes
3answers
935 views
How do you write a technical book? [closed]
I want to write a technical book. What is a good way/software to write it?
What is important to me,
I want to be editing text, not fighting formating. So no word like systems.
Automatic syntax ...
9
votes
6answers
428 views
What's a good book to learn about technical writing?
I just realized that the ability to express ideas in writing is an important skill as a programmer. With a good writing ability, we can write blogs, technical paper, comments, or documentation better. ...
9
votes
14answers
322 views
Does writing and speaking on software make you a better programmer?
Do you think that writing about software (i.e. having a blog) and speaking on software (and concepts) make you a better programmer?
8
votes
5answers
759 views
What is the best (computer book) publisher to write for and why?
I have written a book for Packt publishing because they asked me too. Having gone through a year long experience with them I found that there were many pros and cons to having written for them - a ...
7
votes
7answers
91 views
What is the correct way to refer to Java members in text?
In answering questions I find myself referring to method names and online documentation often. I'm confused about how method names should be referenced in text.
For example I often type:
One ...
7
votes
4answers
735 views
C#: Whats the fastest way of reading and writing binary?
I'm currently optimizing an application, one of the operations that is done very often is reading and writing binary. I need 2 types of functions:
Set(byte[] target, int index, int value);
int ...
7
votes
3answers
789 views
Developing ebooks- software?
I've written a few documents for friends or blogs on software testing, job hunting and android development. I've been toying with the idea of producing some programming-related ebooks. However, ...
7
votes
6answers
1k views
What would it take to write my own database system?
What would it take to write my own database system?
I would want to make it a server type system.
Have any successful database systems been written by one person?
7
votes
3answers
1k views
Tips for collaboratively editing a LaTeX document
My default setup is to put the tex source in a subversion repository and insert notes to each other as comments in the source when making changes to other people's content. It all feels pretty ...
7
votes
15answers
759 views
Learn How To Become a Better Writer
You know how it goes, every other day you'll find someone whether it be at an internet forum or on a spec doc whose literary efforts can be described as abysmal.
These kind of people try to write ...
6
votes
5answers
165 views
Designing software at complex levels?
I'm writing a software that appears to be quite a lot more complex than I realized earlier. It performs several sub-tasks, has a set of entirely different tasks and integrates itself to other ...
6
votes
4answers
10k views
access violation writing location?
I have a simple program and I get access violation at *(str + start). why? i should be able to change it. Right?
void fn()
{
char *str = "Hello wordl!";
int end = strlen(str);
int ...
4
votes
5answers
234 views
Using Git for writing thesis
I am planning to use Git for writing my thesis with Latex. As Git is specifically designed for software development, would it be feasible for my requirements? If it is a good choice for me, then what ...
4
votes
2answers
330 views
Python ConfigParser question about writing comments to files
This is my first time writing for help... so, here it goes: I am in need of some help with ConfigParser. The question is: how can one write comments to a given file within sections?
If I have:
...
4
votes
3answers
239 views
How can I read data faster?
Hmmm... its kinda challenging to find a method for reading/writing data faster enougth to get ACCEPTED in this problem ( https://www.spoj.pl/problems/INTEST/ ) using F#.
My code ( ...
4
votes
5answers
293 views
C++ Problem writing to a file
My Code:
std::ofstream m_myfile,
m_myfile.open ("zLog.txt");
m_myfile << "Writing this to a file " << " and this " << endl;
when this C++ Program runs, I have another program ...
4
votes
5answers
207 views
How to write good articles about programming in ASP.net and C#?
Over the last 1 1/2 years I've been working as a junior software-developer at a small company with focus on ASP.net / C#. During that time I've read in some great programming books, c# forums, ...
4
votes
3answers
1k views
Printing a DataTable to textbox/textfile in .NET
Is there a predefined or "easy" method of writing a datatable to a text file or TextBox Control (With monospace font) such as DataTable.Print():
Column1| Column2|
--------|--------|
v1| ...
4
votes
6answers
149 views
Regarding how best to expose programming to a foreign audience
I'm writing a novel at the moment and, while programming will not be receiving a great deal of focus, I do want to at least get it into the reader's head that a character's coding background could ...
3
votes
1answer
97 views
Errors Writing CSVs with Python
I'm encountering errors in the .csv files that I'm writing with python (the necessary format because I'm on a team which depends on .csvs). In a non-patterned way, there are errors creeping up across ...
3
votes
2answers
123 views
Python Multiple file writing question
I need python to write multiple file names, each file name is different than the last. I have it writing in a for loop. Therefore the data files written from the Python program should look like this: ...
3
votes
1answer
365 views
Strange problem with reading and writing a plist file
I have an application that read info from I plist file. To do it I use this code below:
NSData *plistData;
NSString *error;
NSPropertyListFormat format;
id plist;
...
3
votes
3answers
374 views
Synchronize writing to a file at file-system level
I have a text file and multiple threads/processes will write to it (it's a log file).
The file gets corrupted sometimes because of concurrent writings.
I want to use a file writing mode from all of ...
3
votes
2answers
169 views
Best Practice For High Load File I/O?
What is your recommended best practice for a LAMP server with sort of a high simultaneous load and I need to handle file I/O without getting too hung on a file lock?
I mean, let's say I want to have ...
3
votes
2answers
72 views
Writing only part of a line to a file
I want to clean up my output and only write part of the line that I need to a new file and not the whole entire line. This is the relevent coding section:
counter = 1
for line in completedataset:
...
3
votes
2answers
171 views
Good books about writing technical documentation
Can you recommend any books about how to write technical documentation?
I'm after some guidance on overall layout of the document, style (as in prose, not CSS), when and where to go into detail, etc.
...
3
votes
3answers
621 views
Easily writing Bundles in Cocoa
How can I write bundles in Cocoa without much "fuzz" around it? I just want to have a bundle with an Info.plist, a Contents Folder and that folder should contain a couple of files.
3
votes
3answers
239 views
Self publishing a programming book
I was wondering if any SO members have had the opportunity to self publish a programming related book. Do you have any advice regarding the process? I don't have any problem maintaining the ...
3
votes
6answers
227 views
How much to comment code sample when writing an article?
When you read a "howto"-style article with a code sample, which do you prefer:
All the code off to the side with very few comments, and a complete line-by-line breakdown in the article
OR
All ...
2
votes
2answers
47 views
Copying twitter stream to objects: can i fall behind?
Currently I'm working on an app that reads the stream from Twitter API and parses it into objects. At the moment I read the stream and use ReadObject(...) from DataContractJsonSerializer to make my ...
2
votes
0answers
65 views
Processing - Firmata with Arduino Mega 1280, can't read all input pins
Hi and a happy new year!
I got an Arduino Mega 1280 and want to communicate with it via Firmata. That sounds easy...
So my problem: If I use the StandardFirmata Firmware for the Arduino, which is ...
2
votes
3answers
68 views
What technology do you use to write a book? [closed]
I'm planning on writing a book and I'm wondering what technology you might recommend. I'm currently considering:
Latex
reStructured Text
Markdown
Other?
I was thinking that maybe using something ...
2
votes
2answers
58 views
File reading and writing projects to make sure you understand the concept
New to programming, and I'm beginning to tackle file reading and writing. I understand the basic concept, but I was wondering what kind of projects or tasks I should be able to do in order to fully ...
2
votes
2answers
59 views
How to keep the code organized, simple and flawless? [closed]
Well, I am a bit afraid from this question because some of you might not like it, but I convinced myself to ask anyways because although some of you might get mad at me, none will say this topic isn't ...
2
votes
4answers
106 views
Access violation looping and writing
Ok, I have checked out every single question about this, and still I can't figure out. I need to write a string array to a file, using a loop. My read section is working properly, but this one is'nt ...
2
votes
5answers
937 views
Efficient way of writing to text file in VB.Net
We have some information that we need to write (about 18KB) to a .txt file stored in one of our network drives. The file is re-written about once every 15 minutes but is read practically at least ...
2
votes
1answer
1k views
applicationDidEnterBackground: and time to write on a database
when the application terminates, I write data on a database.
As from iOS 4 applicationWillTerminate: isn't called, I've put the same saving code both in applicationDidEnterBackground: and ...
2
votes
3answers
196 views
How to read a file starting at a specific cursor point in C#?
I want to read a file but not from the beginning of the file but at a specific point of a file. For example I want to read a file after 977 characters after the beginning of the file, and then read ...
2
votes
2answers
79 views
Creating and writing files with php
Is it possible to pass a variable to 'file_get_contents' in php? Am getting errors and wondered if it was my syntax. Am using the code below.
...
2
votes
3answers
195 views
When writing struct to a file too many bytes are written
I'm trying to write a simple TGA image file saver as a learning exercise in C++. I'm basing my code on an example TGA loader that declares a struct for the header and then uses fread() to load the ...
2
votes
6answers
226 views
How to Format Code in Research Reports
I am currently writing a formal research report, and I'll be including code with this report.
Question: Is there an accepted way of displaying code in research reports? I'm thinking both in terms of ...
2
votes
3answers
3k views
Using Java PDFBox library to write Russian PDF
I am using a Java library called PDFBox trying to write text to a PDF. It works perfect for English text, but when i tried to write Russian text inside the PDF the letters appeared so strange. It ...
2
votes
9answers
345 views
What is the most enjoyable literature that is also useful for developers at a technical level?
I just spent some time at Bart de Smet's online blog and found it to be not only useful information for developers but at the same time interesting, fun, reading. The author obviously not only knows ...
1
vote
4answers
118 views
writing in binary file in c++
I had created a class for student. This is the class.
class student
{
int rollno,marks;
char name[20];
public:
void show();
void get();
int filecreate(const string &,fstream ...
1
vote
1answer
45 views
doc.jquery.com api documentation
I read that docs.jquery.com uses wiki to do the API documentation. I have been searching, but I can't find which wiki system did they're using.
Does anyone know about this, because I want to write ...
1
vote
2answers
77 views
Could I write text vertically as in japanese script, is it possible at all?
I want to write text vertical, but not to rotate it - example:
H
e
l
l
o
Could be this done in some specific way in android or I should add a new line after each and every letter of the word?
1
vote
4answers
169 views
c# writing to registry local machine error
I want set default icon of some extension by C#. But this gives me error -> Security Exception was unhandled
RegistryKey FileExt = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Classes", ...