All Questions

0 votes
0 answers
2 views

Trigger server action from select component

I have a server component and I want to submit my select element value to a server action. is it possible to do that in following setup or do I need a client component for this? thanks import { ...
SFernando's user avatar
  • 1,124
0 votes
0 answers
3 views

Kafka can't deserialize the complex nested class

My usecase: When A new address is added, I will send the user domain entity to kafka (it includes array address) to notify the redis caching this data. But it has problem, when I send the user data ...
Văn Hào Trương's user avatar
0 votes
0 answers
4 views

Draw border to column on every side but in top Jetpack Compose

I have a Column with a border like this Column( modifier = Modifier .weight(1f) .fillMaxWidth() .border( width = 2.dp, ...
juske's user avatar
  • 109
0 votes
0 answers
5 views

Julia Sets code along with p5.js and shaders not working

This is my julia.frag #ifdef GL_ES precision mediump float; #endif varying vec2 pos; const float MAX_ITEARTIONS = 1000.0; float calculateEscapeRadius(float power, vec2 c) { // Compute the ...
Augusta Bhardwaj's user avatar
0 votes
0 answers
3 views

An index is associated with another index from another list

I am very new to python and coding in general So I am testing something to see if it could work the output is what you would expect, but is there a better and simpler way to do this? num1 = [1, 2, 3, ...
loszan's user avatar
  • 1
0 votes
0 answers
4 views

Convert Tensorflow model to custom hardware

What are the options to convert a tensorflow model to a custom hardware without hacking mlir or any other complex tasks like creating own delegate. These are my options (any others?): I am thinking ...
HHL's user avatar
  • 1
0 votes
0 answers
3 views

Grafana: display all historical data from OpenSearch

Grafana with OpenSearch does not display all values ​​when the selected time range causes more than 10000 values ​​to be displayed in the same query. I have this: Grafana v11.1.3 OpenSearch v2.4.1 (I ...
mangelo's user avatar
  • 13
0 votes
0 answers
5 views

TensorFlow.js with Expo Camera not processing frames in React Native

I have the following React Native App.js File where I'm trying to print nextImageTensor received, but the flow is not going inside loop(). As a matter of fact loop is not even getting called App.js ...
skaul05's user avatar
  • 2,234
0 votes
0 answers
5 views

Flutter container borderRadius , white background

Im using a container for a bottom navbar. The navbar has borderradius borderRadius: BorderRadius.only( topLeft: Radius.circular(30), topRight: Radius.circular(...
Febin Johnson's user avatar
0 votes
0 answers
7 views

Why does this error occures? (java.lang.UnsatisfiedLinkError: 'long org.opencv.imgcodecs.Imgcodecs.imread_0(java.lang.String, int)

I am trying to capture text from image This is my service class code @Service public class ImagePreprocessingService { static { System.loadLibrary(Core.NATIVE_LIBRARY_NAME); } ...
Sujay Reddy's user avatar
0 votes
0 answers
4 views

Jupyter notebook showing incorrect version of Python in pycharm or vs code

Terminal shows python 3.10.10 Jupyter notebook shows 3.8.19 I am trying to create the new environment with different python version and use pycharm jupyter notebook. I have changed the interpreter and ...
Vinay Badewale's user avatar
0 votes
0 answers
6 views

Using Wordpress has_shortcode to detect do_shortcode

I have a template file where I am using do_shortcode() to execute a short code. In the template file I have: <html> ... <?php do_shortcode( '[my_shortcode]' ); ?> ... </html> I have ...
wileyCoyote's user avatar
0 votes
0 answers
8 views

Synchronous FIFO design code review for a bug in reading values

As a personal project, I have designed a synchronous FIFO in Verilog HDL. Below are the signals used in its design. I have tested my design using Verilog testbench and there I have observed one error. ...
aditya's user avatar
  • 1
0 votes
0 answers
22 views

Compare Objects in C# but ignore some properties of the object while comparing

I am trying to compare 2 objects(Previous Object with Current Object) to check the equality. Values in previous object and current object are same but UUID is getting changed in current object. I dont ...
Kar B's user avatar
  • 11
0 votes
0 answers
17 views

html canvas draw straight line

I want to use MS paint style line tool to draw straight line using UI on html canvas element using JS. The issue is that line preview must be visible on canvas as mouse is being dragged after click at ...
jam's user avatar
  • 15

15 30 50 per page
1
2 3 4 5
1613746