24,744 questions
Best practices
0
votes
5
replies
93
views
Connection with OPC Server in C++
I am a newbie and I want to connect with my OPC server by means of c++.
Please write me a code and talk my which library is good.
I use a .NET framework too.
Write to me a easy launguage, because I am ...
0
votes
1
answer
73
views
Deploying SpringBoot backend on server. URL/URI not hierarchical due to jar file
I'm working on a project for school. It's almost finished I just need to deploy the application to a server. I am doing this step-by-step.
I have built the application on the server using the command ...
3
votes
0
answers
124
views
Audio played from server sounds sped up and crackling
I made a server in C that sends data bit by bit over to a client. The client then plays the audio bit by bit, but the audio on the client end doesnt sound right at all. Its a bit sped up and sounds ...
Best practices
0
votes
2
replies
29
views
Resize Partition without deleting Data
I have a small Ubuntu server running at home.
It uses a 500GB SSD and today i noticed that it seems to be nearly Full.
This should not be the case so i checked the Drive with
lsblk -o NAME,FSTYPE,SIZE,...
0
votes
1
answer
125
views
Nuxt /server auto-imported types not updating
I can't seem to find anything related to my problem, so I'm currently not even sure I'm searching for the right things. I would be very glad if someone could give me any pointers.
My problem:
Inside ...
Best practices
1
vote
2
replies
85
views
Client and Server Side share same resources
I’m making a simple chat application in Java using the java.net package. Both the client and server sides, I've separated to different projects.
However, I’m struggling to keep a clean design. For ...
2
votes
1
answer
150
views
fix blocking issue when trying to parse HTTP request in java
I'm trying to parse HTTP requests for fun and I'm currently stuck because the method I'm using blocks until input is received.
byte[] buffer = new byte[1024];
while (!request.isDone()) {
int n = ...
1
vote
1
answer
120
views
In NextJS 16+, can "use cache" directive work on server actions?
I am trying to cache the response of a query inside a server action file:
export async function getCachedSession(userCacheToken: string, token: string) {
"use cache";
cacheTag(`user-session:...
Advice
0
votes
4
replies
58
views
How to deploy Spring Boot + React + MySQL website? What services are required?
I am a fresher and I am building a small hotel website.
My tech stack is:
Backend: Spring Boot (Java)
Frontend: React
Database: MySQL
I want to deploy this project so that it is publicly accessible ...
Best practices
0
votes
0
replies
54
views
Secure remote access
I have a question about the organization of secure access to remote working resources. The following remote access scheme is discussed:
OpenVPN Remote Desktop Gateway + 2FA (PrivacyIDEA) Remote ...
Best practices
0
votes
1
replies
72
views
What is the best implementation for probably a simple idea I have?
Here's what I want to do: I want to store files onto my office's computer.
I lack experience in terms of completed solutions. I’ve only built a prototype once via ChatGPT, and I want to ask if this is ...
0
votes
0
answers
58
views
Solr 9.9.0 getting slow when there is high load
I'm using Solr 9.9.0 and I recently increased the server RAM from 16 GB to 32 GB, as well as the JVM heap memory to 16 GB. The issue I'm facing is that under high load, both the Solr 9.9.0 UI ...
0
votes
0
answers
34
views
Why can I not start the Server-Application after the Desktop-Application (in Android Studios/Compose Multiplatform)?
I can't start the Server-application after executing the Desktop- or Web-application in a Compose Multiplatform project.
This makes it hard to test the server coming online and going offline while ...
0
votes
0
answers
78
views
Socket TCP connection through Radmin (can't connect) in Console Application
I made a simple console messenger to test the possibility of connecting 2 or more computers for my game using RadminVpn+Sockets but its not working. I can connect to myself using my radmin ip but if I ...
Advice
3
votes
2
replies
116
views
How to start Visual Studio Code PHP Server automatically
I'm using Visual Studio Code for website development, HTML, CSS, Javascript and PHP.
I'm trying to find a way to start the PHP Server automatically when I load Visual Studio Code.
It is just ...