|
|
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for us to do it all for you.
So we need you to do the work, and we will help you when you get stuck. That doesn't mean we will give you a step by step solution you can hand in!
Start by explaining where you are at the moment, and what the next step in the process is. Then tell us what you have tried to get that next step working, and what happened when you did.
If you are having problems getting started at all, then this may help: How to Write Code to Solve a Problem, A Beginner's Guide[^]
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Based on his profile, I'm betting he has an application he wants to sell you...
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
I figured as much, but ...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
So you want someone to answer your obvious homework question for you?
No. This is where YOU start doing your own research into what Web 3.0 is, the technologies involved, and how they apply to apps like DoorDash and GrubHub.
Open up a browser to Google and get to work. Asking other people to do your work for you isn't going to get you very far.
|
|
|
|
|
nithin sethu wrote: transform the food delivery app
It won't. That is the answer.
|
|
|
|
|
What is the difference between JDK, JRE, and JVM?
|
|
|
|
|
|
The second and third letter.
(If you want serious answers, then you need to learn how to ask better questions, and do your own basic research first.)
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
|
JDK = Java Development Kit, basically it's the SDK (Software Development Kit) of the Java world. Long story short, it'll contain the libraries and tools needed to help build a Java application. It also ships with the JRE, but contains so much more. You'll need to install this on your development machine.
JRE = Java Runtime Environment, this will need to be installed to run a Java application on a non-development machine. It'll contain the pre-built binaries that even the JDK will use and there will be some overlap as far as while goes into it when compared to the JDK. But, you'll need to install this on your end users machines. They won't need all the tools a developer does and this installed only what's needed to run an application.
JVM = Java Virtual Machine, Java compiles down to a bytecode and not native code. The VM is what reads the bytecode and runs it on the computer. Anything written in Java must be ran through this and both the JDK and JRE will install it as an application or library cannot run without it.
Jeremy Falcon
|
|
|
|
|
I have a set of IoT devices that connects to Azure IoT hub regularly to send in telemetry.
Sometimes I need to send messages to the device. I do this my using the:
devices/{device_id}/messages/devicebound/# queue.
The device are using a built-in MQTT library.
If I send something to the device while it is offline, it was my impression that the
message should be retained in the devicebound queue until the device came online again, and read the queue.
If I send the messeage when the device is online, everything works ok, and the device gets the message.
If sent while offline, the queue is empty when the device come online again, and the message is lost.
Am I right in assuming that the devicebound queue should retain the message until the device comes online and read it?
TIA...
|
|
|
|
|
You can't assume anything. To assume they always get saved is to also assume an unlimited amount of space for an indefinite period of time, etc.
You review the settings and their defaults.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
I do not assume, I'm asking if the mqtt spec. Specify that messages is retained in the queue if the target in offline.
I am perfectly aware of space and time limitations.
|
|
|
|
|
Dag Sunde wrote: I'm asking if the mqtt spec. Specify that messages is retained Why not read it and see what it says?
|
|
|
|
|
If you don't know...
I have trouble finding it in the spec.
I don't ask for help on things before I've tried to look it up myself.

|
|
|
|
|
Your question asks what the spec says. I merely suggested that you can read it yourself in order to find the answer.
|
|
|
|
|
Because the content is bigger than the container, and the default (usually) is to add scroll bars unless you turn them off (for the container).
It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it.
― Confucian Analects: Rules of Confucius about his food
|
|
|
|
|
Thank you So much, is there any quick code to fix it please ? i really appreciate that.
thanks once again for your response
|
|
|
|
|
The horizontal Scroll bar generally comes you have wide content or a fixed-width element that is wider than the viewport. It may also occur because of other factors.
|
|
|
|
|
Set the width of the container fix. so that the content of website cannot change the width of the container.
|
|
|
|
|
which one would you prefer when it comes to sending data to a web server I am working on a project and I don't know which one to use between a node mcu and an ardruino uno(with gsm)
|
|
|
|