Skip to main content
Advice
0 votes
2 replies
24 views

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, ...
Akito Hayasaka's user avatar
-1 votes
1 answer
134 views

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 ...
user23282541's user avatar
0 votes
0 answers
34 views

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 ...
Ben Fuqua's user avatar
1 vote
2 answers
162 views

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....
The Welder's user avatar
  • 1,099
0 votes
0 answers
70 views

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 ...
Nathan's user avatar
  • 21
0 votes
2 answers
51 views

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 ...
Compholio's user avatar
  • 1,062
2 votes
1 answer
49 views

Assembly A: public class Data { public string Text {get; set;} } Inside Assembly B ( references A): List<string> stringList = GetSomeStringsAtRunTime(); Data obj = new Data(); propertyGrid....
Piglet's user avatar
  • 29.3k
3 votes
1 answer
101 views

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 ...
Enlico's user avatar
  • 30.4k
1 vote
0 answers
48 views

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 ...
gjh33's user avatar
  • 121
0 votes
1 answer
1k views

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 ...
Raul Gonzales's user avatar
0 votes
1 answer
144 views

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 ...
Fran's user avatar
  • 19
0 votes
0 answers
67 views

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+...
Erik343's user avatar
  • 343
1 vote
0 answers
131 views

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 ...
sahab ebrahimi's user avatar
0 votes
1 answer
82 views

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::...
rabolon's user avatar
  • 11
1 vote
1 answer
224 views

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 ...
JL Gradley's user avatar
  • 2,093

15 30 50 per page
1
2 3 4 5
523