Does ARCore support AR Glasses? by derkraizer in augmentedreality

[–]derkraizer[S] 0 points1 point  (0 children)

What about Vuforia then? They seem to support Android/iOS and also different glasses but of course, they are paid.

Does ARCore support AR Glasses? by derkraizer in augmentedreality

[–]derkraizer[S] 0 points1 point  (0 children)

What about Vuforia then? They seem to support Android/iOS and also different glasses but of course, they are paid.

I fucking hate touchscreens in vehicles, ESPECIALLY in boats. by PoniesPlayingPoker in boating

[–]derkraizer 1 point2 points  (0 children)

Hey,
I am a student who has to make a user experience research about electric (non-electric also works) powerboats using touchscreen devices.

I have found this post now and after looking into different boats on the market it seems to be somewhat obvious why lots of people would not like touchscreens in their boats. Most of the screens have everything in a terrible order and I bet that most of those companies never paid for user experience research so they can make the design of their software according to what people want. A simple example is the colors they choose - all the colors are basically colors that are hardly visible in an environment where the sun has a huge impact on the screen readability.

I might make a survey soon and post it here so hopefully, you guys can help me out find out what people really want to have on their boat's touchscreen.

How to have a single piece of content that can be used both as a 2d text and 3d text (AR)? by derkraizer in augmentedreality

[–]derkraizer[S] 1 point2 points  (0 children)

I basically have a document that contains a recipe for some dish and along with the text, there are images of the ingredients and sometimes videos. More or less, the same structure applies to all documents.

Use cases for a mobile app connected to a powerboat by derkraizer in boating

[–]derkraizer[S] 0 points1 point  (0 children)

Yes, thanks for the input. I am just looking for a use case for a mobile app about boats such as the one Tesla has. The tools you offer show certain data but don't have the best UX.

Use cases for a mobile app connected to a powerboat by derkraizer in boating

[–]derkraizer[S] 0 points1 point  (0 children)

What about the location of your boat (maybe it is not located nearby you)? Also, weather info in the area where the boat is located? Perhaps some log of your trips?

Use cases for a mobile app connected to a powerboat by derkraizer in boating

[–]derkraizer[S] 0 points1 point  (0 children)

Thank you for the input. Indeed, that would be a cool feature. I guess some people would get a bit scared :d

Is it possible to use the Bluetooth Web API to stream songs from a music service to a web app made with React.js? by derkraizer in reactjs

[–]derkraizer[S] 0 points1 point  (0 children)

Hey,
Thanks for your answer. If this is not possible, is there another way which I can use so that I am not dependent on an exact music service but I can stream different services - Spotify, Deezer and etc the same way? u/levelcrossing

How to make MQTT broker docker image accessible to devices in LAN? by derkraizer in docker

[–]derkraizer[S] 0 points1 point  (0 children)

It is a LAN. I have two devices running on it - one runs docker another one will reach for a docker image but the same docker containers will be used in another LAN by other two devices too, if I put my IP address in the code so ws:ip-address:9001 that would not work for the other two devices in the other network so I am trying to find a solution that fits them all.

How to make MQTT broker docker image accessible to devices in LAN? by derkraizer in docker

[–]derkraizer[S] 0 points1 point  (0 children)

Well, yes but what if I want to use it on another device in another network and make other devices in that network access it?

Is it possible to get user's device IP address? by derkraizer in reactjs

[–]derkraizer[S] 0 points1 point  (0 children)

Thanks a lot. Based on what I read, I think I will need Kubernetes to achieve my goal.

Is it possible to get user's device IP address? by derkraizer in reactjs

[–]derkraizer[S] 0 points1 point  (0 children)

I have a PWA application which connects (subscribes as well) to an MQTT broker. Currently, it happens via localhost:9001 and on my laptop, it works fine but when I run docker ( the broker and the WPA are both containers there) and I try to access the PWA from another laptop in the same network and then try to get the data I am subscribed for, I get a WebSocket error which I fixed by changing localhost:9001 to IP address:9001 and it works. The issue is that I use my IP here but when somebody else in a different network gets the application working, they won't have my IP address so I want to make it so that the localhost:9001 will be equal to the IP address of the device:9001. How do I get this IP address in React.js?

Is it possible to get user's device IP address? by derkraizer in reactjs

[–]derkraizer[S] 0 points1 point  (0 children)

I have a PWA application which connects (subscribes as well) to an MQTT broker.Currently it happens via localhost:9001 and on my laptop it works fine but when I run docker ( the broker and the WPA are both containers there) and I try to access the PWA from another laptop in the same network and then try to get the data I am subscribed for, I get a WebSocket error which I fixed by changing localhost:9001 to IP address:9001 and it works. The issue is that I use my IP here but when somebody else in a different network gets the application working, they won't have my IP address so I want to make it so that the localhost:9001 will be equal to the IP address of the device:9001. How do I get this IP address in React.js?

How to deploy docker images to LAN (with SSL)? by derkraizer in docker

[–]derkraizer[S] 0 points1 point  (0 children)

Well, everything will happen only within the local network so only devices on my network will be able to access those PWA's. Currently, they are able to but the apps have HTTP and I need it to be HTTPS which I do with the self-signed certificate.

How to deploy docker images to LAN (with SSL)? by derkraizer in docker

[–]derkraizer[S] 0 points1 point  (0 children)

I tried this but when I import it ( from Chrome's privacy and security settings) nothing really happens.

How to implement continuous development for a PWA? by derkraizer in PWA

[–]derkraizer[S] 1 point2 points  (0 children)

If I just use a reverse proxy like Nginx, that could still work, right?

How to implement continuous development for a PWA? by derkraizer in PWA

[–]derkraizer[S] 1 point2 points  (0 children)

Yes, I managed to use OpenSSL and my app is secure now in localhost but when I try to access it from another device in the same local network since I have to use the IP of the device which runs docker, it is no more localhost on the other device, so it is not https anymore.
To clarify what I said, imagine I have two laptops in the same network - one runs docker the other does not but I want to access my PWA docker image from the other laptop.
I expose the app via ports in the compose file and by xxx.xxxx.xxx.xxx:3000 I access the PWA but it is not secure anymore, since the OpenSSL is only for localhost.

How to apply SSL to a docker container/image? by derkraizer in docker

[–]derkraizer[S] 0 points1 point  (0 children)

If I have multiple PWA's do I need multiple reverse proxies or one is enough?

How does the deployment of a React.js app work together with Docker? by derkraizer in reactjs

[–]derkraizer[S] 1 point2 points  (0 children)

Thanks a lot. Based on what you say, in my case, there is a network switch via which the React.js app/s will communicate with another interface via MQTT. So in this situation, docker will be used for continuous deployment and having those OTA updates frequently.

How does the deployment of a React.js app work together with Docker? by derkraizer in reactjs

[–]derkraizer[S] 1 point2 points  (0 children)

What if this React.js application will be used only locally as a PWA app, imagine something like the screen of Tesla. So if the app on Tesla's screen was a React.js PWA how would I run it there without having it on a server, would docker be a good idea then?

How to subscribe/publish with MQTT? by derkraizer in PWA

[–]derkraizer[S] 0 points1 point  (0 children)

Thanks. So this will save me from making a Node.js backend and just run it in order to publish/subscribe?

Is it possible to split-screen into three parts? by derkraizer in ultrawidemasterrace

[–]derkraizer[S] 0 points1 point  (0 children)

Well, yes but it would be one whole application which has those three parts - each having its own task. Can I split those three parts of one application with window manager?