Newest Questions
24,163,958 questions
Advice
0
votes
0
replies
4
views
liferay 7.4 freemarker and custom fragments
I am new to developing in Liferay 7.4. I am making a custom fragment and when I publish it, it doesn't process the freemarker code but only displays it like regular html.
Any help appreciated.
0
votes
0
answers
3
views
Any tips to speed up NavMesh baking
Ive created an usuall enemy script but the NavMesh tales to long And any times open something takes also to long like open an script in inspector .So what i want are tips that either speeds up ...
0
votes
0
answers
6
views
Rotation of #d cube on a corner
I have been trying to rotate a 3D cube on a corner using C code. My program works fine except the
rotation is wrong. The rotation is now South West to North East. What I want is rotation West to East.
...
0
votes
0
answers
4
views
Is enum conversion safe provided that the target data type is forced to be big enough with a big-valued constant?
I'm writing a software in C99 which consists of two git repositories, one of them a submodule.
The submodule declares an error code enum in a header:
enum err_cause {
ERR_CAUSE_A = 1,
...
0
votes
0
answers
4
views
Install ghostscript > 10 on amazon linux 2023
I have amazon linux 2023 instances, and the default ghostscript version available is 9.56. Is there an easy way to install a version > 10 ? I don't really understand if it's possible to add like ...
0
votes
0
answers
7
views
Web audio API strange behavior across browsers
There are 2 checkpoints at which I will be writing, wrt the user experience of my app
Checkpoint 1: after uploading of an audio track and pressing play, and
Checkpoint 2: clicking the button which ...
0
votes
0
answers
7
views
Arm assembly passing argument to C function
I encountered a problem when calling a C function from inline assembly. I must say i tried a solution from another topic.
I am working on android. Compiling with Cxxdroid(no complaints).
Here is the ...
0
votes
0
answers
10
views
Alembic creating UNIQUE constraints unnecessarily
This is not a duplicate! I read similar questions and they didn't helped me
I'm trying to figure out how to add a composite unique to a table where the combination should be unique, but the individual ...
0
votes
0
answers
7
views
gradle build running non existent tests on kotlin multiplatform
I think I am missing something here.
I cloned https://github.com/Kotlin/multiplatform-library-template for a new project and have done changes accordingly. The library structure in library src is ...
0
votes
0
answers
6
views
Visual Studio Windows Application single taskbar icon when multiple forms shown
I know I'm missing something obvious, but cannot seem to grasp how to have my windows forms application only show 1 icon on the taskbar.
Currently, from my main form, when I show another form using ...
0
votes
0
answers
11
views
Parcel's and Apollo context
I have a single-spa microapp that was pulling in a single-spa parcel. Both are using apollo graphql queries, but different graphql endpoints. It seems once the parcel called its graphql (which is a ...
Advice
0
votes
0
replies
6
views
Registration for remote sensing image
I am using ACOLITE to do atmospheric correction for a hyperspectral dataset. The output is in NetCDF file without projection. I create a python script to project the data as you can see in the figure ...
Best practices
0
votes
0
replies
11
views
How to distribute a KMP library for JVM without a fat JAR?
I'm developing a KMP library where public API is defined in commonMain, and platform-specific implementations are just bindings to a C library
For Kotlin/Native targets, I use cinterop and binaries is ...
Best practices
0
votes
1
replies
15
views
Why ConcurrentHashMap is not used for adapterCache in Moshi class?
I noticed that we have two sychronized blocks when getting an adapter for a specific class, here and here. What was the reason for not choosing ConcurrentHashMap for adapterCache?
Advice
0
votes
0
replies
10
views
What is the purpose of VK_ACCESS_2_COLOR_ATTACHMENT_READ_BIT?
VK_ACCESS_2_COLOR_ATTACHMENT_READ_BIT specifies read access to a color attachment, such as via blending (other than advanced blend operations), logic operations or certain render pass load operations ...