473,386 Members | 1,796 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,386 software developers and data experts.

Executing a command line applications...

Can someone give me some sample code on how one would go about executing a
command line "command" from within an ASP form?

We need to run an application called GnuPG which allows us to encrypt an
email.

Preferably some documentation directly on this would be good but any other
docuemtnation on executing a command line "command" would be great!

Thanks,

Brad
Jul 19 '05 #1
18 2220
Take a look at the .Run method of the WScript.Shell method in the Microsoft
Windows Scripting Host documentation.
(http://www.microsoft.com/downloads/d...6-1C4099D7BBB9)

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:er*************@TK2MSFTNGP10.phx.gbl...
Can someone give me some sample code on how one would go about executing a
command line "command" from within an ASP form?

We need to run an application called GnuPG which allows us to encrypt an
email.

Preferably some documentation directly on this would be good but any other
docuemtnation on executing a command line "command" would be great!

Thanks,

Brad

Jul 19 '05 #2
This will work in an ASP script? ( I know nothing about ASP) I am getting
this documetnation for someone who only knows a bit more than me!!!

Thanks,

Brad
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:O%****************@TK2MSFTNGP15.phx.gbl...
Take a look at the .Run method of the WScript.Shell method in the Microsoft Windows Scripting Host documentation.
(http://www.microsoft.com/downloads/d...2C48-207D-4BE1
-8A76-1C4099D7BBB9)
Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:er*************@TK2MSFTNGP10.phx.gbl...
Can someone give me some sample code on how one would go about executing a command line "command" from within an ASP form?

We need to run an application called GnuPG which allows us to encrypt an
email.

Preferably some documentation directly on this would be good but any other docuemtnation on executing a command line "command" would be great!

Thanks,

Brad


Jul 19 '05 #3
yes

"Brad Pears" <do********@notreal.com> wrote in message
news:%2***************@tk2msftngp13.phx.gbl...
This will work in an ASP script? ( I know nothing about ASP) I am getting
this documetnation for someone who only knows a bit more than me!!!

Thanks,

Brad
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:O%****************@TK2MSFTNGP15.phx.gbl...
Take a look at the .Run method of the WScript.Shell method in the

Microsoft
Windows Scripting Host documentation.

(http://www.microsoft.com/downloads/d...2C48-207D-4BE1
-8A76-1C4099D7BBB9)

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:er*************@TK2MSFTNGP10.phx.gbl...
> Can someone give me some sample code on how one would go about
> executing a > command line "command" from within an ASP form?
>
> We need to run an application called GnuPG which allows us to encrypt
> an
> email.
>
> Preferably some documentation directly on this would be good but any other > docuemtnation on executing a command line "command" would be great!
>
> Thanks,
>
> Brad
>
>



Jul 19 '05 #4
OK, do you have to add a reference somewhere to "wscript.shell" in order to
use it's methods within an ASP script or will it "just be available"??

To use this in a VB or Access project, what reference would you add?

Thanks,

brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:e5**************@TK2MSFTNGP15.phx.gbl...
yes

"Brad Pears" <do********@notreal.com> wrote in message
news:%2***************@tk2msftngp13.phx.gbl...
This will work in an ASP script? ( I know nothing about ASP) I am getting this documetnation for someone who only knows a bit more than me!!!

Thanks,

Brad
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:O%****************@TK2MSFTNGP15.phx.gbl...
Take a look at the .Run method of the WScript.Shell method in the

Microsoft
Windows Scripting Host documentation.

(http://www.microsoft.com/downloads/d...2C48-207D-4BE1 -8A76-1C4099D7BBB9)

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:er*************@TK2MSFTNGP10.phx.gbl...
> Can someone give me some sample code on how one would go about
> executing

a
> command line "command" from within an ASP form?
>
> We need to run an application called GnuPG which allows us to encrypt
> an
> email.
>
> Preferably some documentation directly on this would be good but any

other
> docuemtnation on executing a command line "command" would be great!
>
> Thanks,
>
> Brad
>
>



Jul 19 '05 #5


"Brad Pears" <do********@notreal.com> wrote in message
news:OS**************@TK2MSFTNGP15.phx.gbl...
OK, do you have to add a reference somewhere to "wscript.shell" in order
to
use it's methods within an ASP script or will it "just be available"??
You'd just create the object with CreateObject("WScript.Shell"). The object
will have its properties and methods available to itself!

To use this in a VB or Access project, what reference would you add?


Windows Script Host Object Model, I'd imagine. But as this is an ASP group,
I wouldn't trust this answer as fact.

Ray at work
Jul 19 '05 #6
in ASP would you this then...

set WshShell = CreateObject("Wscript.Shell")
WshShell.run "some command to run"

the documentation you pojted me to uses
"set WshShell = Wscript.CreateObject not just the CreateObject function...

WHich is correct in ASP?

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:OV**************@TK2MSFTNGP10.phx.gbl...


"Brad Pears" <do********@notreal.com> wrote in message
news:OS**************@TK2MSFTNGP15.phx.gbl...
OK, do you have to add a reference somewhere to "wscript.shell" in order
to
use it's methods within an ASP script or will it "just be available"??
You'd just create the object with CreateObject("WScript.Shell"). The

object will have its properties and methods available to itself!

To use this in a VB or Access project, what reference would you add?
Windows Script Host Object Model, I'd imagine. But as this is an ASP

group, I wouldn't trust this answer as fact.

Ray at work

Jul 19 '05 #7
Yes, just CreateObject. Have you even made an ASP page yet? Instead of
just talking about the theoreticals, you may find it more helpful to start
playing with some code in an ASP page.

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
in ASP would you this then...

set WshShell = CreateObject("Wscript.Shell")
WshShell.run "some command to run"

the documentation you pojted me to uses
"set WshShell = Wscript.CreateObject not just the CreateObject function...

WHich is correct in ASP?

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:OV**************@TK2MSFTNGP10.phx.gbl...


"Brad Pears" <do********@notreal.com> wrote in message
news:OS**************@TK2MSFTNGP15.phx.gbl...
> OK, do you have to add a reference somewhere to "wscript.shell" in
> order
> to
> use it's methods within an ASP script or will it "just be available"??


You'd just create the object with CreateObject("WScript.Shell"). The

object
will have its properties and methods available to itself!

> To use this in a VB or Access project, what reference would you add?


Windows Script Host Object Model, I'd imagine. But as this is an ASP

group,
I wouldn't trust this answer as fact.

Ray at work


Jul 19 '05 #8
Yes, our graphic designer already has the page done. We do not have ASP
here - she can only run it on our providers windows box. I'll will give her
this test code to see if she can get simehting simply like a "dir" to
work...

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:e8**************@TK2MSFTNGP15.phx.gbl...
Yes, just CreateObject. Have you even made an ASP page yet? Instead of
just talking about the theoreticals, you may find it more helpful to start
playing with some code in an ASP page.

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
in ASP would you this then...

set WshShell = CreateObject("Wscript.Shell")
WshShell.run "some command to run"

the documentation you pojted me to uses
"set WshShell = Wscript.CreateObject not just the CreateObject function...
WHich is correct in ASP?

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:OV**************@TK2MSFTNGP10.phx.gbl...


"Brad Pears" <do********@notreal.com> wrote in message
news:OS**************@TK2MSFTNGP15.phx.gbl...
> OK, do you have to add a reference somewhere to "wscript.shell" in
> order
> to
> use it's methods within an ASP script or will it "just be available"??
You'd just create the object with CreateObject("WScript.Shell"). The

object
will have its properties and methods available to itself!
> To use this in a VB or Access project, what reference would you add?

Windows Script Host Object Model, I'd imagine. But as this is an ASP

group,
I wouldn't trust this answer as fact.

Ray at work



Jul 19 '05 #9
Well, just remember that is ASP, there is no interface to see when you
execute DIR... You'd have to dump the results to a file on the server and
read that or read the StdOut of the command... Good luck trying to write
and debug code without a server to work on there! That's rough! You don't
have any Windows NT, 2000, or XP Pro machines even? All you have to do is
install IIS, which comes with those OSes, and there you have ASP support.

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:eg**************@TK2MSFTNGP11.phx.gbl...
Yes, our graphic designer already has the page done. We do not have ASP
here - she can only run it on our providers windows box. I'll will give
her
this test code to see if she can get simehting simply like a "dir" to
work...

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:e8**************@TK2MSFTNGP15.phx.gbl...
Yes, just CreateObject. Have you even made an ASP page yet? Instead of
just talking about the theoreticals, you may find it more helpful to
start
playing with some code in an ASP page.

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
> in ASP would you this then...
>
> set WshShell = CreateObject("Wscript.Shell")
> WshShell.run "some command to run"
>
> the documentation you pojted me to uses
> "set WshShell = Wscript.CreateObject not just the CreateObject function... >
> WHich is correct in ASP?
>
> Thanks,
>
> Brad
>
> "Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
> message news:OV**************@TK2MSFTNGP10.phx.gbl...
>>
>>
>> "Brad Pears" <do********@notreal.com> wrote in message
>> news:OS**************@TK2MSFTNGP15.phx.gbl...
>> > OK, do you have to add a reference somewhere to "wscript.shell" in
>> > order
>> > to
>> > use it's methods within an ASP script or will it "just be available"?? >>
>> You'd just create the object with CreateObject("WScript.Shell"). The
> object
>> will have its properties and methods available to itself!
>>
>>
>> > To use this in a VB or Access project, what reference would you add?
>>
>> Windows Script Host Object Model, I'd imagine. But as this is an ASP
> group,
>> I wouldn't trust this answer as fact.
>>
>> Ray at work
>>
>>
>
>



Jul 19 '05 #10
Hey, I never knew that!!!

Yes, we have NT, 2000 and XP... IIS is installed on one of our win2k
servers. How do I setup a test ASP page???

Remember, I'm knew to this!

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:Ot**************@TK2MSFTNGP09.phx.gbl...
Well, just remember that is ASP, there is no interface to see when you
execute DIR... You'd have to dump the results to a file on the server and
read that or read the StdOut of the command... Good luck trying to write
and debug code without a server to work on there! That's rough! You don't have any Windows NT, 2000, or XP Pro machines even? All you have to do is
install IIS, which comes with those OSes, and there you have ASP support.

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:eg**************@TK2MSFTNGP11.phx.gbl...
Yes, our graphic designer already has the page done. We do not have ASP
here - she can only run it on our providers windows box. I'll will give
her
this test code to see if she can get simehting simply like a "dir" to
work...

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:e8**************@TK2MSFTNGP15.phx.gbl...
Yes, just CreateObject. Have you even made an ASP page yet? Instead of just talking about the theoreticals, you may find it more helpful to
start
playing with some code in an ASP page.

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
> in ASP would you this then...
>
> set WshShell = CreateObject("Wscript.Shell")
> WshShell.run "some command to run"
>
> the documentation you pojted me to uses
> "set WshShell = Wscript.CreateObject not just the CreateObject

function...
>
> WHich is correct in ASP?
>
> Thanks,
>
> Brad
>
> "Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in > message news:OV**************@TK2MSFTNGP10.phx.gbl...
>>
>>
>> "Brad Pears" <do********@notreal.com> wrote in message
>> news:OS**************@TK2MSFTNGP15.phx.gbl...
>> > OK, do you have to add a reference somewhere to "wscript.shell" in
>> > order
>> > to
>> > use it's methods within an ASP script or will it "just be

available"??
>>
>> You'd just create the object with CreateObject("WScript.Shell"). The > object
>> will have its properties and methods available to itself!
>>
>>
>> > To use this in a VB or Access project, what reference would you add? >>
>> Windows Script Host Object Model, I'd imagine. But as this is an ASP > group,
>> I wouldn't trust this answer as fact.
>>
>> Ray at work
>>
>>
>
>



Jul 19 '05 #11
Put your asp page in the home directory of your Web site. If you're looking
for tutorials on things like this, try www.iisfaq.com or results from
Google. IIS configuration is beyond the scope of this group.

Ray at work
"Brad Pears" <do********@notreal.com> wrote in message
news:eg**************@TK2MSFTNGP15.phx.gbl...
Hey, I never knew that!!!

Yes, we have NT, 2000 and XP... IIS is installed on one of our win2k
servers. How do I setup a test ASP page???

Remember, I'm knew to this!

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:Ot**************@TK2MSFTNGP09.phx.gbl...
Well, just remember that is ASP, there is no interface to see when you
execute DIR... You'd have to dump the results to a file on the server
and
read that or read the StdOut of the command... Good luck trying to write
and debug code without a server to work on there! That's rough! You

don't
have any Windows NT, 2000, or XP Pro machines even? All you have to do
is
install IIS, which comes with those OSes, and there you have ASP support.

Jul 19 '05 #12
Ray, I am able to run ASP using IIS BUT, are there any freely available
tools out there I can use to modify ASP pages?

I was able to downlaod and install a trial version of ASPRunner which
generates a bunch of ASP pages automatically for you from given DB tables.
However, if you need to make any mods to them, you need an ASP SDK of some
sort. We do not have an ASP product installed here. There must be some
freebie tool out there...

Thanks,

Brad
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:ed**************@TK2MSFTNGP14.phx.gbl...
Put your asp page in the home directory of your Web site. If you're looking for tutorials on things like this, try www.iisfaq.com or results from
Google. IIS configuration is beyond the scope of this group.

Ray at work
"Brad Pears" <do********@notreal.com> wrote in message
news:eg**************@TK2MSFTNGP15.phx.gbl...
Hey, I never knew that!!!

Yes, we have NT, 2000 and XP... IIS is installed on one of our win2k
servers. How do I setup a test ASP page???

Remember, I'm knew to this!

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:Ot**************@TK2MSFTNGP09.phx.gbl...
Well, just remember that is ASP, there is no interface to see when you
execute DIR... You'd have to dump the results to a file on the server
and
read that or read the StdOut of the command... Good luck trying to write and debug code without a server to work on there! That's rough! You

don't
have any Windows NT, 2000, or XP Pro machines even? All you have to do
is
install IIS, which comes with those OSes, and there you have ASP support.


Jul 19 '05 #13
All you need is a text editor. Notepad will do. Personally, I use Textpad.
Here's a breakdown of some popular editors that people use.
http://www.aspfaq.com/show.asp?id=2500

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Ray, I am able to run ASP using IIS BUT, are there any freely available
tools out there I can use to modify ASP pages?

I was able to downlaod and install a trial version of ASPRunner which
generates a bunch of ASP pages automatically for you from given DB tables.
However, if you need to make any mods to them, you need an ASP SDK of some
sort. We do not have an ASP product installed here. There must be some
freebie tool out there...

Jul 19 '05 #14
So what do I do? Do I just edit the .asp form then?

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:Oy**************@TK2MSFTNGP10.phx.gbl...
All you need is a text editor. Notepad will do. Personally, I use Textpad. Here's a breakdown of some popular editors that people use.
http://www.aspfaq.com/show.asp?id=2500

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Ray, I am able to run ASP using IIS BUT, are there any freely available
tools out there I can use to modify ASP pages?

I was able to downlaod and install a trial version of ASPRunner which
generates a bunch of ASP pages automatically for you from given DB tables. However, if you need to make any mods to them, you need an ASP SDK of some sort. We do not have an ASP product installed here. There must be some
freebie tool out there...


Jul 19 '05 #15
What does one normally do with a text editor? Yes, you open
C:\Inetpub\wwwroot\yourfile.asp and write your html and ASP code.

<html>
<head>
</head>
<body>
Date and time: <%=Now%>
</body>
</html>

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:us***************@TK2MSFTNGP11.phx.gbl...
So what do I do? Do I just edit the .asp form then?

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:Oy**************@TK2MSFTNGP10.phx.gbl...
All you need is a text editor. Notepad will do. Personally, I use

Textpad.
Here's a breakdown of some popular editors that people use.
http://www.aspfaq.com/show.asp?id=2500

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
> Ray, I am able to run ASP using IIS BUT, are there any freely available
> tools out there I can use to modify ASP pages?
>
> I was able to downlaod and install a trial version of ASPRunner which
> generates a bunch of ASP pages automatically for you from given DB tables. > However, if you need to make any mods to them, you need an ASP SDK of some > sort. We do not have an ASP product installed here. There must be some
> freebie tool out there...



Jul 19 '05 #16
Ok, we have Visual Studio .NET loaded and I was able to open an ASP page
using that.

Now I have a direct ASP related question for you ...

In Access or VB (non web based) if I wanted to edit check the value a user
is entering into a field, I would place some code on the text field, or on a
command button somewhere to validate - basic editing we are talking about...
How do I do this in ASP?? There isn't a "form" per se, so where do I place
code that I want to run when a user clicks a button or enters data in a
particular field?

For instance, If I wanted to do a test, and duplicated a line defining a
button and give it a different name, I suspect I would then see this new
buttoin show up on the form when I run the project next time, but how would
I reference this in the code so that whenever I click it, the code will run?

Here is a button definition line I added...

input class=button type=button value="Test" ID="Test1" NAME="Test1"

How do I reference this so that when it is clicked, the code will run? I am
used to on click events and such so this is very new to me...

Thanks,

Brad

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:Oy**************@TK2MSFTNGP10.phx.gbl...
All you need is a text editor. Notepad will do. Personally, I use Textpad. Here's a breakdown of some popular editors that people use.
http://www.aspfaq.com/show.asp?id=2500

Ray at work

"Brad Pears" <do********@notreal.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Ray, I am able to run ASP using IIS BUT, are there any freely available
tools out there I can use to modify ASP pages?

I was able to downlaod and install a trial version of ASPRunner which
generates a bunch of ASP pages automatically for you from given DB tables. However, if you need to make any mods to them, you need an ASP SDK of some sort. We do not have an ASP product installed here. There must be some
freebie tool out there...


Jul 19 '05 #17

"Brad Pears" <do********@notreal.com> wrote in message
news:eZ****************@TK2MSFTNGP10.phx.gbl...
Ok, we have Visual Studio .NET loaded and I was able to open an ASP page
using that.

Now I have a direct ASP related question for you ...


I suggest you start a new thread for a new question. Otherwise you'll
probably only get an answer from me instead of getting a handful of answers,
some of which may be better than mine. :]

Ray at work
Jul 19 '05 #18
Good point - thanks Ray I appreciate your help thus far.

Brad
"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:eZ****************@TK2MSFTNGP09.phx.gbl...

"Brad Pears" <do********@notreal.com> wrote in message
news:eZ****************@TK2MSFTNGP10.phx.gbl...
Ok, we have Visual Studio .NET loaded and I was able to open an ASP page
using that.

Now I have a direct ASP related question for you ...
I suggest you start a new thread for a new question. Otherwise you'll
probably only get an answer from me instead of getting a handful of

answers, some of which may be better than mine. :]

Ray at work

Jul 19 '05 #19

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

Similar topics

1
by: Falk Schneider | last post by:
I wrote a PHP shell script under Linux which puts all existing PS-Files within a directory into a list and should then start a single Ghostview window for each file. Sounds simple, but it's not: ...
0
by: Nick Coghlan | last post by:
Anyone playing with the CPython interpreter's new command line switch might have noticed that it only works with top-level modules (i.e. scripts that are directly on sys.path). If the script is...
15
by: Nick Coghlan | last post by:
Python 2.4's -m command line switch only works for modules directly on sys.path. Trying to use it with modules inside packages will fail with a "Module not found" error. This PEP aims to fix that...
3
by: PzYon | last post by:
Hey 2gether! I'm trying to execute a PERL script on the web server when the user presses a button in an ASP.NET Web Application using Visual Basic. The most obvious solution for me seemed to be...
15
by: (Pete Cresswell) | last post by:
I've got a .BAT file that I use for executing various MS Access apps that I wrote way back in the days of 2.0. It's evolved over time, but it still contains a number of possible paths to...
9
by: Mads W. | last post by:
I want to read an ini file which is located in the same dir as my .exe file. But how can I do that without having to have the excact same dir for all my program installations. Let me try to...
1
by: Rune Jacobsen | last post by:
Hi, I've been trying to figure this one out, but my experience just doesn't have what it takes... :| I am writing an application that reads an XML file and displays the contents in various...
2
by: Rick | last post by:
In some other databases (like Oracle and SQL Server), there is a view that show all SQL's currently executing, who is executing the SQL, and what the SQL is waiting on (wait on read, wait on lock,...
7
by: tshad | last post by:
I thought I understood how the SaveViewState is working and was trying to use this (as per some code I found) to detect refreshes. It seemed to be working but I found that the SaveViewState was...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...

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.