|
I'm looking for a embedded language that can be used to script common code between a server app written in C# and a client app written in Flash/Actionscript. It is important that the embedded language interpreter run natively in the environment it is ...
Started by AnthonyF on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll find.
Pair that up with LuaInterface and you've got an embedded language on both sides.
Ugly, but someone has successfully embedded Lua into Actionscript through Alchemy -- demo on Google Code .
|
|
What best practices have you used in unit testing embedded software that are peculiar to embedded systems?
Started by Brandon E Taylor on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
This usually....
For stuff that did require the hardware, unit tests were on a non-embedded platform.
Embedded software may have come a long way in the last 10 years but we generally did the following and tested on a non-embedded platform.
|
|
If I have HTML with embedded code inside, for example a embedded player of YouTube, can I build in JavaScript, AJAX, etc. preloader for this player?
Because if I have only the player embedded, the page is white in the loading moment, and later the player...
Started by enry on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The embed objectPerhaps I'm misunderstanding, but if the embedded component can signal a DOM event, you can catch; <embed width="425" height....
As is the case when using a YouTube clip), you could place a div behind the embedded object.
|
Ask your Facebook Friends
|
Hi all,
I need an embedded/In Memory Database which support multithread access.
Thanks!
Leo
Started by Leo on
, 10 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Or Firebird Embedded
For proof that they are thread-safe check the links provided by Mohammed Nasman
Sqlite
Firebird Embedded (version 1.5 and later , an open-source component lib has rxMemTable....
You can use SQlite3 with the DISQLite3 library.
|
|
How to integrate dotnet in embedded?
Started by praveen kumar jaiswal on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If your are talking about ASP.NET on a embedded device you will find that .NET Compact.
For Mobiles.
|
|
Can you recommend a minimalistic python webserver that I can embedded in my Desktop Application.
Started by Ankur Gupta on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
It just ....
I made this one.
If you need more features, look into CherryPy or (at the top end) Twisted .
How minimalistic and for what purpose?
SimpleHTTPServer comes free as part of the standard Python libraries .
See the WSGI reference implementation.
|
|
When an email has an embedded image in Gmail, can the sender trace IP of the send to user?
Answer Snippets (Read the full thread at superuser):
It is the same as with Hotmail, Outlook or anywhere else which is why you usually... .
Yes, the image is loaded on to your machine as if you were visiting a web page, so your ip will show up in their server logs or script that is monitoring the email e.t.c .
|
|
What embedded programming/design books would you suggest? With embedded I mean near to hardware programming in ASM and C/C++. I'm looking something related to best practices in embedded programming/design. Operation system could be Linux, Real Time Linux...
Started by Velho Kerho on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It taught me how to think....
Programming Embedded Systems in C and C++
http://www.amazon.com/Programming-Embedded-Systems-C only read Programming Embedded Systems , and I think it's a good, general guide, to embedded programming.
|
|
When I hear that, I always think about an mobile device. But why is the hardware "embedded" there? Isn't the whole device the hardware? Why is a personal computer no embedded hardware system?
Started by Thanks on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
In today's world embedded simply refers to a system with one or more of the following traits reliability (you shouldn't have to reboot your dishwasher or microwave) I worked in the "embedded" area for a while and we considered anything ....
|
|
Hi all,
I have an embedded board . Can someone suggest an Ideal Linux distro for such a configuration, keeping in mind that it also needs to capture images in realtime. I plan to use Qt_Embedded for application development on such a system.
Thanks
Started by rocknroll on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I talked to someone who worked at a company that produced embedded
For true embedded, I suggest something....
You can get special distros of Linux that are specifically intended for embedded development and see if Debian would work for you.
|