Tagged Questions
The description tag has no wiki summary.
18
votes
18answers
928 views
What is the best euphemism for a non-developer?
I'm writing a description for a piece of software that targets the user who is "not technically minded", i.e. a person who uses "browser/office/email" and has a low tolerance for anything technical, ...
9
votes
4answers
250 views
how to localize a property description in c#?
I'm working on a class that is going to be used by some people from another countries. I have to localize every message, warning e.c. so that they can understand what we mean. In many cases i achieved ...
9
votes
1answer
267 views
How does :g/^$/,/./-j (reduce multiple blank lines to a single blank) work in vim?
In the article, Vim Regular Expressions, Oleg Raisky gives the following command to reduce multiple blank lines to a single blank:
:g/^$/,/./-j
Can someone please describe how this works?
I know ...
8
votes
3answers
457 views
How can I make the Entity data model designer use my database column descriptions?
I am using EF4 with Visual Studio 2010. I have a SQL database already created and all my columns are documented with the Description property in SQL management studio. When I create the edmx in Visual ...
7
votes
1answer
145 views
C++ Official Operator Names / Keywords
Happy Holidays guys.
I have been working on a C++ precocessor sequence (using boost) to assist me in generating operator based functors. I have so far completed the source, however I was having ...
7
votes
2answers
193 views
NSDictionary `description` formatting problem — treats structure like char data
I've got a custom class (which resembles an NSArray in concept and, hopefully, formatted appearance) which has a description formatter.
When the output of the formatter is printed (NSLog) by itself ...
7
votes
2answers
774 views
Parcelable where/when is describeContents() used?
Does anyone know where/when this method of a Parcelable is called?
@Override
public int describeContents() {
return 0;
}
It has to be overriden. But should I consider doing something useful ...
6
votes
2answers
772 views
How can I add a description (-> description-colum in task manager) to my program (VS 2008, C++)
probably a pretty simple question, just couldn't find anything useful with Google. :(
I have a simple unmanaged c++ project in Visual Studio 2008, and would like to add a description text. Right now ...
5
votes
1answer
2k views
git push .git/description file
Is it possible to push the changes in the .git directory to a remote repository?
I wish to have a common project description and not have to re-enter it for all the clones of my repository.
It's ...
5
votes
2answers
419 views
URL Description and Thumbnail API
Does anyone know of an API that will return the description of a URL and a thumbnail image from that URL?
What i'm looking for is something similar to what facebook does where you paste in a link ...
4
votes
2answers
112 views
Getting the description of a Git repository
I'm trying to find a way to store and retrieve the description of a bare Git repository.
For normal repositories, I use a README file where I can leave a description of the project. But this does not ...
4
votes
2answers
469 views
Generic Objective-C description method to print ivar values
In Objective-C, it's common to override -description with a method that prints the object ID and instance variable names/values. I'd like to make a generic -description method that does this through ...
4
votes
1answer
246 views
a description in a qt exe file
how do I add the description to my exe file made with qt
the only description that shows is the title of the application
the description type I want is the one in the exe's properties
3
votes
1answer
195 views
NSLog an object's memory address in overridden description method
I am overriding an object's description method. I need to know how to print the object's memory address to replace {???} in the code below:
-(NSString *) description {
return [NSString ...
3
votes
2answers
227 views
JQuery AutoComplete - Styling the extra data (i.e. Description)
I am using the JQuery library's autocomplete function and wanted to know how I could CSS style the extra information (description).
i.e. My current results when typing into the input is:
John Smith
...
3
votes
1answer
212 views
how to see docs for jsf/facelets elements in eclipse
I am using helios 3.6.2.
I have an .xhtml opened with Web Page Editor
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
3
votes
1answer
123 views
Description(and many attributes) for User Control are not displaying info
I want to show some description information of my User Control in the Propereties toolbox.
After writting some attributes for the control:
public partial class WebUserControl1 : ...
3
votes
12answers
383 views
Better name for “non-negative” value?
I'm validating that the integer is zero or greater. To describe the requirement as "zero or greater" feels too verbose. To say "non-negative" introduces negative language, which I try to avoid when ...
3
votes
4answers
228 views
Add readable field descriptions to ActiveRecord models
I'd like to add descriptions to ActiveRecord model fields to serve as basic instructions / examples for each of the fields. Basically model metadata. I can then display these in the UI (next to the ...
3
votes
9answers
288 views
Verb for what you do when you have A and do A AND B
Ok, this may seem like a silly question, but it is seriously bugging me. Hoping some fellow programmer has a good word for it!
Thing is, I am making an ExpressionBuilder class to help me build up ...
3
votes
7answers
387 views
How to get a description of a URL
I have a list of URLs and am trying to collect their "descriptions." By description I mean what comes up, for example, if you Googled the link. For example, http://stackoverflow.com">Google: ...
2
votes
1answer
59 views
Get friendly description from a object member in C#
How do i get the description from a object member programmaticly?
If i use the built in Object Browser in Visual Studio i can browse a specific object and get a human redable description for every ...
2
votes
2answers
140 views
How to add bullets to LaTeX description lists?
Well yeah, I would like to add a bullet in front of every \item[] item, i.e.
Hello,
\begin{description}
\item[bla] blubb
\end{description}
becomes
Hello,
- **bla** blubb
I quickly found how to ...
2
votes
1answer
3k views
AppStore language description and “Localization native development region”
an iPhone app, localized in three languages (english, italian and spanish), was submitted to the AppStore with description and screenshots in the three languages.
The result is that in AppStore USA ...
2
votes
1answer
187 views
NSObject's 'description' method giving parentheses as output?
So, I'm debugging an app I'm building and using the description method to help me find the problem. But instead of giving me the app as a string it is printing out parentheses instead. Please help!
...
2
votes
2answers
662 views
iTunes Connect app description text won't accept line breaks, description squished
What gives? I've tried multiple browsers, using safari on a mac.... the description text will NOT take any returns / line feeds, they just get stripped out. It doesn't matter if you cut/paste the ...
2
votes
1answer
100 views
Getting [NSObject description]s for objects holding circular references
I have an NSDictionary. It holds several objects, including an array of child NSDictionaries, each of which have an object keyed as @"Parent" that point back to the parent NSDictionary.
This circular ...
2
votes
2answers
487 views
Magento Description/Attributes Replace?
I'm having trouble swapping Short Description (Quick Overview) with Additional Information (Attributes)
Here's an image better explaining what I'm trying to accomplish:
I posted links to ...
2
votes
1answer
399 views
Adding description to WCF web service that appears in WSDL
should it be possible to tag DataContracts, DataMembers, ServiceContracts and OperationContracts with a Description attribute, (System.ComponentModel.DescriptionAttribute) so that those descriptions ...
2
votes
1answer
344 views
Description to return just ClassName?
The default description for a class instance returns "ClassName: 0x105120". How might I modify the method below to just return the "ClassName"?
// The code below just returns the address ...
- ...
2
votes
2answers
1k views
How to populate field descriptions in MS Access
When linking to an external data source via ODBC (especially an AS/400), I often run into cryptic field names on the other side, where a data dictionary is not available. In the rare event that I'm ...
1
vote
1answer
43 views
Enum description in DataGridView
I have a problem with enum description.
I want that the dataGrid show me the enum description and not "ToString()" of the enum.
enum DirectionEnum
{
[Description("Right to left")]
rtl,
...
1
vote
1answer
45 views
Localized descriptions for Blend
I'm working on a custom control in WPF. My control has a lot of Properties to set by the User. I'm creating the descriptions by following code:
[Description("Desc"), Category("Category")]
Is there ...
1
vote
2answers
70 views
Printing a struct using description
I would like to know if it is possible to use the description function in the Cocoa framework to log the contents of a struct. For example:
typedef struct {float a,b,c;}list;
list testlist = ...
1
vote
1answer
50 views
NSKeyedArchiver and description method : app crashes
i tried to test NSKeyedArchiver, but my code seems to be wrong. I then tried only with a NSLog, but the NSLog returns (null) if i alloc-init my var "model" in the init method (in the controller), and ...
1
vote
2answers
267 views
iTunes connect Arabic localization
I'm trying to use Arabic description and metadata for my app. In iTunes connect it states that these data must be in English, so I did put them in English. Then i found the localization feature but ...
1
vote
3answers
66 views
Description of the OpenGL library and what all functions are doing
Does anyone know a good book or website, where you can get a good description of all the functions in opengl. How they work. I know those sites where you get a short explanation and what the function ...
1
vote
2answers
56 views
Which solutions are available for meta configuration or configuration verification?
I want to develop a description language which enables developers to declare which possible configuration settings are valid for their software artifact.
For example, you could declare that a port ...
1
vote
1answer
249 views
iPhone multilingual App in a single Country. (belgium case)
Question regarding app store deploiement,
In belgium (and in many other Country), 3 languages are spoken (french, dutch, german).
Therefor we developed a localizable app with these 3 languages and ...
1
vote
2answers
84 views
Rails how to realize product model and description
i want to create a shop like application in rails, with products.
These products have a description in more than one language.
I'm not sure what is the "best" way to realize it.
Should i create 2 ...
1
vote
2answers
71 views
Can't have an ivar with a name of description in Objective-C description method?
I'm trying to implement the Objective-C description method for my NSObject-derived object.
However, my derived object has an ivar of name description. And for some reason this is causing a crash.
- ...
1
vote
2answers
2k views
Add description to Android Gallery - (Pictures and text)
I'm working on my new project but I can't figure out how to add a text under my Gallery.
I have 3 pictures, if I slide on picture 2 I can see under picture 1 and 3 the correct description but it ...
1
vote
6answers
235 views
How to debug a database query for performance
I am absolutely new in databases and SQL queries.
Q1. What are the common problems one
generally face in database queries? Probably extremely large queries, performance issues, timeout and ...
1
vote
1answer
965 views
Difference between two commands of fetching Shopping Cart Items in Magento
In Magento, if you need to get / fetch the Shopping Cart's Item details, you can do it in any of the two possible ways, which will provide you with all the shopped Items in an array:-
$cartItems1 = ...
1
vote
1answer
578 views
“Share to facebook” button issue in displaying thumbnails
I have added a "share to facebook" button in all my website's articles.
Clicking this button would normally open a new window showing the facebook post's preview: the post's title, the post's ...
1
vote
1answer
134 views
Alt for images in JasperReports
While putting an image element in PDF report, how can we give the alt description or similar kind of description for that image? The idea is to read the description when some screen reader is used to ...
1
vote
1answer
341 views
Joomla - How do I have the meta description/keywords in 2 languages for different pages
I'm working on a site in Joomla and i've got it in two languages, french and english. Is it possible to have the meta description and keywords in french on the french pages and english on the english ...
1
vote
1answer
73 views
How to Handle a Long Description Line For Interface Function
I got a long description for my interface function.
IMyInterface.cs
[Description("Line 1 description content here! Line 2 description content here!Line 3 description content here!Line 4 description ...
1
vote
2answers
91 views
Will using a meta description hurt me?
I'm writing an engine for a website and I'm considering whether to add a field to let the author write a description of the page or not. If I decide to do this, it will be used as the meta ...
1
vote
4answers
313 views
Outputting iVars from description method?
I am pretty sure I am just missing the point here and getting confused. Can anyone tell me how I might write a simple description for an object that will print out the value of its instance variables ...