473,769 Members | 5,836 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Advantages to using xml in a small translation and localisation company

Whato chaps,

I work (or am hoping to work! :) for a company that specialises in the
following:

- Localisation of media - including software, manuals, literature and
training material.
- Creating training material themselves in many langauges built to order.

The main thing I'm thinking about for the company is maybe a sort of content
management system whereby they can provide a system that allows customers to
organise their training material and even make new material on the fly.
Thats just one area.

On the whole, I am wondering if anyone has any ideas about how xml, xsl and
all the rest of the new data technologies could be used in a company that
specialises in translation of all sorts of material but especially, training
material, marketing material and business presentations

Any help would be really really greatfully received

Thanks everyone

Simon
Jul 20 '05 #1
12 3521
Thats a fairly large scope!

There are two mechanisms where XML may help:

1. You have multi-language materials where the XML could contain a reference
to the 'virtual' material but the child XML would contain the real
references to the materials (one per available language). When allowing
users to choose a material, they would only be given choices where the
language exists for them or they could be given the choice to download in
any language.

<xml>
<materials>
<material title="A document">
<localised>
<materiallocali sed language="Frenc h" title="Le document"
ref="get it from here url">
<materiallocali sed language="Germa n" title="Ein
document" ref="get it from here url">
</localised>
</material>
</materials>
</xml>

Please excuse my useless french and german!

2. Use XML to 'generate' the materials in HTML / PDF form in which case the
source document would contain the base representation of the document and
embedded / referenced document(s) would contain the localised strings,
images etc. An XSL stylesheet with a parameter passed in would generate the
relevant localised version.

* SOURCE XSLT *
...
<xsl:paramete r name="language" >French</xsl:parameter>
<xsl:variable name="localised strings"
select="documen t({$language}.x ml)/root"/>
...
<!-- The title appears here selected from the referenced localised xml
file that is determined from the passed in parameter -->
<p id="title">
<xsl:value-of select="$locali sedstrings/title"/>
<img src={$localised strings/title/@imagesrc} style="float: right"/>
</p>
...

etc.

* SAMPLE LOCALISED STRINGS XML - called French.xml *
* Others would exists as German.xml etc.
*

<root>
<title imagesrc="title image_french.gi f">Documentatio n de l'internet
localise</title>
</root>

XSL-FO would obviously give you PDF capabilities - as would a component that
transfroms HTML output to PDF (such as ABCPDF3).

OK - that's pretty basic of course and I'm sure there are other systems out
there to handle this sort of thing but I hope you see what I'm trying to
demonstrate.

I have no idea how the encoding would be affected by this but I'm sure it
would be workable.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in message
news:TZ******** *************@w ards.force9.net ...
Whato chaps,

I work (or am hoping to work! :) for a company that specialises in the
following:

- Localisation of media - including software, manuals, literature and
training material.
- Creating training material themselves in many langauges built to order.

The main thing I'm thinking about for the company is maybe a sort of content
management system whereby they can provide a system that allows customers to
organise their training material and even make new material on the fly.
Thats just one area.

On the whole, I am wondering if anyone has any ideas about how xml, xsl and
all the rest of the new data technologies could be used in a company that
specialises in translation of all sorts of material but especially, training
material, marketing material and business presentations

Any help would be really really greatfully received

Thanks everyone

Simon

Jul 20 '05 #2
Hi Chris,
<xml>
<materials>
<material title="A document">
<localised>
<materiallocali sed language="Frenc h" title="Le document" ref="get it from here url">
<materiallocali sed language="Germa n" title="Ein
document" ref="get it from here url">
</localised>
</material>
</materials>
</xml>
One small point - it would be better to use the existing @xml:lang attribute
rather than re-invent your own language attributes. The @xml:lang attribute
has several advatnages, including the ability to use the lang() XPath
function.

Cheers
Marrow
http://www.marrowsoft.com - home of Xselerator (XSLT IDE and debugger)
http://www.topxml.com/Xselerator
"Chris Barber" <ch***@blue-canoe.co.uk.NOS PAM> wrote in message
news:#$******** ******@TK2MSFTN GP11.phx.gbl... Thats a fairly large scope!

There are two mechanisms where XML may help:

1. You have multi-language materials where the XML could contain a reference to the 'virtual' material but the child XML would contain the real
references to the materials (one per available language). When allowing
users to choose a material, they would only be given choices where the
language exists for them or they could be given the choice to download in
any language.

<xml>
<materials>
<material title="A document">
<localised>
<materiallocali sed language="Frenc h" title="Le document" ref="get it from here url">
<materiallocali sed language="Germa n" title="Ein
document" ref="get it from here url">
</localised>
</material>
</materials>
</xml>

Please excuse my useless french and german!

2. Use XML to 'generate' the materials in HTML / PDF form in which case the source document would contain the base representation of the document and
embedded / referenced document(s) would contain the localised strings,
images etc. An XSL stylesheet with a parameter passed in would generate the relevant localised version.

* SOURCE XSLT *
...
<xsl:paramete r name="language" >French</xsl:parameter>
<xsl:variable name="localised strings"
select="documen t({$language}.x ml)/root"/>
...
<!-- The title appears here selected from the referenced localised xml
file that is determined from the passed in parameter -->
<p id="title">
<xsl:value-of select="$locali sedstrings/title"/>
<img src={$localised strings/title/@imagesrc} style="float: right"/> </p>
...

etc.

* SAMPLE LOCALISED STRINGS XML - called French.xml *
* Others would exists as German.xml etc.
*

<root>
<title imagesrc="title image_french.gi f">Documentatio n de l'internet localise</title>
</root>

XSL-FO would obviously give you PDF capabilities - as would a component that transfroms HTML output to PDF (such as ABCPDF3).

OK - that's pretty basic of course and I'm sure there are other systems out there to handle this sort of thing but I hope you see what I'm trying to
demonstrate.

I have no idea how the encoding would be affected by this but I'm sure it
would be workable.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in message news:TZ******** *************@w ards.force9.net ...
Whato chaps,

I work (or am hoping to work! :) for a company that specialises in the
following:

- Localisation of media - including software, manuals, literature and
training material.
- Creating training material themselves in many langauges built to order.

The main thing I'm thinking about for the company is maybe a sort of content management system whereby they can provide a system that allows customers to organise their training material and even make new material on the fly.
Thats just one area.

On the whole, I am wondering if anyone has any ideas about how xml, xsl and all the rest of the new data technologies could be used in a company that
specialises in translation of all sorts of material but especially, training material, marketing material and business presentations

Any help would be really really greatfully received

Thanks everyone

Simon

Jul 20 '05 #3
Thanks Chris and Marrow

Well, the first example that you give, I hadnt really thought about. But
that could be a good approach so thatnks for that. You know, I would
probably try to use that in conjunction with the second approach.

The second approach is what I was thinking as well.
Two questions:

1. What is the language element for? Why was it included?
2. What I am really after is some ideas on other applications that would
make the whole xml change more worth while. Does anyone have any killer
applications that could be used in a small translation and localisation
company? Unlike the big boys, we can't affor to invest a lot of resources in
an area that won't really make much of a difference to the business. I have
come up with some advantages, such as distributing material in different
formats, but i dont know how much market there is going to be for that.
3. Another quick question. Based on your experience guys, do you think the
stylesheets should be stored on the file system or in a database? File
system sounds messy? Any thoughts?

I'm somewhat apprehensive about this are because I would be the only
developer at the company, and I am a bit wary about taking us deep into xml
because that may mean that it becomes very hard for the other staff to make
changes to documents. Making the slightest changes to a stylesheet, at the
moment, is still fairly complicated even using the tools that are available
(thanks marrow).

I think this is the underlying dilema that smaller companies are facing at
the moment. Companies in the media business could probably all benefit from
using xml and xsl technologies, but at the moment the resources required are
largely out of their reach. Most publishing companies are not specialised in
computer technologies any more than they need to be, and this is compounded
by the complexity and newness of XML technologies.

What do you think?

Oh and do you know of any companies looking for a really handsome, charming,
talented, intelligent, driven, graduate with far more experience and skills
than his peers? :-)

Kind regards everyone

Simon
Jul 20 '05 #4
Thanks Marrow.

I've looked at a few references for this but I'm not sure that it would be
fully appropriate for an entire document in multiple languages?

A possible problematic example would be a manual in French, Italian, English
and German. If the language sections were contained within the same XML
source then the source would conceivably be up to 4x larger than a single
language source.
This could present issues with speed and maintainability ?
It's also feasible that a particular document might want to use a different
layout to the other documents (Chinese springs to mind). I can also see
issues where different authors are maintaining the individual languages -
source control for a single document could become very problematic.
Of course there are a multitude of issues with a multi-document system.

I wasn't making a proposal as such, just trying to put up some scenarios as
starting points.

Cheers,

Chris.

"Marrow" <marrow-NO-@-SPAM-marrowsoft.com> wrote in message
news:9N******** **********@news fep2-gui.server.ntli .net...
Hi Chris,
<xml>
<materials>
<material title="A document">
<localised>
<materiallocali sed language="Frenc h" title="Le document" ref="get it from here url">
<materiallocali sed language="Germa n" title="Ein
document" ref="get it from here url">
</localised>
</material>
</materials>
</xml>
One small point - it would be better to use the existing @xml:lang attribute
rather than re-invent your own language attributes. The @xml:lang attribute
has several advatnages, including the ability to use the lang() XPath
function.

Cheers
Marrow
http://www.marrowsoft.com - home of Xselerator (XSLT IDE and debugger)
http://www.topxml.com/Xselerator
"Chris Barber" <ch***@blue-canoe.co.uk.NOS PAM> wrote in message
news:#$******** ******@TK2MSFTN GP11.phx.gbl... Thats a fairly large scope!

There are two mechanisms where XML may help:

1. You have multi-language materials where the XML could contain a reference to the 'virtual' material but the child XML would contain the real
references to the materials (one per available language). When allowing
users to choose a material, they would only be given choices where the
language exists for them or they could be given the choice to download in
any language.

<xml>
<materials>
<material title="A document">
<localised>
<materiallocali sed language="Frenc h" title="Le document" ref="get it from here url">
<materiallocali sed language="Germa n" title="Ein
document" ref="get it from here url">
</localised>
</material>
</materials>
</xml>

Please excuse my useless french and german!

2. Use XML to 'generate' the materials in HTML / PDF form in which case the source document would contain the base representation of the document and
embedded / referenced document(s) would contain the localised strings,
images etc. An XSL stylesheet with a parameter passed in would generate the relevant localised version.

* SOURCE XSLT *
...
<xsl:paramete r name="language" >French</xsl:parameter>
<xsl:variable name="localised strings"
select="documen t({$language}.x ml)/root"/>
...
<!-- The title appears here selected from the referenced localised xml
file that is determined from the passed in parameter -->
<p id="title">
<xsl:value-of select="$locali sedstrings/title"/>
<img src={$localised strings/title/@imagesrc} style="float: right"/> </p>
...

etc.

* SAMPLE LOCALISED STRINGS XML - called French.xml *
* Others would exists as German.xml etc.
*

<root>
<title imagesrc="title image_french.gi f">Documentatio n de l'internet localise</title>
</root>

XSL-FO would obviously give you PDF capabilities - as would a component that transfroms HTML output to PDF (such as ABCPDF3).

OK - that's pretty basic of course and I'm sure there are other systems out there to handle this sort of thing but I hope you see what I'm trying to
demonstrate.

I have no idea how the encoding would be affected by this but I'm sure it
would be workable.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in message news:TZ******** *************@w ards.force9.net ...
Whato chaps,

I work (or am hoping to work! :) for a company that specialises in the
following:

- Localisation of media - including software, manuals, literature and
training material.
- Creating training material themselves in many langauges built to order.

The main thing I'm thinking about for the company is maybe a sort of content management system whereby they can provide a system that allows customers to organise their training material and even make new material on the fly.
Thats just one area.

On the whole, I am wondering if anyone has any ideas about how xml, xsl and all the rest of the new data technologies could be used in a company that
specialises in translation of all sorts of material but especially, training material, marketing material and business presentations

Any help would be really really greatfully received

Thanks everyone

Simon


Jul 20 '05 #5
Thanks for that Chris,

Here's the important thing - most small companies don't have a dedicated IT
staff able to make constant changes to the site at short notice. The usual
model is that there is a single individual that has a number of roles, one
of them being maintaining the website. That produces a bottleneck and
eventually comapnies begin to resent making new content, which is a shame,
because content is exactly what makes a website interesting.

So, my point is, I'm going to be that person, UNLESS, there is someway to
make XSLT hidden from the content makers. I have to say that I wouldnt think
making XSLT docs is easier than say jsp or asp.net though. The difference is
though, that XSLT has a number of well known advantages. The problem is
using xslt in a way that doesnt scare non-techs

Simon
Jul 20 '05 #6
XSLT can be hidden but it does mean that you have to have in place some form
of content management accessible to all. I've seen it done in a web
environment (image upload, document upload etc.) and dynamic HTML editing
using the MS html edit control.
It should be possible to have a basic XML layout for a document that defines
what the document is (eg. ID, name, description, keywords etc.) and then
allow the specific document to be edited from a series of defined templates.
Storing it all in a database then allow the site content to be dynamically
created using the defined XSLT documents combined with the XML.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in message
news:_h******** *************@w ards.force9.net ...
Thanks for that Chris,

Here's the important thing - most small companies don't have a dedicated IT
staff able to make constant changes to the site at short notice. The usual
model is that there is a single individual that has a number of roles, one
of them being maintaining the website. That produces a bottleneck and
eventually comapnies begin to resent making new content, which is a shame,
because content is exactly what makes a website interesting.

So, my point is, I'm going to be that person, UNLESS, there is someway to
make XSLT hidden from the content makers. I have to say that I wouldnt think
making XSLT docs is easier than say jsp or asp.net though. The difference is
though, that XSLT has a number of well known advantages. The problem is
using xslt in a way that doesnt scare non-techs

Simon

Jul 20 '05 #7
Your right there chris, and that exactly what I'm looking at actually.

A couple of questions:

How can Dynamic HTML editing be done in a browser. I actually answered
someone else's question on this very topic. He wanted the users to be able
to create their own templates in a browser. The only things I have come up
with is a technique that MS Sharepoint uses to allow the user to customise
pages, put I havent the foggiest how they do that, because I would love to
know.

Also, what is the MS HTML edit control. are we in the same ball park with
these two things.

At the moment I am using Macromedia Contribute to do this sort of stuff. Its
a god send for non tech content authors and is a great price. I'd like some
other options as well though.

Simon
"Chris Barber" <ch***@blue-canoe.co.uk.NOS PAM> wrote in message
news:Oe******** *****@TK2MSFTNG P12.phx.gbl...
XSLT can be hidden but it does mean that you have to have in place some form of content management accessible to all. I've seen it done in a web
environment (image upload, document upload etc.) and dynamic HTML editing
using the MS html edit control.
It should be possible to have a basic XML layout for a document that defines what the document is (eg. ID, name, description, keywords etc.) and then
allow the specific document to be edited from a series of defined templates. Storing it all in a database then allow the site content to be dynamically
created using the defined XSLT documents combined with the XML.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in message news:_h******** *************@w ards.force9.net ...
Thanks for that Chris,

Here's the important thing - most small companies don't have a dedicated IT staff able to make constant changes to the site at short notice. The usual
model is that there is a single individual that has a number of roles, one
of them being maintaining the website. That produces a bottleneck and
eventually comapnies begin to resent making new content, which is a shame,
because content is exactly what makes a website interesting.

So, my point is, I'm going to be that person, UNLESS, there is someway to
make XSLT hidden from the content makers. I have to say that I wouldnt think making XSLT docs is easier than say jsp or asp.net though. The difference is though, that XSLT has a number of well known advantages. The problem is
using xslt in a way that doesnt scare non-techs

Simon

Jul 20 '05 #8
Found it - once I get it dragged up to the right server I'll bung it up
online for you and let you have a login (it's a database login this time),
not a NT user account.

It's pretty complex but it looks like the majority of the DHTML editor bit
is in one page and encapsulated within a JavaScript include file.

Chris.
"Chris Barber" <ch***@blue-canoe.co.uk.NOS PAM> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
OK - I'll have to dig in the archives but a friend of mine gave me a copy of
his site that does dynamic - to database - HTML editing in the browser using
an ActiveX control (dhtmled.ocx ?). Allows images to be uploaded and then
selected and inserted into the HTML page.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in message
news:JM******** *************@s tones.force9.ne t...
Your right there chris, and that exactly what I'm looking at actually.

A couple of questions:

How can Dynamic HTML editing be done in a browser. I actually answered
someone else's question on this very topic. He wanted the users to be able
to create their own templates in a browser. The only things I have come up
with is a technique that MS Sharepoint uses to allow the user to customise
pages, put I havent the foggiest how they do that, because I would love to
know.

Also, what is the MS HTML edit control. are we in the same ball park with
these two things.

At the moment I am using Macromedia Contribute to do this sort of stuff. Its
a god send for non tech content authors and is a great price. I'd like some
other options as well though.

Simon
"Chris Barber" <ch***@blue-canoe.co.uk.NOS PAM> wrote in message
news:Oe******** *****@TK2MSFTNG P12.phx.gbl...
XSLT can be hidden but it does mean that you have to have in place some form of content management accessible to all. I've seen it done in a web
environment (image upload, document upload etc.) and dynamic HTML editing
using the MS html edit control.
It should be possible to have a basic XML layout for a document that defines what the document is (eg. ID, name, description, keywords etc.) and then
allow the specific document to be edited from a series of defined templates. Storing it all in a database then allow the site content to be dynamically
created using the defined XSLT documents combined with the XML.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in message news:_h******** *************@w ards.force9.net ...
Thanks for that Chris,

Here's the important thing - most small companies don't have a dedicated IT staff able to make constant changes to the site at short notice. The usual
model is that there is a single individual that has a number of roles, one
of them being maintaining the website. That produces a bottleneck and
eventually comapnies begin to resent making new content, which is a shame,
because content is exactly what makes a website interesting.

So, my point is, I'm going to be that person, UNLESS, there is someway to
make XSLT hidden from the content makers. I have to say that I wouldnt think making XSLT docs is easier than say jsp or asp.net though. The difference is though, that XSLT has a number of well known advantages. The problem is
using xslt in a way that doesnt scare non-techs

Simon



Jul 20 '05 #9
On Mon, 28 Jul 2003 19:50:18 +0100, "Chris Barber"
<ch***@blue-canoe.co.uk.NOS PAM> wrote:
OK - I'll have to dig in the archives but a friend of mine gave me a copy of
his site that does dynamic - to database - HTML editing in the browser using
an ActiveX control (dhtmled.ocx ?). Allows images to be uploaded and then
selected and inserted into the HTML page.
Not necessarily - it allows images to be placed into the layout, but
dhtmled on its own does not perform the file POST requests necesary to
send the images with the HTML file.

Also, the activeX is no longer needed on IE5 and above, you can run
the same commands it suopports directly on a DIV or IFRAME area with
the editable=true attribute.

Cheers _ Neil.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in message
news:JM******* **************@ stones.force9.n et...
Your right there chris, and that exactly what I'm looking at actually.

A couple of questions:

How can Dynamic HTML editing be done in a browser. I actually answered
someone else's question on this very topic. He wanted the users to be able
to create their own templates in a browser. The only things I have come up
with is a technique that MS Sharepoint uses to allow the user to customise
pages, put I havent the foggiest how they do that, because I would love to
know.

Also, what is the MS HTML edit control. are we in the same ball park with
these two things.

At the moment I am using Macromedia Contribute to do this sort of stuff. Its
a god send for non tech content authors and is a great price. I'd like some
other options as well though.

Simon
"Chris Barber" <ch***@blue-canoe.co.uk.NOS PAM> wrote in message
news:Oe******* ******@TK2MSFTN GP12.phx.gbl...
XSLT can be hidden but it does mean that you have to have in place some

form
of content management accessible to all. I've seen it done in a web
environment (image upload, document upload etc.) and dynamic HTML editing
using the MS html edit control.
It should be possible to have a basic XML layout for a document that

defines
what the document is (eg. ID, name, description, keywords etc.) and then
allow the specific document to be edited from a series of defined

templates.
Storing it all in a database then allow the site content to be dynamically
created using the defined XSLT documents combined with the XML.

Chris.

"Simon Harvey" <sh856531@micro softs_free_emal _service.com> wrote in

message
news:_h******** *************@w ards.force9.net ...
Thanks for that Chris,

Here's the important thing - most small companies don't have a dedicated

IT
staff able to make constant changes to the site at short notice. The usual
model is that there is a single individual that has a number of roles, one
of them being maintaining the website. That produces a bottleneck and
eventually comapnies begin to resent making new content, which is a shame,
because content is exactly what makes a website interesting.

So, my point is, I'm going to be that person, UNLESS, there is someway to
make XSLT hidden from the content makers. I have to say that I wouldnt

think
making XSLT docs is easier than say jsp or asp.net though. The difference

is
though, that XSLT has a number of well known advantages. The problem is
using xslt in a way that doesnt scare non-techs

Simon



=============== =============== =============== ===========
CaptionKit http://www.captionkit.com : Production tools
for accessible subtitled internet media, transcripts
and searchable video. Supports Real Player, Quicktime
and Windows Media Player.

VideoChat with friends online, get Freshly Toasted every
day at http://www.fresh-toast.net : NetMeeting solutions
for a connected world.
Jul 20 '05 #10

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

Similar topics

17
7836
by: Kamil Burzynski | last post by:
Hello. I have to create short (1 hour) presentation about C++ advantages over C. Are there any good articles/texts/etc. about such topic? Personally, I'm quite proficient at C++ myself (e.g. I've read and understood many books from H. Sutter, A. Alexandrescu etc.), so I do not need to learn about C++ before making that presentation. I am able to write such presentation myself, but of course - if somebody else written similar text, I...
36
2908
by: Song Yun Zhao | last post by:
Hi, Just wondering what are the dis/advantages of using uint vs int. When would be the best time to use it? Personally I don't use uint that much, but I like to optimize my code and make it as effective as possible. So I feel that using an int where only an uint is needed is a waste. e.g. something like (int i = 0; i < 100; i++)
0
998
by: Olivier Carpentier | last post by:
Hi i think that i have a bug with Visual Studio 2003 with localisation of forms in design mode. It's don't working only with one solution, when i'm trying with another solution, it's working fine On a form, i'm changing property localisable property to true, i'm changing of language and i change buttons text. But all changes affected all langages (default too) Someone know why Thanks by advance Olivier
1
1220
by: Olivier Matrot | last post by:
Hello, I have a W2K3 US Enterprise box on which ASP.NET localisation do not work. A standard installation on a fresh machine with same configuration (regional options and so on) is OK. If the user request french at the browser level, strings are correctly loaded. How could I diagnose this behavior ?
5
1503
by: garyusenet | last post by:
At least I think it's using an API (i don't totally understand the concept.) I'm using Act 6. I need to interface with the act database and add 'contacts' to the database. The reason I need to do this is because i'm writing a little program to add a new prospect to the database when a telephone lead rings through, the receptionist will use this program, enter a few pieces of information and then transfer the call to the salesman - at...
6
4995
by: Lenny Wintfeld | last post by:
Hi I'm attempting additions/changes to a Java program that (among other things) uses XSLT to transform a large (96 Mb) XML file. It runs fine on small XML files but generates OutOfMemory exceptions with large XML files. I tried a simple punt of -Xmx512MB but that didn't work. In the future, the input XML file may become considerably bigger than 96 MB, so even if it did work, it probably would be putting off the inevitable to some later...
9
2899
by: chinu | last post by:
hi all, i did a small experiment to grasp the advantages of declaring a function as inline. inline int fun1(); int main(){ unsigned int start=0,end=0; asm("rdtsc\n\t"
2
1692
by: Dabulsta | last post by:
I am trying to design a network using Windows Server 2003 Active Directory infrastructure for the following company(below) and I was wondering if there was some sort of walk through available to help me throughout the design process, any suggestions will be welcomed. The company Technical Computing has acquired a set of new offices with the option of taking over more at a future date. The company has been established as a private tuition...
0
9579
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9416
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
10199
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
8861
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
7393
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
6661
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5293
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3948
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
3
2810
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.