473,397 Members | 1,969 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

lines of code

Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
I found out a tool, sloccount, but it gives only physical lines of
code.

I found out one more tool cccc , but iam getting many parse errors
with it.
If you know any other tool( to be used in linux) please let me know.

Aug 3 '07 #1
19 3766
Pavan wrote:
Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
I found out a tool, sloccount, but it gives only physical lines of
code.

I found out one more tool cccc , but iam getting many parse errors
with it.
If you know any other tool( to be used in linux) please let me know.
Exactly how do you measure LOC - does that include comments ? defines ?
expressions over multiple lines ?
Aug 3 '07 #2
On Aug 3, 1:47 pm, Gianni Mariani <gi3nos...@mariani.wswrote:
Pavan wrote:
Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
I found out a tool, sloccount, but it gives only physical lines of
code.
I found out one more tool cccc , but iam getting many parse errors
with it.
If you know any other tool( to be used in linux) please let me know.

Exactly how do you measure LOC - does that include comments ? defines ?
expressions over multiple lines ?
Yes, It should count comments seperately and should also give logical
lines of code

Aug 3 '07 #3
Pavan wrote:
Yes, It should count comments seperately and should also give logical
lines of code

You need to specify "logical" LOC.
Aug 3 '07 #4

"Pavan" <pa******@gmail.comwrote in message
news:11*********************@j4g2000prf.googlegrou ps.com...
On Aug 3, 1:47 pm, Gianni Mariani <gi3nos...@mariani.wswrote:
>Pavan wrote:
Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
I found out a tool, sloccount, but it gives only physical lines of
code.
I found out one more tool cccc , but iam getting many parse errors
with it.
If you know any other tool( to be used in linux) please let me know.

Exactly how do you measure LOC - does that include comments ? defines ?
expressions over multiple lines ?

Yes, It should count comments seperately and should also give logical
lines of code
int nItems = 0; // Number of items in my list
Is the above a line of code? is it a comment line?

Do you mean statements instead of lines?
a=0; b=1; c=2;
Is the above one line? three lines?

How do you interpret a line with no characters other than whitespace?
What about macros? How about multi-line macros that expand to
multiple statements?

y=f(x) , z=f(w);
How many lines in the above?
--
Fred L. Kleinschmidt
Boeing Associate Technical Fellow
Aero Stability and Controls Computing
Aug 3 '07 #5
Pavan wrote:
Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
I found out a tool, sloccount, but it gives only physical lines of
code.

I found out one more tool cccc , but iam getting many parse errors
with it.
If you know any other tool( to be used in linux) please let me know.

I like this one, unix shell script "slocc.sh"
http://members.tripod.com/vgoenka/un...pts_index.html

Mark
Aug 3 '07 #6
Pavan <pa******@gmail.comwrote:
Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
I found out a tool, sloccount, but it gives only physical lines of
code.
I found out one more tool cccc , but iam getting many parse errors
with it.
http://invisible-island.net/c_count/

--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net
Aug 3 '07 #7
Pavan wrote:
Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
The obvious question is why do you want to?

If you are using LOC as a metric, don't, its nonsensical.

--
Ian Collins.
Aug 3 '07 #8
On Aug 3, 11:06 pm, Ian Collins <ian-n...@hotmail.comwrote:
Pavan wrote:
Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
The obvious question is why do you want to?
If you are using LOC as a metric, don't, its nonsensical.
What kind of nonsense is that? Used correctly, it's a very
useful metric. The more lines of code, the larger the
application, and the more effort needed to develope (and
maintain it).

Obviously, like every metric, it can be abused, but that doesn't
mean that it's useless. (And what do you propose in its place.)

--
James Kanze (GABI Software) email:james.kanze:gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Aug 4 '07 #9
James Kanze wrote:
On Aug 3, 11:06 pm, Ian Collins <ian-n...@hotmail.comwrote:
>Pavan wrote:
>>Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
>The obvious question is why do you want to?
>If you are using LOC as a metric, don't, its nonsensical.

What kind of nonsense is that? Used correctly, it's a very
useful metric. The more lines of code, the larger the
application, and the more effort needed to develope (and
maintain it).

Obviously, like every metric, it can be abused, but that doesn't
mean that it's useless. (And what do you propose in its place.)
I've seen it abused (as a performance metric) far more than used.

Even for the use you quote, it can be terribly misleading, code
complexity has more impact on support cost than lines of code. A huge
monolithic function my have fewer lines than a well factored equivalent,
but it would be way more expensive to maintain.

I don't propose anything, there isn't a simple, accurate way of
measuring the complexity of a C++ application (or the productivity of a
programmer).

--
Ian Collins.
Aug 4 '07 #10
On Aug 3, 7:32 am, "Fred Kleinschmidt"
<fred.l.kleinmschm...@boeing.comwrote:
>
int nItems = 0; // Number of items in my list
Is the above a line of code? is it a comment line?
I would count it as one line of code and as a one line comment.
Do you mean statements instead of lines?
a=0; b=1; c=2;
Is the above one line? three lines?
Three lines. I would expect that any line-counting program would first
converted the source code into a "canonical" representation before
counting its "lines" of code.
How do you interpret a line with no characters other than whitespace?
What about macros? How about multi-line macros that expand to
multiple statements?
A line with only white space would not be counted as a line of code.
The source files will have already been preprocessed - so the line
counter program examines the source code that is actually fed to the C+
+ compiler.
y=f(x) , z=f(w);
How many lines in the above?
Two. After all, the following program is nearly identical to the one
abovve:

y=f(x);
z=f(w);

But clearly my version does not have twice the amount of code as the
original program - so I would expect the lines of code counted in each
program would be the same. More formally, I would count every
"expression", "declarator" and "statement" (as described in the C++
language grammar found in Appendix A of the C++ language Standard) to
be equivalent to one "line" of code.
Greg

Aug 5 '07 #11
Greg Herlihy wrote:
On Aug 3, 7:32 am, "Fred Kleinschmidt"
<fred.l.kleinmschm...@boeing.comwrote:
>int nItems = 0; // Number of items in my list
Is the above a line of code? is it a comment line?

I would count it as one line of code and as a one line comment.
>Do you mean statements instead of lines?
a=0; b=1; c=2;
Is the above one line? three lines?

Three lines.
(a = 0), (b = 1), (c = 2);

What about that ?

a = f( x=1, b=3 );

.... and that.

Construct::Construct()
: a(1),
b(2),
c(a+b)
{
}

.... oooh that too.

enum { a = 1, b = 2 };

and that !

int func( int a = 1, int b = 2, int * c = new int[3] );
.... and this

if ((flags & FNM_PERIOD) && *n == '.' &&
(n == string || ((flags & FNM_FILE_NAME) && n[-1] == '/')))
return FNM_NOMATCH;

.... or this
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR) &lpMsgBuf,
0, NULL
);

+ a bazillion other constructs.
Aug 5 '07 #12
Alf P. Steinbach wrote:
* Gianni Mariani:
>[examples of LOC ungood]

One of the worst problems with LOC in modern development is that the
ideal refactoring of old messy code yields much lower LOC than the
original (I've reduced hundreds of lines of spaghetti to just two or
three well-crafted lines); the better a job, the higher the quality, the
more /negative/ the LOC becomes, and so dim-witted productivity measures
based on LOC will assign the most productive person a negative
productivity, and the worst person, the one producing zillions of
low-abstraction spaghetti lines e.g. by copying, pasting and modifying,
is inferred to have the "best" productivity.

As I recall function points had some similar problems, but it's long
since I studied such things.

I think, in the end any really useful measure of work that's
intelligence based, requires intelligence: it can't be done mechanically
following simple rules (with the current state of art of AI).
The farce gets worse. I worked with one guy who had a previous job with
a large computer company. They apparently had a policy that the number
of bugs per LOC was constant and so if you did not have a count of bugs
fixed which came close to the assumed number you would be told your code
was still buggy and go find and fix some more.

Yah. Needless to say there were *many* bugs that were filed simply to
make the bug count correspond.
Aug 5 '07 #13
Alf P. Steinbach wrote:
:: * Gianni Mariani:
::: [examples of LOC ungood]
::
:: One of the worst problems with LOC in modern development is that
:: the ideal refactoring of old messy code yields much lower LOC than
:: the original (I've reduced hundreds of lines of spaghetti to just
:: two or three well-crafted lines); the better a job, the higher the
:: quality, the more /negative/ the LOC becomes, and so dim-witted
:: productivity measures based on LOC will assign the most productive
:: person a negative productivity, and the worst person, the one
:: producing zillions of low-abstraction spaghetti lines e.g. by
:: copying, pasting and modifying, is inferred to have the "best"
:: productivity.

Of course you could have improved your productivity, by keeping the
old spaghetti code as well. Or make an extra copy of it!

Does the rules say that only code that is executed counts? :-)
I now guys who wrote a "comment generator" to fullfill their manager's
policy of enough comments in the source code.
Bo Persson
Aug 5 '07 #14
On Aug 5, 2:06 am, Gianni Mariani <gi3nos...@mariani.wswrote:
Greg Herlihy wrote:
On Aug 3, 7:32 am, "Fred Kleinschmidt"
<fred.l.kleinmschm...@boeing.comwrote:
int nItems = 0; // Number of items in my list
Is the above a line of code? is it a comment line?
I would count it as one line of code and as a one line comment.
Do you mean statements instead of lines?
a=0; b=1; c=2;
Is the above one line? three lines?
Three lines.

(a = 0), (b = 1), (c = 2);

What about that ?
Three lines. My rule would be to break down each statement into its
grammatical components and if a (comma,separated) expression or
expression-list is found - then count each of its components
individually as one line of code (and to repeat this process
recursively) - otherwise if the statement can be broken down without
finding either an expression or expression-list - then the statement
counts as one line of code.(or something like that, USENET doesn't pay
well enough for me to work all of these details out :-))

For example, the statement above expression matches this grammatical
production in the C++ grammar:

expression-statement =expression ';'

since we have to break down the expression before we can count the
lines, we do so:

expression =expression ',' primary-expression

and so forth. Essentially we wind up with with three of these

'(' assignment-expression ')'

which - when broken all the way down contain neither an expression nor
expression list - so the final tally is three lines of code - one for
each non-expression component of the expression production..
a = f( x=1, b=3 );

... and that.
Three lines. Again we start with an expression-statement:

expression-statement =assignment-expression ';'

becomes

assignment-expression =identifier '=' postfix-expression

becomes

postfix-expression =identifier '(' expression-list ')'

Since we found an expression-list we can no longer count this
statement as one line of code. Instead have to break down the
expression-list and count its components:

expression-list =assignment-expression ',' assignment-expression

So these two assignment-expressions here and the expression-statement
we started with - gives us three lines of code altogether.
Construct::Construct()
: a(1),
b(2),
c(a+b)
{

}
Three (two literals and one additive-expression)
... oooh that too.

enum { a = 1, b = 2 };

and that !
No lines of code assessed for an enum definition..
int func( int a = 1, int b = 2, int * c = new int[3] );
No lines of code awarded to a function declaration. There is after all
no reason to penalize a program for merely declaring a routine. On the
other hand, implementing a function and calling a function do
contribute to a program's line count. The idea here is to encourage
calls to external, library routines (whose lines are not included in
the program's line count) and otherwise to discourage redundant
implementations and to promote code reuse.

Note also that the use of default arguments is encouraged here, since
default arguments often reduce the number of arguments that need to be
provided at the call site (and with each argument counting as one line
of code - the savings could be significant).
... and this

if ((flags & FNM_PERIOD) && *n == '.' &&
(n == string || ((flags & FNM_FILE_NAME) && n[-1] == '/')))
return FNM_NOMATCH;
Three lines. One line of code for the if-statement, one line for the
logical-and expression in its condition, and one line of code for the
return statement. Note that the complexity of the expression does not
necessarily means that we have undercounted the "lines" of code here.

Presumably the variables appearing in the condition-expression had to
be declared somewhere - and each of those declarations would count as
one line of code (by my measure). The strategy here is to assess a
cost for declaring a variable - but not to penalize the program for
using the variable. Therefore removing unused variables is an easy and
effective way to reduce the number of lines of code assessed to a
program.

After all, the entire motivation for counting lines of code in a
program is to build awareness that code added to a program also adds
to its cost, code once-written is not "free" - its mere presence in a
program's sources represents a cost. Therefore any line of code in a
program that does not have to be there - is just money being wasted.
... or this
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR) &lpMsgBuf,
0, NULL
);
I count 10: one for the postfix-expression FormatMessage, one for each
of its arguments argument - except for the postfix-expression
MAKELANGID (which is probably a macro - but I'll pretend is a
function) is assessed two lines additional lines (one for each of its
arguments).
+ a bazillion other constructs.
Yes. And in real life I would not expect the C++ programmer to count
the lines of code in a program by hand, as I did above (it's a little
tedious actually). Instead I would imagine that a C++ compiler would
be better suited to do the line counting - leaving the programmer free
to focus on constructive ways to bring the number of lines counted -
down.

Greg
Aug 5 '07 #15
On Aug 4, 11:30 pm, Ian Collins <ian-n...@hotmail.comwrote:
James Kanze wrote:
On Aug 3, 11:06 pm, Ian Collins <ian-n...@hotmail.comwrote:
Pavan wrote:
Hi, I want to know if there is any software for measuring lines of
code of my c++ application.
The obvious question is why do you want to?
If you are using LOC as a metric, don't, its nonsensical.
What kind of nonsense is that? Used correctly, it's a very
useful metric. The more lines of code, the larger the
application, and the more effort needed to develope (and
maintain it).
Obviously, like every metric, it can be abused, but that doesn't
mean that it's useless. (And what do you propose in its place.)
I've seen it abused (as a performance metric) far more than used.
I've seen it abused, but not that often. Generally, either the
shop is into metrics, has studied the issues, and uses it
correctly, or they aren't into metrics, and don't use it, any
more than they use any other metric.

I think, however, that if you find that it is the only metric
being considered, you probably have a problem. It should be one
of a set of metrics; it's value depends on the fact that "all
other things are equal", and unless mechanisms are in place to
ensure this (and such mechanisms depend on other metrics, as
well as code review, and a number of other factors), then it is
worse than useless: we all know that quality code will usually
require less lines than hapharzardly written code.
Even for the use you quote, it can be terribly misleading, code
complexity has more impact on support cost than lines of code.
Within a given application domain, at least, complexity tends to
be constant. I suspect that this is true accross a large number
of application domains as well, but I'm pretty sure that OS
kernel code will require more effort for the same number of
lines than will most application code.
A huge monolithic function my have fewer lines than a well
factored equivalent, but it would be way more expensive to
maintain.
Obviously, if your organization allows huge monolithic
functions, then it's not mature enough to make good use of lines
of code as a metric. You do have to ensure a common coding
style, and a consistent level of quality, for it to be
meaningful.
I don't propose anything, there isn't a simple, accurate way
of measuring the complexity of a C++ application (or the
productivity of a programmer).
I don't know that it's necessarily simple, but productivity can
be measured and numerically evaluated. Otherwise, how do you
know whether you're improving your process or not?

--
James Kanze (GABI Software) email:james.kanze:gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Aug 5 '07 #16
On Aug 5, 12:14 am, Jerry Coffin <jcof...@taeus.comwrote:
In article <1186262374.338577.77...@w3g2000hsg.googlegroups.c om>,
james.ka...@gmail.com says...
[ lines of code ... ]
Obviously, like every metric, it can be abused, but that doesn't
mean that it's useless. (And what do you propose in its place.)
I'd suggest function points.
I'd say that it depends on what you're trying to measure. Lines
of code per function point is a very good measure of programmer
productivity, for example. (In this case, of course, less is
generally better, although you also have to insist on
readability requirements being met.)
Even when you attempt to use them as well
as possible, lines of code tend to be difficult to apply in many
situations -- just for an obvious example, the number of lines of code
to implement specific functionality often varies quite widely depending
on the implementation language.
Agreed. They're not an absolute measure, in any sense of the
word.

--
James Kanze (GABI Software) email:james.kanze:gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Aug 5 '07 #17
James Kanze wrote:
On Aug 4, 11:30 pm, Ian Collins <ian-n...@hotmail.comwrote:
>I don't propose anything, there isn't a simple, accurate way
of measuring the complexity of a C++ application (or the
productivity of a programmer).

I don't know that it's necessarily simple, but productivity can
be measured and numerically evaluated. Otherwise, how do you
know whether you're improving your process or not?
I tend to track productivity the XP way, by tracking the number of story
points completed in an iteration. This gives a good indication of a
team's performance, so it probably indirectly tracks code complexity as
well.

--
Ian Collins.
Aug 5 '07 #18
On Aug 5, 10:26 pm, Ian Collins <ian-n...@hotmail.comwrote:
James Kanze wrote:
On Aug 4, 11:30 pm, Ian Collins <ian-n...@hotmail.comwrote:
I don't propose anything, there isn't a simple, accurate way
of measuring the complexity of a C++ application (or the
productivity of a programmer).
I don't know that it's necessarily simple, but productivity can
be measured and numerically evaluated. Otherwise, how do you
know whether you're improving your process or not?
I tend to track productivity the XP way, by tracking the
number of story points completed in an iteration. This gives
a good indication of a team's performance, so it probably
indirectly tracks code complexity as well.
I assume that "story points" is just a new name for the
"function points" that Jerry mentionned. So how do you know
that all of the "story points" are of similar complexity. The
usual way is to consider the number of lines of code per "story
point"---if one particular story point requires a lot more lines
than the average, you should want to know why. Perhaps the
implementation team wasn't up to speed, or lacked some vital
information. Or perhaps you defined your story points too
widely. In any case, you would want to do something about it.

FWIW: lines of code per function point is a very good example of
where lines of code is used. If there's too much variation, it
could be an indication of a problem which needs addressing.
Another usual measure is number of errors over lines of code;
too many (say, more than about 1 error per 100,000 lines of
code), and you know that your process needs improving.
(Curiously enough, reducing the number of errors per line of
code almost always ends up reducing the number of lines of code
as well.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 6 '07 #19
James Kanze wrote:
On Aug 5, 10:26 pm, Ian Collins <ian-n...@hotmail.comwrote:
>James Kanze wrote:
>>On Aug 4, 11:30 pm, Ian Collins <ian-n...@hotmail.comwrote:
>>>I don't propose anything, there isn't a simple, accurate way
of measuring the complexity of a C++ application (or the
productivity of a programmer).
>>I don't know that it's necessarily simple, but productivity can
be measured and numerically evaluated. Otherwise, how do you
know whether you're improving your process or not?
>I tend to track productivity the XP way, by tracking the
number of story points completed in an iteration. This gives
a good indication of a team's performance, so it probably
indirectly tracks code complexity as well.

I assume that "story points" is just a new name for the
"function points" that Jerry mentionned. So how do you know
that all of the "story points" are of similar complexity. The
usual way is to consider the number of lines of code per "story
point"---if one particular story point requires a lot more lines
than the average, you should want to know why. Perhaps the
implementation team wasn't up to speed, or lacked some vital
information. Or perhaps you defined your story points too
widely. In any case, you would want to do something about it.
Almost, it's more down to experience, the team knows roughly now many
points a story is worth. If the estimate is more than three, the story
is too complex is has to be broken down. We never really consider lines
of code, more how long it will take to design, test and code.

Another factor that makes lines of code not particularly useful to us is
there tend to be more lines of code in the unit tests than in the
deliverable code.

--
Ian Collins.
Aug 6 '07 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
by: Alex Vinokur | last post by:
Is there any tool to count C-program lines except comments? Thanks, ===================================== Alex Vinokur mailto:alexvn@connect.to http://mathforum.org/library/view/10978.html...
33
by: Xah Lee | last post by:
The Harm of hard-wrapping Lines 20050222 Computing Folks of the industry: please spread the debunking of the truncating line business of the fucking unix-loving fuckheads, as outlines here:...
5
by: Brian | last post by:
Hello all.. Am working on an Air Hockey game... have an table loaded into a picture box. The borders of the table are slightly slanted. Am using hit testing lines with GDI+ to manipulate the...
54
by: MLH | last post by:
I use A97 and do not always insert line numbers while writing procedures. I find it necessary to go back and add them later to aid in debugging. Nearly 3 years ago, something was mentioned in...
4
by: tommcd24 | last post by:
Does anyone know of a utility or VS add-in to count code lines in a project or solution? I just had to provide 50 pages of code for copyright and had initially thought that would be nearly the...
2
by: m00nm0nkey | last post by:
Ok well i thought i'd try a different approach, so what I'm now trying is appending 50,000 lines from the collection to a stringbuilder, and then writing that entire stringbuilder to a file. ...
82
by: Edward Elliott | last post by:
This is just anecdotal, but I still find it interesting. Take it for what it's worth. I'm interested in hearing others' perspectives, just please don't turn this into a pissing contest. I'm in...
11
by: Girish Sahani | last post by:
I wrote the following code to concatenate every 2 keys of a dictionary and their corresponding values. e.g if i have tiDict1 = tiDict1 = {'a':,'b':} i should get tiDict2={'ab':} and similarly for...
7
by: Gustaf | last post by:
Hi all, Just for fun, I'm working on a script to count the number of lines in source files. Some lines are auto-generated (by the IDE) and shouldn't be counted. The auto-generated part of files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.