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

How can I speed up ToString of decimal and double?

Hi,
We have a part of our application that deals with millions of records and do
some processing of them. We've achieved a pretty good performance gain by
developping a custom DateTime.ToString and a custom int.ToString, but we
can't find any clue on doing for decimal and double, which would be about
half the load if they are put together (decimal and double). By changing our
DateTime and Int ToStrings, we achieved a 84% performance gain, so now we
want to optimize decimal and double. Anyone would have a link or a clue on
how we should do it? Actually we speed it up by forcing our format rather
than relying on cultures and format string and others... we found this page
for our DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if you
have something similar for double and decimal it would be very appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#, it's
just because our things are done with c# and I would appreciate to have
examples in c# if possible... ;)
Mar 29 '07 #1
12 4501
First question:
Why do you need to convert them to strings in the first place?

Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"ThunderMusic" wrote:
Hi,
We have a part of our application that deals with millions of records and do
some processing of them. We've achieved a pretty good performance gain by
developping a custom DateTime.ToString and a custom int.ToString, but we
can't find any clue on doing for decimal and double, which would be about
half the load if they are put together (decimal and double). By changing our
DateTime and Int ToStrings, we achieved a 84% performance gain, so now we
want to optimize decimal and double. Anyone would have a link or a clue on
how we should do it? Actually we speed it up by forcing our format rather
than relying on cultures and format string and others... we found this page
for our DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if you
have something similar for double and decimal it would be very appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#, it's
just because our things are done with c# and I would appreciate to have
examples in c# if possible... ;)
Mar 29 '07 #2
On Wed, 28 Mar 2007 19:58:42 -0400, "ThunderMusic"
<No*************************@NoSpAm.comwrote:
>Hi,
We have a part of our application that deals with millions of records and do
some processing of them. We've achieved a pretty good performance gain by
developping a custom DateTime.ToString and a custom int.ToString, but we
can't find any clue on doing for decimal and double, which would be about
half the load if they are put together (decimal and double). By changing our
DateTime and Int ToStrings, we achieved a 84% performance gain, so now we
want to optimize decimal and double. Anyone would have a link or a clue on
how we should do it? Actually we speed it up by forcing our format rather
than relying on cultures and format string and others... we found this page
for our DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if you
have something similar for double and decimal it would be very appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#, it's
just because our things are done with c# and I would appreciate to have
examples in c# if possible... ;)
What format of double or decimal do you want: 12.3456 or 1.23456e+001?

Any format can be constricted from a combination of integers and other
characters, so you may well have all that you need to hand.

rossum

Mar 29 '07 #3
because we are writing them to a CSV File, so we must convert them to
string. And even if we don't use ToString and use for example
StreamWriter.WriteInt() or something like this, it seems to do a ToString in
the background because it's as slow as doing a ToString and a Write
afterward...

Thanks

ThunderMusic

"Peter Bromberg [C# MVP]" <pb*******@yahoo.yabbadabbadoo.comwrote in
message news:6C**********************************@microsof t.com...
First question:
Why do you need to convert them to strings in the first place?

Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"ThunderMusic" wrote:
>Hi,
We have a part of our application that deals with millions of records and
do
some processing of them. We've achieved a pretty good performance gain by
developping a custom DateTime.ToString and a custom int.ToString, but we
can't find any clue on doing for decimal and double, which would be about
half the load if they are put together (decimal and double). By changing
our
DateTime and Int ToStrings, we achieved a 84% performance gain, so now we
want to optimize decimal and double. Anyone would have a link or a clue
on
how we should do it? Actually we speed it up by forcing our format rather
than relying on cultures and format string and others... we found this
page
for our DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if
you
have something similar for double and decimal it would be very
appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#, it's
just because our things are done with c# and I would appreciate to have
examples in c# if possible... ;)

Mar 29 '07 #4
we want the first one... 12.3456... for decimal, it's possible to get all
the integer values because of the big big big precision, but it's not the
case for double, if we multiply, sometimes, the digits change because of the
precision...

What is the good way of doing it? because right now, we go digit by digit by
doing bitshifts and multiplications... is there a better way?

Thanks

ThunderMusic

"rossum" <ro******@coldmail.comwrote in message
news:p2********************************@4ax.com...
On Wed, 28 Mar 2007 19:58:42 -0400, "ThunderMusic"
<No*************************@NoSpAm.comwrote:
>>Hi,
We have a part of our application that deals with millions of records and
do
some processing of them. We've achieved a pretty good performance gain by
developping a custom DateTime.ToString and a custom int.ToString, but we
can't find any clue on doing for decimal and double, which would be about
half the load if they are put together (decimal and double). By changing
our
DateTime and Int ToStrings, we achieved a 84% performance gain, so now we
want to optimize decimal and double. Anyone would have a link or a clue on
how we should do it? Actually we speed it up by forcing our format rather
than relying on cultures and format string and others... we found this
page
for our DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if
you
have something similar for double and decimal it would be very
appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#, it's
just because our things are done with c# and I would appreciate to have
examples in c# if possible... ;)
What format of double or decimal do you want: 12.3456 or 1.23456e+001?

Any format can be constricted from a combination of integers and other
characters, so you may well have all that you need to hand.

rossum

Mar 29 '07 #5
ThunderMusic wrote:
Hi,
We have a part of our application that deals with millions of records and do
some processing of them. We've achieved a pretty good performance gain by
developping a custom DateTime.ToString and a custom int.ToString, but we
can't find any clue on doing for decimal and double, which would be about
half the load if they are put together (decimal and double). By changing our
DateTime and Int ToStrings, we achieved a 84% performance gain, so now we
want to optimize decimal and double. Anyone would have a link or a clue on
how we should do it? Actually we speed it up by forcing our format rather
than relying on cultures and format string and others... we found this page
for our DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if you
have something similar for double and decimal it would be very appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#, it's
just because our things are done with c# and I would appreciate to have
examples in c# if possible... ;)
Are you sure that it's the conversion to strings that really is the
performance problem?

What do you do with the strings after you converted them? Do you write
them directly to a stream, or do you do any string concatenation first?

--
Göran Andersson
_____
http://www.guffa.com
Mar 30 '07 #6
hi,
I'm 100% sure it's the main bottleneck. for a million loop, for DateTime,
We've gone from ±4 seconds to 0.3 seconds and optimized int.ToString enough
to get a 4X performance gain. so We'd want to do it for decimal and double
because they are two types we use very heavily in what we do...

I write directly to the stream and it's the fastest way possible in our case
because we tried to concatenate first to build a buffering system, but it
was slower.

Thanks

ThunderMusic

"Göran Andersson" <gu***@guffa.comwrote in message
news:en**************@TK2MSFTNGP04.phx.gbl...
ThunderMusic wrote:
>Hi,
We have a part of our application that deals with millions of records and
do some processing of them. We've achieved a pretty good performance gain
by developping a custom DateTime.ToString and a custom int.ToString, but
we can't find any clue on doing for decimal and double, which would be
about half the load if they are put together (decimal and double). By
changing our DateTime and Int ToStrings, we achieved a 84% performance
gain, so now we want to optimize decimal and double. Anyone would have a
link or a clue on how we should do it? Actually we speed it up by forcing
our format rather than relying on cultures and format string and
others... we found this page for our DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if
you have something similar for double and decimal it would be very
appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#, it's
just because our things are done with c# and I would appreciate to have
examples in c# if possible... ;)

Are you sure that it's the conversion to strings that really is the
performance problem?

What do you do with the strings after you converted them? Do you write
them directly to a stream, or do you do any string concatenation first?

--
Göran Andersson
_____
http://www.guffa.com

Mar 30 '07 #7
JR
I had developed the following algorithm for float to string in 1962 or 1963.
This is what I remember:

Handle the sign.

Handle the special cases - zero, NaN, infinity.

Split the exponent and the mantissa as integers.

Calculate the decimal exponent k, such that 10 to k-1 is less or equal than
the number and 10 to k is larger than the number (If equal you are done).
The number then has k decimal digits in the integer part. Divide the number
by 10 to k. Now keep multiplying by 10 - each time the integer is a decimal
digit - subtract it and continue.

How to get at k quickly? Log 2 base 10 is approximately 0.3, so if you
multiply the binary exponent by 3 and divide by 10 and add 1 you get a good
approximation which may be off by 1.

I don't know whether the .NET framework uses a similar algorithm, a faster
algorithm or a slower algorithm.

JR
"ThunderMusic" <No*************************@NoSpAm.comëúá
áäĺăňä:uw**************@TK2MSFTNGP02.phx.gbl...
hi,
I'm 100% sure it's the main bottleneck. for a million loop, for DateTime,
We've gone from ±4 seconds to 0.3 seconds and optimized int.ToString
enough to get a 4X performance gain. so We'd want to do it for decimal and
double because they are two types we use very heavily in what we do...

I write directly to the stream and it's the fastest way possible in our
case because we tried to concatenate first to build a buffering system,
but it was slower.

Thanks

ThunderMusic

"Göran Andersson" <gu***@guffa.comwrote in message
news:en**************@TK2MSFTNGP04.phx.gbl...
>ThunderMusic wrote:
>>Hi,
We have a part of our application that deals with millions of records
and do some processing of them. We've achieved a pretty good performance
gain by developping a custom DateTime.ToString and a custom
int.ToString, but we can't find any clue on doing for decimal and
double, which would be about half the load if they are put together
(decimal and double). By changing our DateTime and Int ToStrings, we
achieved a 84% performance gain, so now we want to optimize decimal and
double. Anyone would have a link or a clue on how we should do it?
Actually we speed it up by forcing our format rather than relying on
cultures and format string and others... we found this page for our
DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if
you have something similar for double and decimal it would be very
appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#,
it's just because our things are done with c# and I would appreciate to
have examples in c# if possible... ;)

Are you sure that it's the conversion to strings that really is the
performance problem?

What do you do with the strings after you converted them? Do you write
them directly to a stream, or do you do any string concatenation first?

--
Göran Andersson
_____
http://www.guffa.com


Mar 30 '07 #8
It's easy to see what's actually happening by using Reflector to look at
code. There's some overhead because date/time is culture-driven. You didn't
mention which ToString() you're using, but if you have a fixed format then I
suspect you can always beat the generic one that's culture-dependent, and
providing your own format provider could be faster than letting the
framework use the culture info.

The string issue that was alluded to is that if you're creating a million
strings it might be an appreciable overhead, and re-using one StringBuilder
could be faster.

--
--
Phil Wilson
[MVP Windows Installer]

"ThunderMusic" <No*************************@NoSpAm.comwrote in message
news:uw**************@TK2MSFTNGP02.phx.gbl...
hi,
I'm 100% sure it's the main bottleneck. for a million loop, for DateTime,
We've gone from ±4 seconds to 0.3 seconds and optimized int.ToString
enough to get a 4X performance gain. so We'd want to do it for decimal and
double because they are two types we use very heavily in what we do...

I write directly to the stream and it's the fastest way possible in our
case because we tried to concatenate first to build a buffering system,
but it was slower.

Thanks

ThunderMusic

"Göran Andersson" <gu***@guffa.comwrote in message
news:en**************@TK2MSFTNGP04.phx.gbl...
>ThunderMusic wrote:
>>Hi,
We have a part of our application that deals with millions of records
and do some processing of them. We've achieved a pretty good performance
gain by developping a custom DateTime.ToString and a custom
int.ToString, but we can't find any clue on doing for decimal and
double, which would be about half the load if they are put together
(decimal and double). By changing our DateTime and Int ToStrings, we
achieved a 84% performance gain, so now we want to optimize decimal and
double. Anyone would have a link or a clue on how we should do it?
Actually we speed it up by forcing our format rather than relying on
cultures and format string and others... we found this page for our
DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so if
you have something similar for double and decimal it would be very
appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#,
it's just because our things are done with c# and I would appreciate to
have examples in c# if possible... ;)

Are you sure that it's the conversion to strings that really is the
performance problem?

What do you do with the strings after you converted them? Do you write
them directly to a stream, or do you do any string concatenation first?

--
Göran Andersson
_____
http://www.guffa.com


Mar 30 '07 #9
thanks a lot, that's a great starting point... I mean, exactly with that,
we can manage it well enough... We'll try to see what performance gain we
can get and start optimizing from there... ;)

thanks

ThunderMusic

"JR" <No****@qsm.co.ilwrote in message
news:Os**************@TK2MSFTNGP06.phx.gbl...
>I had developed the following algorithm for float to string in 1962 or
1963. This is what I remember:

Handle the sign.

Handle the special cases - zero, NaN, infinity.

Split the exponent and the mantissa as integers.

Calculate the decimal exponent k, such that 10 to k-1 is less or equal
than the number and 10 to k is larger than the number (If equal you are
done). The number then has k decimal digits in the integer part. Divide
the number by 10 to k. Now keep multiplying by 10 - each time the integer
is a decimal digit - subtract it and continue.

How to get at k quickly? Log 2 base 10 is approximately 0.3, so if you
multiply the binary exponent by 3 and divide by 10 and add 1 you get a
good approximation which may be off by 1.

I don't know whether the .NET framework uses a similar algorithm, a faster
algorithm or a slower algorithm.

JR
"ThunderMusic" <No*************************@NoSpAm.comëúá
áäĺăňä:uw**************@TK2MSFTNGP02.phx.gbl...
>hi,
I'm 100% sure it's the main bottleneck. for a million loop, for DateTime,
We've gone from ±4 seconds to 0.3 seconds and optimized int.ToString
enough to get a 4X performance gain. so We'd want to do it for decimal
and double because they are two types we use very heavily in what we
do...

I write directly to the stream and it's the fastest way possible in our
case because we tried to concatenate first to build a buffering system,
but it was slower.

Thanks

ThunderMusic

"Göran Andersson" <gu***@guffa.comwrote in message
news:en**************@TK2MSFTNGP04.phx.gbl...
>>ThunderMusic wrote:
Hi,
We have a part of our application that deals with millions of records
and do some processing of them. We've achieved a pretty good
performance gain by developping a custom DateTime.ToString and a custom
int.ToString, but we can't find any clue on doing for decimal and
double, which would be about half the load if they are put together
(decimal and double). By changing our DateTime and Int ToStrings, we
achieved a 84% performance gain, so now we want to optimize decimal and
double. Anyone would have a link or a clue on how we should do it?
Actually we speed it up by forcing our format rather than relying on
cultures and format string and others... we found this page for our
DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so
if you have something similar for double and decimal it would be very
appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#,
it's just because our things are done with c# and I would appreciate to
have examples in c# if possible... ;)

Are you sure that it's the conversion to strings that really is the
performance problem?

What do you do with the strings after you converted them? Do you write
them directly to a stream, or do you do any string concatenation first?

--
Göran Andersson
_____
http://www.guffa.com



Mar 30 '07 #10
hi,
even if using the DateTime.ToString("OurFormat"), it was still slow, and we
got it very very quick now... I don't know if we will be able to speed up
decimal and double too, but we have to have a starting point and I think JR
just gave us the starting point we need...

We know the structure for a double... now, can someone tell me what is the
structure of a decimal? Can I find it somewhere on the net? I tried
googleing, but found nothing about the decimal structure.

Is it like Binary Coded Decimal? if the number is 123.456, is it represented
0x12, 0x34, 0x56? or something like this?

thanks

ThunderMusic
"Phil Wilson" <ph*********@wonderware.something.comwrote in message
news:uK**************@TK2MSFTNGP03.phx.gbl...
It's easy to see what's actually happening by using Reflector to look at
code. There's some overhead because date/time is culture-driven. You
didn't mention which ToString() you're using, but if you have a fixed
format then I suspect you can always beat the generic one that's
culture-dependent, and providing your own format provider could be faster
than letting the framework use the culture info.

The string issue that was alluded to is that if you're creating a million
strings it might be an appreciable overhead, and re-using one
StringBuilder could be faster.

--
--
Phil Wilson
[MVP Windows Installer]

"ThunderMusic" <No*************************@NoSpAm.comwrote in message
news:uw**************@TK2MSFTNGP02.phx.gbl...
>hi,
I'm 100% sure it's the main bottleneck. for a million loop, for DateTime,
We've gone from ±4 seconds to 0.3 seconds and optimized int.ToString
enough to get a 4X performance gain. so We'd want to do it for decimal
and double because they are two types we use very heavily in what we
do...

I write directly to the stream and it's the fastest way possible in our
case because we tried to concatenate first to build a buffering system,
but it was slower.

Thanks

ThunderMusic

"Göran Andersson" <gu***@guffa.comwrote in message
news:en**************@TK2MSFTNGP04.phx.gbl...
>>ThunderMusic wrote:
Hi,
We have a part of our application that deals with millions of records
and do some processing of them. We've achieved a pretty good
performance gain by developping a custom DateTime.ToString and a custom
int.ToString, but we can't find any clue on doing for decimal and
double, which would be about half the load if they are put together
(decimal and double). By changing our DateTime and Int ToStrings, we
achieved a 84% performance gain, so now we want to optimize decimal and
double. Anyone would have a link or a clue on how we should do it?
Actually we speed it up by forcing our format rather than relying on
cultures and format string and others... we found this page for our
DateTime (
http://geekswithblogs.net/akraus1/ar.../23/76146.aspx ), so
if you have something similar for double and decimal it would be very
appreciated.

Thanks

ThunderMusic

P.S. I know it's 100% performance related, but I feel people from the
framework and general forums could be concerned too, and for the c#,
it's just because our things are done with c# and I would appreciate to
have examples in c# if possible... ;)

Are you sure that it's the conversion to strings that really is the
performance problem?

What do you do with the strings after you converted them? Do you write
them directly to a stream, or do you do any string concatenation first?

--
Göran Andersson
_____
http://www.guffa.com



Mar 30 '07 #11
ThunderMusic <No*************************@NoSpAm.comwrote:
even if using the DateTime.ToString("OurFormat"), it was still slow, and we
got it very very quick now... I don't know if we will be able to speed up
decimal and double too, but we have to have a starting point and I think JR
just gave us the starting point we need...

We know the structure for a double... now, can someone tell me what is the
structure of a decimal? Can I find it somewhere on the net? I tried
googleing, but found nothing about the decimal structure.

Is it like Binary Coded Decimal? if the number is 123.456, is it represented
0x12, 0x34, 0x56? or something like this?
See http://pobox.com/~skeet/csharp/decimal.html

(Or look at MSDN :)

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Mar 30 '07 #12
excellent... thanks a lot... ;)
"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP************************@msnews.microsoft.c om...
ThunderMusic <No*************************@NoSpAm.comwrote:
>even if using the DateTime.ToString("OurFormat"), it was still slow, and
we
got it very very quick now... I don't know if we will be able to speed up
decimal and double too, but we have to have a starting point and I think
JR
just gave us the starting point we need...

We know the structure for a double... now, can someone tell me what is
the
structure of a decimal? Can I find it somewhere on the net? I tried
googleing, but found nothing about the decimal structure.

Is it like Binary Coded Decimal? if the number is 123.456, is it
represented
0x12, 0x34, 0x56? or something like this?

See http://pobox.com/~skeet/csharp/decimal.html

(Or look at MSDN :)

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Apr 2 '07 #13

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

Similar topics

17
by: John Bentley | last post by:
John Bentley: INTRO The phrase "decimal number" within a programming context is ambiguous. It could refer to the decimal datatype or the related but separate concept of a generic decimal number....
4
by: aevans1108 | last post by:
expanding this message to microsoft.public.dotnet.xml Greetings Please direct me to the right group if this is an inappropriate place to post this question. Thanks. I want to format a...
0
by: BBFrost | last post by:
I'm receiving decimal values from database queries and placing them on a report page. The users want to see the following .... Db Value Display Value 123.3400 123.34...
1
by: Ed S | last post by:
I'm trying to format a double with this behavior: 1) should only show 8 characters (character count before and after decimal added together). 2) if greater than 7 characters to the left of the...
2
by: Rod Brick | last post by:
I'm trying to print a Double in straight decimal form, not exponential. I can't seem to accomplish this. This seems like it should be simple enough. The output I'm looking for is "0.00001", not...
7
by: Oenone | last post by:
Can anyone explain why the following happens? \\\ Dim d1 As Decimal = CDec("100") Dim d2 As Decimal = CDec("100.00") MsgBox(d1.ToString) 'displays "100" MsgBox(d2.ToString) 'displays...
1
by: Jeff.Boeker | last post by:
Hello, I need to convert a double to a string such that there are a maximum of two numbers after the decimal point with no trailing 0's or decimal point (e.g. 3.456 = "3.46", 3.20 = "3.2",...
12
by: ThunderMusic | last post by:
Hi, We have a part of our application that deals with millions of records and do some processing of them. We've achieved a pretty good performance gain by developping a custom DateTime.ToString...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel 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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.