|
I wrote an application in VB.NET and since i charge by the line, i would like to calculate how many lines i wrote. i have about 100 different vb files with my code. how do i count all the lines?
Started by every_answer_gets_a_point on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
You could do a regex search for a line-break char that isn't followed by another linebreak (excluding blank lines)
Alternatively there's this app http://cloc.sourceforge.net/ (I haven't used it, I just found it)
Line Counter on sourceforge is a VB.NET... .
|
|
I wrote this really simple game in SDL using C++ and now i want to show some of my friends who are on windows. I wrote my program in ubuntu 9.10 using code blocks. I want to take my source code and make a windows installer so they can install it and play...
Started by TheFuzz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
:)
That said, now you need to find a Windows compiler like MinGW (the port of gcc) or Microsoft Visual Studio (2008 Express is free, and 2010 Release Candidate is free) so you can compile your game for the Windows platform... .
Congrats on completing a project.
|
|
Who wrote the chapter MATTHEW of the bible ?did Matthew wrote it ?
Started by ? on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at yahoo):
Of the Bible, not a chapter (it contains chapters)
And the answer of who wrote it down.
|
Ask your Facebook Friends
|
I wrote some modules, and trying to run them. How I tell where to take the module from?
I am writing in Windows, and tried to put it in c:\perl\lib but it didn't help.
Can I put it in the same directory, as the file that calls the module?
Started by Night Walker on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
(This @INC list is compiled into the perl executable)
Then you can:
BEGIN { unshift... .
(.pm files)
If you:
perl -e 'print join "\n", @INC;'
you'll see what paths are currently being searched for modules .
Perl uses the paths in:
@INC
to search for modules.
|
|
I am a big fan of agile software development which include code-reviews,testing extensively. But my question who should be ACTUALLY TESTING the code. Is it the developer, who wrote it from scratch and who by the way writes test cases(just like me) for...
Started by Maddy on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
But tests such as System testing, UAT etc should.
That the developer who wrote it , right from the scratch.
|
|
In this OLE DB msdn example , (yes, it is dated 1997, but still works :)) I'm wondering what the historic point of OLE DB was if you still apparently wrote SQL to interact with the underlying datasource.
The one thing I'm thinking is if the ICommandText...
Started by bobobobo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The intent of OLE DB technology....
MS databases...
Always fun with dates and Oracle vs.
If you have different databases, you would have to provide different SQL statements based on the vendor .
I can vouch for the fact that there is NO translation done by OLE DB .
|
|
If so, how do you organize it? Do you refer to it often? Are there ethical implications?
I have a bunch of tarballs lying around that I keep telling myself I'll organize some day, but I've yet to get around to it. And when I do sneak peaks at it, I find...
Started by jcrossley3 on
, 23 posts
by 23 people.
Answer Snippets (Read the full thread at stackoverflow):
However I wrote at a previous job because it was....
I don't save the code.
Most of the time code you wrote more valuable to have than some code you wrote while there.
Then it's great and one of the best features of an OO language .
|
|
Hi,
I am making a site that determines the value of an array based on what time it is. I wrote this awful (functional) script, and am wondering if I could have made it more concise. I started with a case/switch statement, but had trouble getting multiple...
Started by Alex Mcp on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
First , please please please....
}
That's at least a little cleaner...
You can use a switch statement, doing something like this:
switch (true) { case $now < 1258783201: // your stuff break; case $now < 1258783201 // more of your stuff break; //.. .
|
|
How would one go about doing this? Also, is there an easy way to do it? Using a lib like Boost or something?
Started by William on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So if Java wrote.
Ideas:
Read it in as straight binary, then convert/interpret bytes as necessary .
|
|
I am a .net developer and developed a lot of applications, what i want is to write some good ideas and sell them on the internet, i have my own website, but how to promote for these applications, should i go to download.com Seams that my problem is marketing...
Started by Amr ElGarhy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
'Marketing,' he says." - http://www.joelonsoftware.com/articles/DevelopmentAbstraction.html
Check out http://stackoverflow.com/questions/426042/want-to-sell-own-application-where-to-start – John MacIntyre
... .
Why did he fail? He's pretty sure he knows.
|