7,844 questions
Advice
0
votes
2
replies
24
views
How can Unity YAML scene files be interpreted in an external runtime?
I'm working on an experimental project called NextLiber VRM, which attempts to interpret Unity scene files outside the Unity runtime.
Unity stores scenes in YAML format, including transforms, ...
-1
votes
1
answer
134
views
How to give root access to Java Runtime Process? [closed]
I am trying to run a bash command through Java.Runtime.exec(), specifically coredumpctl.
I am only able to run the command on a bash terminal when I login as a root user, and this doesn't seem to be ...
0
votes
0
answers
34
views
Large variation in spark runtimes
Long story short, my team was hired to take on some legacy code and it was running around 5ish hours. We began making some minor changes that shouldn't have affected the runtimes in any significant ...
1
vote
2
answers
162
views
Different handling of signed value between MSVC and GCC
Take the below piece of code, that simply Trims a string, removing whitespace characters from either end:
const std::string TrimString(const std::string& s)
{
const auto iter = std::find_if(s....
0
votes
0
answers
70
views
Rider program arguments does not include \r and \n
I moved development of a project from Visual Studio to Rider. When I was working in Visual Studio, when pasting my input within the launch arguments, these would retain formatting. This was important ...
0
votes
2
answers
51
views
With g++, how can I have class member symbols evaluated at runtime instead of link time?
I have a library from a vendor, for non-technical reasons this library needs to be treated as immutable. This library is used as a relatively small portion of a very large software project, but the ...
2
votes
1
answer
49
views
How to get a runtime list into a PropertyGrid?
Assembly A:
public class Data
{
public string Text {get; set;}
}
Inside Assembly B ( references A):
List<string> stringList = GetSomeStringsAtRunTime();
Data obj = new Data();
propertyGrid....
3
votes
1
answer
101
views
What does "single run-time representation" mean in Bjarne Stroustrup's description of type erasure in "The C++ Programming Language"?
In The C++ Programming Language - 4th edition, in §25.3 at page 731-732 Bjarne Stroustrup shows a possible implementation of a Vector template class that's been specialized for all T* template ...
1
vote
0
answers
48
views
Sorting sync and non-sync at runtime
I'm working on an ECS system that automatically multithreads systems (similar to bevvy). However sometimes third party libraries don't play nice with multithreading. Bevvy's answer is resources, but ...
0
votes
1
answer
1k
views
asyncio.run() cannot be called from a running event loop
I have looked at previous answers and none of them seem to solve my issue. I am running the below code
from pyracing.client import Client
import asyncio
username = 'My Email Address'
password = 'My ...
0
votes
1
answer
144
views
User Control with binding showing in Designer but not in runtime
I have a main Window that opens a second Window. In this second Window I have many custom UserControls generated in runtime that work just fine. But a group of custom UserControls are declared in the ...
0
votes
0
answers
67
views
Trying to add new Type to Dotnet Runtime from github
Hi I'm trying to modify the .NET runtime from github.com/dotnet/runtime.
I downloaded the release from that github repository website.
Then, you extract the files to C:\rt. Then run .\build.cmd -s clr+...
1
vote
0
answers
131
views
SQL Server Python Runtime Issue
I've successfully installed Python on SQL Server and was able to run simple Python scripts through SSMS without any issues. However, after importing additional libraries (such as matplotlib, etc.), I ...
0
votes
1
answer
82
views
Problems to parallel or thread an Actix_web Server
I wish to resolve the following code, but Rust panics because the actix future server() does not implement the trait Send. I didn't find a way to paralelize the actix server whithout error.
use tokio::...
1
vote
1
answer
224
views
In Angular, is there a way to switch environments while using runtime configuration and developing locally
This question is just about developing with Angular in my local development.
Currently, we're using build-time configuration. When developing locally on my laptop, if I need to point to any other ...