473,406 Members | 2,633 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,406 software developers and data experts.

If Else format

On page 90 of my O'Reilly "Javascript The definitive guide" 3rd edition
there is an example of an If/Else construct: (some text removed)

If (username != null)
alert("Hello " + username);
else {
username = prompt("What is your name?");
alert("Hello " + username);
}
Should I erase the first ";" from the second line?

It certainly works better in my tests that way, but I don't know if this
is an error in the book, a change in the way JavaScript works, or a flaw
in my browser.

--
Steve Swift
http://www.swiftys.org.uk/swifty.html
http://www.ringers.org.uk
Sep 19 '08 #1
21 2626

Steve Swift schreef:
On page 90 of my O'Reilly "Javascript The definitive guide" 3rd edition
there is an example of an If/Else construct: (some text removed)

If (username != null)
alert("Hello " + username);
else {
username = prompt("What is your name?");
alert("Hello " + username);
}
Should I erase the first ";" from the second line?
No. Why should you?
It is the end of a command, and for clarities sake, use a semicolon.
>
It certainly works better in my tests that way, but I don't know if this
is an error in the book, a change in the way JavaScript works, or a flaw
in my browser.
How does it work better without the semicolon???

Erwin Moller

--
============================
Erwin Moller
Now dropping all postings from googlegroups.
Why? http://improve-usenet.org/
============================
Sep 19 '08 #2
On Sep 19, 8:17*am, Steve Swift <Steve.J.Sw...@gmail.comwrote:
On page 90 of my O'Reilly "Javascript The definitive guide" 3rd edition
there is an example of an If/Else construct: (some text removed)

If (username != null)
* *alert("Hello " + username);
else {
* *username = prompt("What is your name?");
* *alert("Hello " + username);

}

Should I erase the first ";" from the second line?
I'd wrap that alert in curly braces:

If (username != null) {
alert("Hello " + username);
} else {
username = prompt("What is your name?");
alert("Hello " + username);
}

--
Jorge.
Sep 19 '08 #3
SAM
Steve Swift a écrit :
On page 90 of my O'Reilly "Javascript The definitive guide" 3rd edition
there is an example of an If/Else construct: (some text removed)

If (username != null)
no ... : if ( blah )
(lowercase)
alert("Hello " + username);
else {
username = prompt("What is your name?");
alert("Hello " + username);
}
Should I erase the first ";" from the second line?
The ';' in end of line is optional in JS
function hello() {
if(typeof username == 'undefined' || username == null)
username = prompt('What is your name?')
alert('Hello ' + username)
}

works as well as :

function hello() {
if(typeof username == 'undefined' || username == null) {
username = prompt('What is your name?');
}
alert('Hello ' + username);
}

But ... it's much better to code correctly.

--
sm
Sep 19 '08 #4
Jorge wrote:
I'd wrap that alert in curly braces:

If (username != null) {
alert("Hello " + username);
} else {
username = prompt("What is your name?");
alert("Hello " + username);
}
Yes, but those curly braces are redundant in the case of the single
statement above, and in the example. And your ";" is now inside the
curly braces, so terminating the alert() statement. In my O'Reilly book,
it seems to be terminating the "If" statement.

My difficulty is that I don't know if an if/else combination is a single
statement (in which case the ";" shouldn't have been in the example) or
two separate statements (in which case I'm wondering why it doesn't work
in any browser that I've tried).

The evidence is stacked heavily in favour of an error in the book, but
stranger things have happened.

--
Steve Swift
http://www.swiftys.org.uk/swifty.html
http://www.ringers.org.uk
Sep 19 '08 #5
Steve Swift wrote on 19 sep 2008 in comp.lang.javascript:
Jorge wrote:
>I'd wrap that alert in curly braces:

If (username != null) {
alert("Hello " + username);
} else {
username = prompt("What is your name?");
alert("Hello " + username);
}

Yes, but those curly braces are redundant in the case of the single
statement above, and in the example. And your ";" is now inside the
curly braces, so terminating the alert() statement. In my O'Reilly
book, it seems to be terminating the "If" statement.
Don't take O'Reilly as a standard.
Perhaps do not use it at all.
My difficulty is that I don't know if an if/else combination is a
single statement (in which case the ";" shouldn't have been in the
example) or two separate statements (in which case I'm wondering why
it doesn't work in any browser that I've tried).
No, the Q is if the

alert("Hello " + username);

is a single statement.
The evidence is stacked heavily in favour of an error in the book, but
stranger things have happened.
No, that is not strange, the archive of this NG reports many such errors.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Sep 19 '08 #6
On Fri, 19 Sep 2008 07:17:31 +0100, Steve Swift wrote:
On page 90 of my O'Reilly "Javascript The definitive guide" 3rd edition
there is an example of an If/Else construct: (some text removed)

If (username != null)
alert("Hello " + username);
else {
username = prompt("What is your name?"); alert("Hello " + username);
}
I think that just about everyone in this group will agree with the
recommendation of: Always use {} in ifs and loops.

Just solves a lot of headaches.

if (username != null)
alert("Hello " + username);
else
username = prompt("What is your name?"); alert("Hello " + username);

is actually the same as:

if (username != null) {
alert("Hello " + username);
} else {
username = prompt("What is your name?");
}
alert("Hello " + username);

and
if (username != null)
alert("Hello " + username)
;
else
username = prompt("What is your name?"); alert("Hello " + username);

is the same as:
if (username != null) {
alert("Hello " + username);
}
;
else {
username = prompt("What is your name?"); alert("Hello " + username);
}

Sep 19 '08 #7
On 2008-09-20 01:45, Jeremy J Starcher wrote:
I think that just about everyone in this group will agree with the
recommendation of: Always use {} in ifs and loops.
No argument there.
if (username != null)
alert("Hello " + username)
;
else
username = prompt("What is your name?"); alert("Hello " + username);

is the same as:
if (username != null) {
alert("Hello " + username);
}
;
else {
username = prompt("What is your name?"); alert("Hello " + username);
}
.... but argument here.

Your second example is a syntax error, and thus not the same as the
first. You can omit the curly braces if - and ONLY if - they contain
only a single statement or expression. If you do use the braces, you
cannot insert anything between the closing curly of the if-branch and
"else" (except for comments and an optional "else if" branch, of
course), not even an empty statement like ";".

To answer the OP's question,

| In my O'Reilly book, it seems to be terminating the "If" statement.

It does not. This is a special syntactic case in which you're allowed to
leave the curly braces out, for one branch, but that doesn't mean that's
the end of the conditional statement.

When you're in doubt, always use curly braces. Even when there are no
doubts - you don't really save a lot of space when you write

if (condition)
do_something();
else
eh_dont();

instead of

if (condition) {
do_something();
} else {
eh_dont();
}

In my personal opinion, the only time when omitting the curlies is OK is
when you're doing something like this:

if (flag_blah) arg += 1;
if (flag_bloh) arg += 2;
if (flag_blim) arg += 4;

Anything more complicated than that - use curlies. And by the way,
always use the semicolon too, even if it's not technically necessary.
- Conrad
Sep 20 '08 #8
Jeremy J Starcher wrote on 20 sep 2008 in comp.lang.javascript:
I think that just about everyone in this group will agree with the
recommendation of: Always use {} in ifs and loops.
I think not.

It depends on the complexity, the need for change by others, and most
important the mood of the programmer, "you" or "me".

Moreover I think "think that just about everyone in this group" is
incorrect, because you did not research it with an open Q,
and even then most will not bother to answer, as it is just their own
business.

Why not simply say you personally recommmend the use of {},
in stead of surmizing uncoroborated facts?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Sep 20 '08 #9
On Sep 20, 3:50*am, Conrad Lender <crlen...@yahoo.comwrote:
In my personal opinion, the only time when omitting the curlies
is OK is when you're doing something like this:

if (flag_blah) arg += 1;
if (flag_bloh) arg += 2;
if (flag_blim) arg += 4;

Anything more complicated than that - use curlies.(...)
Geekish (?) :

javascript:if (1) alert('1'), alert('2');
javascript:if (0) alert('1'); alert('2');

.... or evil ?

Predictable :

javascript:if (1) { alert('1'), alert('2'); }
javascript:if (0) { alert('1'); alert('2'); }

I always use {}.

--
Jorge.
Sep 20 '08 #10
Evertjan. wrote:
Jeremy J Starcher wrote on 20 sep 2008 in comp.lang.javascript:
>I think that just about everyone in this group will agree with the
recommendation of: Always use {} in ifs and loops.

I think not.

It depends on the complexity, the need for change by others, and most
important the mood of the programmer, "you" or "me".

Moreover I think "think that just about everyone in this group" is
incorrect, because you did not research it with an open Q,
and even then most will not bother to answer, as it is just their own
business.

Why not simply say you personally recommmend the use of {},
in stead of surmizing uncoroborated facts?
You have an interesting opinion.

I believe that Jeremy expressed a useful opinion.

If I say :

1) ' My opinion is A, and I believe the frequency of this
opinion is B % among group G'

then I transmit more information about my opinions than

2) 'My opinion is A'

If we allow beliefs and opinions here, why should we not
allow expressing beliefs about frequencies, probabilities, numbers?

I agree with Jeremy, using common human language,
not syntactically strict
computer language as in some standards:

' I also believe that almost all in
this group think it is good recommendation to use {} in ifs and loops'.

If one puts a socially blind syntax checker robot to find errors in
the above statement, one gets a long list of error messages.



Sep 20 '08 #11
> if (username != null)
> alert("Hello " + username)
;
else
username = prompt("What is your name?"); alert("Hello " +
username);

is the same as:
if (username != null) {
alert("Hello " + username);
}
;
else {
username = prompt("What is your name?"); alert("Hello " +
username);
}

... but argument here.

Your second example is a syntax error, and thus not the same as the
first. You can omit the curly braces if - and ONLY if - they contain
only a single statement or expression. If you do use the braces, you
cannot insert anything between the closing curly of the if-branch and
"else" (except for comments and an optional "else if" branch, of
course), not even an empty statement like ";".
Ouch, mis-understood the specs on that one.
Sep 20 '08 #12
optimistx wrote on 20 sep 2008 in comp.lang.javascript:
Evertjan. wrote:
>Jeremy J Starcher wrote on 20 sep 2008 in comp.lang.javascript:
>>I think that just about everyone in this group will agree with the
recommendation of: Always use {} in ifs and loops.

I think not.

It depends on the complexity, the need for change by others, and most
important the mood of the programmer, "you" or "me".

Moreover I think "think that just about everyone in this group" is
incorrect, because you did not research it with an open Q,
and even then most will not bother to answer, as it is just their own
business.

Why not simply say you personally recommmend the use of {},
in stead of surmizing uncoroborated facts?

You have an interesting opinion.

I believe that Jeremy expressed a useful opinion.

If I say :

1) ' My opinion is A, and I believe the frequency of this
opinion is B % among group G'

then I transmit more information about my opinions than

2) 'My opinion is A'

If we allow beliefs and opinions here, why should we not
allow expressing beliefs about frequencies, probabilities, numbers?

I agree with Jeremy, using common human language,
not syntactically strict
computer language as in some standards:

' I also believe that almost all in
this group think it is good recommendation to use {} in ifs and loops'.
You miss the word "all".

Then he could be wrong,
and he is wrong, in my view.
If one puts a socially blind syntax checker robot to find errors in
the above statement, one gets a long list of error messages.


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Sep 21 '08 #13
optimistx wrote on 21 sep 2008 in comp.lang.javascript:
>>>>I think that just about everyone in this group will agree with the
recommendation of: Always use {} in ifs and loops.
...
>>' I also believe that almost all in
this group think it is good recommendation to use {} in ifs and
loops'.

You miss the word "all".

Then he could be wrong,
and he is wrong, in my view.

all? Where?
.... good recommendation to use {} in ALL ifs and loops' ...

I do not agree with that.
'about everyone' might not be correct official English, but I
as a foreigner understand that meaning 'almost all'. And how many
percent of all that might be? at least 51%? at least 75 %? at least 90%?
You were on the wrong track.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Sep 21 '08 #14
Evertjan. wrote:
optimistx wrote on 21 sep 2008 in comp.lang.javascript:
....
... good recommendation to use {} in ALL ifs and loops' ...

I do not agree with that.
>'about everyone' might not be correct official English, but I
as a foreigner understand that meaning 'almost all'. And how many
percent of all that might be? at least 51%? at least 75 %? at least
90%?

You were on the wrong track.
Yes, I was, thanks for the correction.

If we consider everyday language expression

'...good recommendation to use {} in all ifs and loops'

we may ask :' if it is not a good recommendation, what is it? Bad?'.

http://jslint.com recommends:

--- start of quote ---
'
Required Blocks
JSLint expects that if and for statements will be made with blocks {that is,
with statements enclosed in braces}.

JavaScript allows an if to be written like this:

if (condition)
statement;That form is known to contribute to mistakes in projects where
many programmers are working on the same code. That is why JSLint expects
the use of a block:

if (condition) {
statements;
}Experience shows that this form is more resilient.'

---end of quote ---

and I believe that this IS a good recommendation and I believe most other
writers in this newsgroup agree with that :).


Sep 21 '08 #15
optimistx wrote on 21 sep 2008 in comp.lang.javascript:
Evertjan. wrote:
>optimistx wrote on 21 sep 2008 in comp.lang.javascript:
...
>... good recommendation to use {} in ALL ifs and loops' ...

I do not agree with that.
>>'about everyone' might not be correct official English, but I
as a foreigner understand that meaning 'almost all'. And how many
percent of all that might be? at least 51%? at least 75 %? at least
90%?

You were on the wrong track.

Yes, I was, thanks for the correction.

If we consider everyday language expression

'...good recommendation to use {} in all ifs and loops'

we may ask :' if it is not a good recommendation, what is it? Bad?'.

http://jslint.com recommends:

--- start of quote ---
'
Required Blocks
JSLint expects that if and for statements will be made with blocks
{that is, with statements enclosed in braces}.

JavaScript allows an if to be written like this:

if (condition)
statement;That form is known to contribute to mistakes in projects
where
many programmers are working on the same code. That is why JSLint
expects the use of a block:

if (condition) {
statements;
}Experience shows that this form is more resilient.'

---end of quote ---
The idea's or experiences of jslint do not prove anything.

I concede it is more resilient,
but that does not warrant a general advisory rule.

Example:

Not using javascript is very resilient.
It even is a good advice in cases where html only get you as or more
easily to the same end.
and I believe that this IS a good recommendation and I believe most
other writers in this newsgroup agree with that :).
I do not attack your believes. I attack the advice with "always".
I think it is wrong to advice such semantics.

Example:

I love nicely indented code,
but there are situations it does not add to the usefullness,
but instead is even harmfull.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Sep 21 '08 #16
Evertjan. meinte:
Example:

I love nicely indented code,
but there are situations it does not add to the usefullness,
but instead is even harmfull.
Harmful? When?

And what are the advantages of not using curly braces - apart from
saving say 4 to 5 bytes each time they are omitted?

Gregor
--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Sep 22 '08 #17

Evertjan. schreef:
optimistx wrote on 21 sep 2008 in comp.lang.javascript:
>Evertjan. wrote:
>>optimistx wrote on 21 sep 2008 in comp.lang.javascript:
...
>>... good recommendation to use {} in ALL ifs and loops' ...

I do not agree with that.

'about everyone' might not be correct official English, but I
as a foreigner understand that meaning 'almost all'. And how many
percent of all that might be? at least 51%? at least 75 %? at least
90%?
You were on the wrong track.
Yes, I was, thanks for the correction.

If we consider everyday language expression

'...good recommendation to use {} in all ifs and loops'

we may ask :' if it is not a good recommendation, what is it? Bad?'.

http://jslint.com recommends:

--- start of quote ---
'
Required Blocks
JSLint expects that if and for statements will be made with blocks
{that is, with statements enclosed in braces}.

JavaScript allows an if to be written like this:

if (condition)
statement;That form is known to contribute to mistakes in projects
where
many programmers are working on the same code. That is why JSLint
expects the use of a block:

if (condition) {
statements;
}Experience shows that this form is more resilient.'

---end of quote ---

The idea's or experiences of jslint do not prove anything.

I concede it is more resilient,
but that does not warrant a general advisory rule.

Example:

Not using javascript is very resilient.
It even is a good advice in cases where html only get you as or more
easily to the same end.
>and I believe that this IS a good recommendation and I believe most
other writers in this newsgroup agree with that :).

I do not attack your believes. I attack the advice with "always".
I think it is wrong to advice such semantics.

Example:

I love nicely indented code,
but there are situations it does not add to the usefullness,
but instead is even harmfull.
Oh come on, this is a nondiscussion.

I'll settle it for you, once and for all ;-)

1) Always use {} for all your logical block (if/then/else, foreach, etc)
2) Always end a command with semicolon ;

That way your code is understandable (syntaxwise) for any other programmer.

IMHO it is a designmistake that {} and ; are allowed to be omitted in
certain situations.

Erwin Moller

--
============================
Erwin Moller
Now dropping all postings from googlegroups.
Why? http://improve-usenet.org/
============================
Sep 22 '08 #18
On Sep 22, 7:56*am, Erwin Moller
<Since_humans_read_this_I_am_spammed_too_m...@spam yourself.comwrote:
I'll settle it for you, once and for all ;-)

1) Always use {} for all your logical block (if/then/else, foreach, etc)
2) Always end a command with semicolon ;

That way your code is understandable (syntaxwise) for any other programmer.

IMHO it is a designmistake that {} and ; are allowed to be omitted in
certain situations.

Yes, I agree completely. Unfortunately, at my shop, we have tons on
ASP pages ('mixin' of server-side VBScript and client-side JScript)
where not one semicolon can be found.

However, now that we've decided that {} should always be used, we need
to decide where. Should the opening curly bracket be on the same line
as the conditional,function etc. or on the next line?

if (blah) {
}

or

if (blah)
{
}

The readability of the second case is considered superior, however in
some cases it can cause program errors. As Crockford points out in
"javascript: The Good Parts",

return
{
status: true
};

returns undefined, whereas

return {
status: true
};

returns true.
Bob
Sep 22 '08 #19
On Sep 22, 2:34 pm, beegee wrote:
<snip>
if (blah) {

}

or

if (blah)
{

}

The readability of the second case is considered superior,
<snip>

Not universally. Personally I find the first more readable.

I would want to see any instance on one or the other (and/or the other
variations) accompanied by some genuine (peer reviewed) research into
their relative readabilities. Otherwise it is just personal opinion.

(I also _always_ put braces around if/else, with, while, do and for
blocks regardless of whether they are strictly required.)
Sep 22 '08 #20
beegee wrote:
On Sep 22, 7:56 am, Erwin Moller
<Since_humans_read_this_I_am_spammed_too_m...@spam yourself.comwrote:
>I'll settle it for you, once and for all ;-)

1) Always use {} for all your logical block (if/then/else, foreach, etc)
2) Always end a command with semicolon ;

That way your code is understandable (syntaxwise) for any other programmer.

IMHO it is a designmistake that {} and ; are allowed to be omitted in
certain situations.

Yes, I agree completely. Unfortunately, at my shop, we have tons on
ASP pages ('mixin' of server-side VBScript and client-side JScript)
where not one semicolon can be found.
Non sequitur. ASP is an (IIS-based) application framework that supports
both VBScript and JScript, among other programming languages. In VBScript,
a semicolon is a syntax error, and there are no braces.
However, now that we've decided that {} should always be used, we need
to decide where. Should the opening curly bracket be on the same line
as the conditional,function etc. or on the next line?
A matter of taste and teamwork.
if (blah) {
}

or

if (blah)
{
}

The readability of the second case is considered superior, however in
some cases it can cause program errors. As Crockford points out in
"javascript: The Good Parts",

return
{
status: true
};

returns undefined, whereas

return {
status: true
};

returns true.
You (and Douglas) would need to recognize the difference between a block
statement and an Object initializer; here, the latter is meant (else it
would be a syntax error). Writing the braces for the former on their own
line always, and for the latter not, helps to see that difference. This is
also how I recommend to make the difference between function statements and
function expressions:

function foo()
{
// ...
}

but

var bar = function baz() {
// ...
};

foobar(
/x/,
function baz() {
// ...
});
HTH

PointedEars
--
realism: HTML 4.01 Strict
evangelism: XHTML 1.0 Strict
madness: XHTML 1.1 as application/xhtml+xml
-- Bjoern Hoehrmann
Sep 22 '08 #21
On Sep 22, 1:00*pm, Thomas 'PointedEars' Lahn <PointedE...@web.de>
wrote:
Non sequitur. *ASP is an (IIS-based) application framework that supports
both VBScript and JScript, among other programming languages. *In VBScript,
a semicolon is a syntax error, and there are no braces.
Could have sworn I implied that if not actually said that.
>...Writing the braces for the former on their own
line always, and for the latter not, helps to see that difference. *This is
also how I recommend to make the difference between function statements and
function expressions:

* function foo()
* {
* * // ...
* }

but

* var bar = function baz() {
* * // ...
* };

* foobar(
* * /x/,
* * function baz() {
* * * // ...
* * });

Good suggestion. Thanks.

Bob
Sep 23 '08 #22

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

Similar topics

1
by: Chris | last post by:
Sorry to post so much code all at once but I'm banging my head against the wall trying to get this to work! Does anyone have any idea where I'm going wrong? Thanks in advance and sorry again...
3
by: spacemancw | last post by:
I'm reading an article on MySQL/PHP at http://hotwired.lycos.com/webmonkey/99/21/index3a_page4.html?tw=programming It's very good for me starting out but I have a question. I'm using OS X...
0
by: Arnaud | last post by:
Hi, I'm trying to resample a bmp image, i don't control this format, it seems the gd lib doesn't support this one, wbmp is supported (wireless format), but not traditional .bmp files. I found...
13
by: lucanos | last post by:
Hey All, Just wondering whether there is an abbreviated "If - Then - Else" format in PHP, much like that possible in JavaScript. JavaScript allows an abbreviated version in the following...
2
by: turtle | last post by:
I am having a hard time doing the following in a query. I need my field "EarnedValue" to return the result depending on other fields. The code in VB would look like this: If > 0 and =...
6
by: jstaggs39 | last post by:
I want to create a Dcount and an If...Then...Else statement to count the number of records in a table based on the date that is entered to run the form. The If....Else statment comes in because if...
11
by: Grumble | last post by:
Hello, I have the following structure: struct foo { char *format; /* format string to be used with printf() */ int nparm; /* number of %d specifiers in the format string */ /* 0 <= nparm <=...
11
by: Ken Fine | last post by:
I am using VS.NET 2008 and like it a lot. One of the very few things I don't like is a bug that seems to spawn literally thousands of   strings, one after the other, on design view changes....
2
by: shanazzle | last post by:
i have to do a project outlined at this link: http://pages.cpsc.ucalgary.ca/~schock/wiki/index.php/F07_CPSC_217_A2 im currently doing part 2, involving searching for information from a cat data...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
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.