|
Is there any reason to use one versioning style over the other for .NET assemblies????
I'd like to know if there are any advantages/disadvantages in using either style besides taste.
Started by Felipe Angriman on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I can then increment the Major and Minor version numbers as seems change minor version at least....
The advantage of time is that you get both an increasing version number and encode the timestamp*" and remove any AssemblyFileVersion.
|
|
Is it Major.Minor.Release - IBM style (eg. 1.2.3)? Is it the Year? (Windows '98) Something else?
Reference: http://en.wikipedia.org/wiki/Versioning
Presently I use major.minor.release.internal-release
Example 01.12.02.19
For the next product, I was thinking...
Started by tellme on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
I think people have version I should consider....
I prefer this because it's simple, efficient, and most people understand these version
//internal 2.8-1234567890 //external Wordpress 2.8
I'd go for product version + build.
Been patched.
|
|
One of my colleagues told me today that some projects use a weird, IMHO, way of versioning their releases. If the release is unstable, the minor version is an odd number, eg. 1.3, 1.5. On the other hand, stable releases have an even minor version number...
Started by Ionut G. Stan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If it is not yet.
IMHO, all releases should be relatively stable.
Using this method with version 2.5.
|
Ask your Facebook Friends
|
This may sound like it's not a programming related question, but stick with me here...
My team and I have found that documenting our project (a development platform w/ API) with a wiki is both useful to us and useful to the users. Due to some organizational...
Started by basszero on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
This way, the documentation will automatically be version.
Generation of documentation from source.
|
|
I'm finishing up some of my first C# classes and even though the original code I inherited is completely void of comments, I always put javadoc comments on my methods when I was writing java and my code currently looks strange without those blocks.
I ...
Started by Kivus on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
(It will create....
If you type three forward slashes "///" before a method in Visual Studio, it will automatically create a simple template for you to comment methods .
Type three forward slashes before any method:
///
This will generate an XML comment block .
|
|
#parent div { float:right; } #parent > div { float:right; }
Most importantly: firefox and IE
Answer Snippets (Read the full thread at stackoverflow):
See this chart :
#parent > div is supported by ALL browsers EXCEPT... .
The glib answer aside, among browsers you probably care about, the child selector is not supported in Internet Explorer 6 .
Some browsers don't support CSS at all (lynx for example) .
|
|
Metro style Opera for the upcoming version of Windows Hello everyone,
what do you think? Would it be nice to have a Metro style Opera for the next versions of Windows?
An interesting question would be, whether a Metro style Opera can perform the whole...
Started by 144 on
, 20 posts
by 10 people.
Answer Snippets (Read the full thread at opera):
For developing Metro style apps in order for them to be available as soon as the next version GO for Opera metro!
And it should not be mobile version, IE 10 offers same functionality as desktop" effect, so that way I think Opera ....
|
|
You can use the attached for dark based styles. Adjust the css file as needed and don't forget to upload it into the mchat folder on your forum and make the call to the file within the overall_header.html file for your dark based style.
mchat for darkstyle...
Started by Titounet2407 on
, 12 posts
by 8 people.
Answer Snippets (Read the full thread at rmcgirr83):
"That's not a bug? Then why not buy me a beer! is there any chance of someone elaborating on this for us please? Is it a style we can d/l that's dark or what?....
Stickified.
Into the stylesheet.css file for the style and refresh the theme.
|
|
Riddim version exchange (sound clash style) Anybody wanna exchange some riddim? Below is what i have and what i need.
Got:
Answer
bobby babylon (studio 1)
Throw me corn (studio 1)
Full up (studio 1)
General (same version as Jaros tenor saw "trouble in...
Started by Grim Reaper on
, 40 posts
by 23 people.
Answer Snippets (Read the full thread at dancehallreggae):
Daddy (dubplate style)
Hot wax (clean version, not candle wax)
billy jean
kouchie (clean)
pain
real
candle wax
cannon
capital p
caribbean style
celebrate
celebrate
chain
champion
charm
cherry oh baby)
Throw me corn (studio 1)
Full....
|
|
What is the difference between old style and new style classes in Python? Is there ever a reason to use old-style classes these days?
Started by Readonly on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
The concept of (old-style) class is unrelated to the concept of type: if x is an instance of an old-style....
From http://docs.python.org/ref/node33.html :
Up to Python 2.1, old-style classes were the only flavour available to the user.
|