473,657 Members | 2,513 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Language selection for new projects

Hi

I have used recently for the odd shell scrit hear and there but nothing
really serious.
Software I have previously written has been in VB(urgh) and C++.

I have been thinking of changing my primary development landguage for some
time, this is partly because my software ideally needs to be cross platform
and partly because I feel there must be better cleaner/programmer friendly
languages out there so i have decided to bite the bullit and go for the
switch.

I was going to choose Java, but I like Python.

What are your thoughts on the viability of using Python on a fairly large
projects, I'm talking GUI, RDBMS access, COMMS.

Basically how does the language scale up in terms of portability,
performance, programmr friendliness(in terms of real sized programs not
small scripts) to Java.
My last concern is source code, is there any way to protect it from prying
eyes, obviously Java does have these issues but at least you can byte code
compile it.

Thanks in advance


Jul 18 '05 #1
9 1594
Limey Drink wrote:
...
What are your thoughts on the viability of using Python on a fairly large
projects, I'm talking GUI, RDBMS access, COMMS.
Should be fine.
Basically how does the language scale up in terms of portability,
performance, programmr friendliness(in terms of real sized programs not
small scripts) to Java.
Quite well.
My last concern is source code, is there any way to protect it from prying
eyes, obviously Java does have these issues but at least you can byte code
compile it.


Python doesn't offer anything substantially different from Java here. You
can bytecode-compile things in advance, perhaps encrypt some modules
and decrypt them on the file on import, but it's really no protection --
just like in Java. Face it -- any time you give out executable source, be
it bytecode or machine-specific binary, it's easy to disassemble and crack
it -- game producers do their best to protect their wares, yet warez sites
always have cracks for everything of interest often before the product
they're cracking gets to store shelves -- what makes you think you can do
any better?

In the exceedingly unlikely case you have something really worth protecting,
don't give it out -- keep it as a webservice on a server under YOUR control,
and give out client programs that access this special protected software.
XML-RPC makes this trivial and comes with the standard Python distribution.

This strategy also allows you more flexibility in your business model
(subscription, pay-per-use -- you can enforce these with a web service
deployment, but not really if you distribute all the executable code). This
is reason #1 for the interest in recent years for web services, IMHO.
Alex

Jul 18 '05 #2
Thankyou very much Alex, this is the first time I have attempted to use this
group for information and I am very pleased with the prompt response.

once again thanks

By the way, what do you think to Python with regards to productivity
benefits in general and also in comparison to other languages ?

Thanks

"Alex Martelli" <al*****@yahoo. com> wrote in message
news:lE******** **************@ news1.tin.it...
Limey Drink wrote:
...
What are your thoughts on the viability of using Python on a fairly large projects, I'm talking GUI, RDBMS access, COMMS.
Should be fine.
Basically how does the language scale up in terms of portability,
performance, programmr friendliness(in terms of real sized programs not
small scripts) to Java.


Quite well.
My last concern is source code, is there any way to protect it from prying eyes, obviously Java does have these issues but at least you can byte code compile it.


Python doesn't offer anything substantially different from Java here. You
can bytecode-compile things in advance, perhaps encrypt some modules
and decrypt them on the file on import, but it's really no protection --
just like in Java. Face it -- any time you give out executable source, be
it bytecode or machine-specific binary, it's easy to disassemble and crack
it -- game producers do their best to protect their wares, yet warez sites
always have cracks for everything of interest often before the product
they're cracking gets to store shelves -- what makes you think you can do
any better?

In the exceedingly unlikely case you have something really worth

protecting, don't give it out -- keep it as a webservice on a server under YOUR control, and give out client programs that access this special protected software.
XML-RPC makes this trivial and comes with the standard Python distribution.
This strategy also allows you more flexibility in your business model
(subscription, pay-per-use -- you can enforce these with a web service
deployment, but not really if you distribute all the executable code). This is reason #1 for the interest in recent years for web services, IMHO.
Alex

Jul 18 '05 #3
Limey Drink wrote:
...
Thankyou very much Alex, this is the first time I have attempted to use
this group for information and I am very pleased with the prompt response.

once again thanks
You're welcome.

By the way, what do you think to Python with regards to productivity
benefits in general and also in comparison to other languages ?


Python, in my experience, is the most productive language over its wide
range of optimal applicability. pyrex, a variant of Python which it might
be still a bit too early to consider fully mature enough for production
use, extends Python's applicability to somewhat "lower levels", in a sense.

I have seen people with particularly good mathematical mindsets do wonders
with functional programming languages, but I suspect those who'd be more
productive with those than with Python for typical applications would be a
tiny minority of the population. (This remains to be proven, but as a
working hypothesis it seems quite believable).

If you're after "tinkering" more than "production-level applications", don't
need to consider the issues of group cooperation, or are slowly weaning
yourself from the complexity of perl and don't want the shock of going "cold
turkey" into the simplicity of Python, Ruby may be a good compromise. Perl
itself is too complicated, and other scripting languages (Javascript and
variants, VBScript, bash & variants, PHP, IMHO Tcl too though some Tcl'ers
will disagree, awk, etc) too feeble, to compete for productivity with Ruby
or Python.

Other languages which, depending on cultural background, available
tools, and problem areas, may be competitive with Python include Lisp
(Common, maybe the lesser-known ISO kind, Arc if it ever matures, Scheme,
....), Dylan, Smalltalk -- and no doubt others that I haven't had a chance
to try out yet.

Looking at the kind of languages that currently appear to rule the roost --
C, C++, Java, C#, Visual (and other kinds of) Basic, Object Pascal,
Fortran, Objective C, Ada, Cobol, Eiffel -- it does not seem to me that any
of them can compete in terms of programmer productivity with the ones
listed above (I do not have sufficient experience with _all_ of them to
make this claim substantially stronger; I do have susbtantial experience
with most, and enough acquaintance with all, to hold this opinion rather
strongly) for application areas suitable for the latter (of course, if I
had to code, e.g., a Linux device driver, I _would_ use C -- that's not
within the application areas suitable for the various languages above).
Once-cool weirdish languages such as snobol, icon, etc, should not really
be considered for normal production use.

If one had infinite time, trying out all languages in the world would be
instructive (and, for some, fun). In practice, I would suggest to somebody
who wants to become a professional programmer to start with Python
(easiest to learn, yet powerful enough to be a constant companion
thereafter, whatever kind of programming one does); then add a lower-level
language, and I would suggest C because of its huge importance in both
practical open-source tools and existing literature about programming; then
add a mind-expanding one of the functional variety (I would suggest Haskell,
but some ML variant, or Clean, or Erlang, and others yet, might be favoured
by others); then some Scheme or other Lisp again mostly for instructional
purposes (chiefly to be able to study the great book, now freely available
online, known as SICP -- "Structure and Interpretation of Computer
Programs", by Abelson and Sussman). By the time this course of study was
finished, new languages might well have emerged, of course;-). And, also
of course, non-programming languages and non-languages issue should
also be studied -- relational databases and SQL, XML and related
technologies, networking and protocols, GUIs, algorithms and data
structures... (Python helps a lot in playing around with each of these
other important technologies and concepts, btw).

Somebody who wants to program but doesn't see producing programs as
an end in itself, but just as a means to whatever other ends, might be happy
just with Python (and a little pyrex on the side, perhaps -- but right know
I do not think there are texts to learn pyrex that don't assume you already
know some C) and whatever smattering of other computing technologies
they may happen to need in their application area.
Alex

Jul 18 '05 #4
Alex, I don't know how you find the time to write such detailed replies :-)
but they're very welcome.

I have the book Learning Python, I think its an excellent book for learning
the core language but I have noticed on the O'reilly website a 2nd Edition
being released in December.

Has the core of the language changed very significantly from the version
covered in the first edition of Learning Python ?

By the way, I had no idea of your significance in the Python community,
since I have been looking for more information on Python I have noticed your
name on various books and websites so I appreciate information from a highly
experienced developer like yourself.

I am taking the first steps in developing/architecting quite a large project
and there are a lot of skills I need to aquire and also technologies to
choose for the job, this is not for the benefit of my current employer but
for myself :-) so I have alot of time to mess around and play with different
technologies and I can also actually enjoy writing the software without
silly timescales and sales/marketing types interfering.

Would you mind if I email you in the future if I am really stuck witha
problem ? looool :-)

Thanks again

"Alex Martelli" <al*****@yahoo. com> wrote in message
news:rs******** **************@ news1.tin.it...
Limey Drink wrote:
...
Thankyou very much Alex, this is the first time I have attempted to use
this group for information and I am very pleased with the prompt response.
once again thanks
You're welcome.

By the way, what do you think to Python with regards to productivity
benefits in general and also in comparison to other languages ?


Python, in my experience, is the most productive language over its wide
range of optimal applicability. pyrex, a variant of Python which it might
be still a bit too early to consider fully mature enough for production
use, extends Python's applicability to somewhat "lower levels", in a

sense.
I have seen people with particularly good mathematical mindsets do wonders
with functional programming languages, but I suspect those who'd be more
productive with those than with Python for typical applications would be a
tiny minority of the population. (This remains to be proven, but as a
working hypothesis it seems quite believable).

If you're after "tinkering" more than "production-level applications", don't need to consider the issues of group cooperation, or are slowly weaning
yourself from the complexity of perl and don't want the shock of going "cold turkey" into the simplicity of Python, Ruby may be a good compromise. Perl itself is too complicated, and other scripting languages (Javascript and
variants, VBScript, bash & variants, PHP, IMHO Tcl too though some Tcl'ers
will disagree, awk, etc) too feeble, to compete for productivity with Ruby
or Python.

Other languages which, depending on cultural background, available
tools, and problem areas, may be competitive with Python include Lisp
(Common, maybe the lesser-known ISO kind, Arc if it ever matures, Scheme,
...), Dylan, Smalltalk -- and no doubt others that I haven't had a chance
to try out yet.

Looking at the kind of languages that currently appear to rule the roost -- C, C++, Java, C#, Visual (and other kinds of) Basic, Object Pascal,
Fortran, Objective C, Ada, Cobol, Eiffel -- it does not seem to me that any of them can compete in terms of programmer productivity with the ones
listed above (I do not have sufficient experience with _all_ of them to
make this claim substantially stronger; I do have susbtantial experience
with most, and enough acquaintance with all, to hold this opinion rather
strongly) for application areas suitable for the latter (of course, if I
had to code, e.g., a Linux device driver, I _would_ use C -- that's not
within the application areas suitable for the various languages above).
Once-cool weirdish languages such as snobol, icon, etc, should not really
be considered for normal production use.

If one had infinite time, trying out all languages in the world would be
instructive (and, for some, fun). In practice, I would suggest to somebody who wants to become a professional programmer to start with Python
(easiest to learn, yet powerful enough to be a constant companion
thereafter, whatever kind of programming one does); then add a lower-level
language, and I would suggest C because of its huge importance in both
practical open-source tools and existing literature about programming; then add a mind-expanding one of the functional variety (I would suggest Haskell, but some ML variant, or Clean, or Erlang, and others yet, might be favoured by others); then some Scheme or other Lisp again mostly for instructional
purposes (chiefly to be able to study the great book, now freely available
online, known as SICP -- "Structure and Interpretation of Computer
Programs", by Abelson and Sussman). By the time this course of study was
finished, new languages might well have emerged, of course;-). And, also
of course, non-programming languages and non-languages issue should
also be studied -- relational databases and SQL, XML and related
technologies, networking and protocols, GUIs, algorithms and data
structures... (Python helps a lot in playing around with each of these
other important technologies and concepts, btw).

Somebody who wants to program but doesn't see producing programs as
an end in itself, but just as a means to whatever other ends, might be happy just with Python (and a little pyrex on the side, perhaps -- but right know I do not think there are texts to learn pyrex that don't assume you already know some C) and whatever smattering of other computing technologies
they may happen to need in their application area.
Alex

Jul 18 '05 #5
I can't compete with Alex for credibility, but for WIW -- Python and C
are your best bet. Python for high-level productivity, C for
interfacing with drivers, low-level libs, optimization, and so on.
Pyrex may be relevant in the future but I do not consider it mature
enough to trust on a biggish project.

Python + C will give you a very wide spread of capabilities. The
learning curve is at least 1/2 that of C/C++, possibly 1/3 or 1/4.
C++ in my experience is a 2-3 year trek to get to a productive level.
C is about a year, and Python is a few months.

YMMV - smy

"Limey Drink" <bh******@bhick ing.plus.com> wrote in message news:<Ze******* *************@w ards.force9.net >...
Alex, I don't know how you find the time to write such detailed replies :-)
but they're very welcome.

I have the book Learning Python, I think its an excellent book for learning
the core language but I have noticed on the O'reilly website a 2nd Edition
being released in December.

Has the core of the language changed very significantly from the version
covered in the first edition of Learning Python ?

By the way, I had no idea of your significance in the Python community,
since I have been looking for more information on Python I have noticed your
name on various books and websites so I appreciate information from a highly
experienced developer like yourself.

I am taking the first steps in developing/architecting quite a large project
and there are a lot of skills I need to aquire and also technologies to
choose for the job, this is not for the benefit of my current employer but
for myself :-) so I have alot of time to mess around and play with different
technologies and I can also actually enjoy writing the software without
silly timescales and sales/marketing types interfering.

Would you mind if I email you in the future if I am really stuck witha
problem ? looool :-)

Thanks again

"Alex Martelli" <al*****@yahoo. com> wrote in message
news:rs******** **************@ news1.tin.it...
Limey Drink wrote:
...
Thankyou very much Alex, this is the first time I have attempted to use
this group for information and I am very pleased with the prompt response.
once again thanks


You're welcome.

By the way, what do you think to Python with regards to productivity
benefits in general and also in comparison to other languages ?


Python, in my experience, is the most productive language over its wide
range of optimal applicability. pyrex, a variant of Python which it might
be still a bit too early to consider fully mature enough for production
use, extends Python's applicability to somewhat "lower levels", in a

sense.

I have seen people with particularly good mathematical mindsets do wonders
with functional programming languages, but I suspect those who'd be more
productive with those than with Python for typical applications would be a
tiny minority of the population. (This remains to be proven, but as a
working hypothesis it seems quite believable).

If you're after "tinkering" more than "production-level applications",

don't
need to consider the issues of group cooperation, or are slowly weaning
yourself from the complexity of perl and don't want the shock of going

"cold
turkey" into the simplicity of Python, Ruby may be a good compromise.

Perl
itself is too complicated, and other scripting languages (Javascript and
variants, VBScript, bash & variants, PHP, IMHO Tcl too though some Tcl'ers
will disagree, awk, etc) too feeble, to compete for productivity with Ruby
or Python.

Other languages which, depending on cultural background, available
tools, and problem areas, may be competitive with Python include Lisp
(Common, maybe the lesser-known ISO kind, Arc if it ever matures, Scheme,
...), Dylan, Smalltalk -- and no doubt others that I haven't had a chance
to try out yet.

Looking at the kind of languages that currently appear to rule the

roost --
C, C++, Java, C#, Visual (and other kinds of) Basic, Object Pascal,
Fortran, Objective C, Ada, Cobol, Eiffel -- it does not seem to me that

any
of them can compete in terms of programmer productivity with the ones
listed above (I do not have sufficient experience with _all_ of them to
make this claim substantially stronger; I do have susbtantial experience
with most, and enough acquaintance with all, to hold this opinion rather
strongly) for application areas suitable for the latter (of course, if I
had to code, e.g., a Linux device driver, I _would_ use C -- that's not
within the application areas suitable for the various languages above).
Once-cool weirdish languages such as snobol, icon, etc, should not really
be considered for normal production use.

If one had infinite time, trying out all languages in the world would be
instructive (and, for some, fun). In practice, I would suggest to

somebody
who wants to become a professional programmer to start with Python
(easiest to learn, yet powerful enough to be a constant companion
thereafter, whatever kind of programming one does); then add a lower-level
language, and I would suggest C because of its huge importance in both
practical open-source tools and existing literature about programming;

then
add a mind-expanding one of the functional variety (I would suggest

Haskell,
but some ML variant, or Clean, or Erlang, and others yet, might be

favoured
by others); then some Scheme or other Lisp again mostly for instructional
purposes (chiefly to be able to study the great book, now freely available
online, known as SICP -- "Structure and Interpretation of Computer
Programs", by Abelson and Sussman). By the time this course of study was
finished, new languages might well have emerged, of course;-). And, also
of course, non-programming languages and non-languages issue should
also be studied -- relational databases and SQL, XML and related
technologies, networking and protocols, GUIs, algorithms and data
structures... (Python helps a lot in playing around with each of these
other important technologies and concepts, btw).

Somebody who wants to program but doesn't see producing programs as
an end in itself, but just as a means to whatever other ends, might be

happy
just with Python (and a little pyrex on the side, perhaps -- but right

know
I do not think there are texts to learn pyrex that don't assume you

already
know some C) and whatever smattering of other computing technologies
they may happen to need in their application area.
Alex

Jul 18 '05 #6
"Limey Drink" <bh******@bhick ing.plus.com> wrote in message news:<Ze******* *************@w ards.force9.net >...
Alex, I don't know how you find the time to write such detailed replies :-)
but they're very welcome.
Oh, that's not Alex himself writing these... He's programmed a bot to
do that ;-)

I have the book Learning Python, I think its an excellent book for learning
the core language but I have noticed on the O'reilly website a 2nd Edition
being released in December.

Has the core of the language changed very significantly from the version
covered in the first edition of Learning Python ?


Everything in the first edition is still valid; the core has been
extended enough, however, that a new up-to-date edition is definitely
a good thing.

--
Christopher
Jul 18 '05 #7
Limey Drink wrote:
Alex, I don't know how you find the time to write such detailed replies
:-) but they're very welcome.
Glad to be of help.

I have the book Learning Python, I think its an excellent book for
learning the core language but I have noticed on the O'reilly website a
2nd Edition being released in December.

Has the core of the language changed very significantly from the version
covered in the first edition of Learning Python ?
Yes, the current Python (2.3) is substantially larger, even at its "core",
than the 1.5.2 version described in the current (old) edition of "Learning
Python". The effect of some additions has been to marginalize idioms and
techniques previously prominent. In particular, list comprehensions have
further marginalized lambda, map, reduce, filter; the apply built-in is
basically obsolete thanks to the *args and **kwds forms of argument
passing in function calls; nested lexical scopes make the good old idea
of "foo=foo" ``default arguments'' used for name injection into inner
scopes somewhat quaint and of little practical interest; ... Not to
mention the reorganization of OO into "new-style classes", a much clearer
and simpler systematization than the "classic classes" that also remain
in the language (and indeed are the default, for backwards compatibility).

To teach the language today, one does not want to dwell on the way the
language was five years ago, and on features that remain in the language
just because of backwards compatibility constraints. The parts of the
language that you should normally use in writing new code are in fact no
larger than the ones you should have used in Python 1.5.2 -- but they
ARE different to some measurable extent, say (hard to gauge) with some
75% overlap and 25% difference. One day, when we can break _some_
backwards compatibility -- presumably at the release of 3.0, maybe 3
years from now -- many of the "just backwards compatiiblity" ideas will
be deprecated or removed; Guido van Rossum is on record as saying that
3.0 will be about simplification and getting back to "one obvious way
to do it", removing "legacy", backwards-compatibility-only stuff.

Would you mind if I email you in the future if I am really stuck witha
problem ? looool :-)


Actually, I would: I prefer to discuss things on the newsgroup, since
this way one gets the benefit of multiple voices. No single "expert"
has ALL the answers (not even me, nach!), and the give-and-take of
debate here often proves more productive than just getting some single
oracular response would. Further, discussion here can benefit others
beyond the single person who's posing a question, so there are larger
returns for the same amount of effort.
Alex

Jul 18 '05 #8
In article <rd************ **********@news 2.tin.it>,
Alex Martelli <al***@aleax.it > wrote:
Jul 18 '05 #9
Alex Martellibot ? :-)
Would you mind if I email you in the future if I am really stuck witha
problem ? looool :-)


Actually, I would: I prefer to discuss things on the newsgroup, since
this way one gets the benefit of multiple voices. No single "expert"
has ALL the answers (not even me, nach!), and the give-and-take of
debate here often proves more productive than just getting some single
oracular response would. Further, discussion here can benefit others
beyond the single person who's posing a question, so there are larger
returns for the same amount of effort.


Actually, I completely agree with this, I think I said this before I
actually thought about it, there has been such an excellent response to my
queries on here already for me to realize I would not be gaining anything
from speaking to you directly, also as you pointed out other people can
benefit from the input too :-), just as I have benefitted from the responses
to posts by other Python users on here.

Thanks


Jul 18 '05 #10

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

Similar topics

33
3962
by: Joe Cheng | last post by:
I'm curious about something... many Artima.com members who have a Java background and learned Python have come to the conclusion that Java and Python are highly complimentary languages. They would never consider filling the place Java has in their toolbox with Python, but recognize there are many tasks where it really pays to add Python to the mix. I want to ask you hard-core c.l.p Pythonistas: Do you use Python for everything? (and...
7
6279
by: damjanu | last post by:
Hi All; I need little help. I have a datasheet form. I allow user to do 'filter by selection'. My form contains a column with values. As user changes selections, I want to calculate totals. I can do this the first time the form loads.
3
2200
by: Antoine Janssen | last post by:
hi, I would like to create two combo boxes. In the first one you can select a user in the second one you can select a project. To simplify the selection i would like to shorten the project list by just presenting the projects the selected user is working on (using a where clause with the userid filled in). Does onyone know how to achieve this? Kind Regards,
4
1412
by: KitKat | last post by:
Problem trying to figure this out, using a combo box selection I need to go to each folder, Cam 1, Cam 2, Cam 4, Cam 6, Cam 7,and Cam 8 and display each picture (from selection) from each folder and display in pictureboxes pcbCam1, pcbCam2, pcbCam4, pcbCam6, pcbCam7, and pcbCam8. So far the code works for one picture box not the others. Also when I reenter a different date the counter (+1) messes up....HELP
0
1134
by: thusnani | last post by:
Hopefully someone can help me out with this situation. Im working with a form that inputs the hours an employee works on certain projects and general admin categories per week. Right now i have two list boxes that display the projects and general admin categories, each of which have an extended multi select. I want to make some sort of button which generates just a list of
11
1834
by: Xah Lee | last post by:
Of interest: • The Semicolon Wars, by Brian Hayes. 2006. http://www.americanscientist.org/template/AssetDetail/assetid/51982 in conjunction to this article, i recommend: • Software Needs Philosophers, by Steve Yegge, 2006 http://xahlee.org/Periodic_dosage_dir/_p/software_phil.html
10
10772
by: Immortalist | last post by:
Various aquisition devices that guide learning along particular pathways towards human biases. And as E.O. Wilson might say mental development appears to be genetically constrained. (1) Language Aquisition Device (2) Color Aqusition Device (3) Sound Aquistion Device (4) Smell Aquisition Device (5) Touch Aquisition Device (6) Art Aquisition Device
7
1892
by: ThunderMusic | last post by:
Hi, Ok, I find myself having a lot of troubles with URL Rewriting and I've seen on the net that in some situations, indexers have difficulty indexing sites because of some flaws in the url rewriting mecanism... Does anybody have a solution to my problem? I mean, I want to be able to localize my web site without having to dupplicate all the pages in 2-3 (fr, en, sp(optional)) directories and so the indexers can index the right content...
1
5176
by: Gerardo ARnaez | last post by:
Hi. I am writing a program to help determine coumadin regimens to look at the code: http://sourceforge.net/projects/coumadinregimen/ The issue is that I have a variable that I want the use to select if they don't like the default. I have made this as a listbox widget The rest of the gui is just entry widgets
0
8325
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8844
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8742
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8518
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8621
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7354
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6177
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.