All Questions

0 votes
0 answers
2 views

How to perform conditional formatting on Oracle Apex Bar Graph

I want to perform some simple formatting for a bar graph in Oracle Apex. In a numerical graph, given a value, I want to draw a horizontal line across the y axis at that value and any bars that contain ...
-1 votes
0 answers
7 views

Pop OS failed install

Tried installing Pop OS via USB, text box says "installing Pop OS failed, possibly due to a hardware error" Tried different drives and images, not working, error log says WARN: rsync: [...
0 votes
0 answers
2 views

how can to become an android developer

I have been exploring various codelabs in Google's beginner course for Android. Although I am not a beginner in programming, I am new to Android development. However, I found the course not ...
0 votes
1 answer
20 views

Loading Indicators in SwiftUI causing infinite renders

I have a loading indicator class that is utilized in all view models, what I'm trying to do is to track each API's loading state independently rather than having one loading flag for the entire VM. I ...
0 votes
0 answers
9 views

What's the best way to pass an object as a paremeter into a method in Java?

I would like to pass an object called user created from the Player class into my playerSetup method. However, when I pass user into the method, and try to call user.setName(), Java gives an error and ...
8 votes
7 answers
48k views

XML declaration allowed only at the start of the document

My blog feed show error today: This page contains the following errors: error on line 2 at column 6: XML declaration allowed only at the start of the document Below is a rendering of the ...
0 votes
0 answers
33 views

How to make the variable loaded in one loaded file available in Scheme?

I have the following directory structure (minimal demo): main.scm (load "regex_utils.scm") (displayln "test") ... regex_utils.scm (load "utils.scm") ... ; load many ...
0 votes
0 answers
3 views

GoRouter navigating to the root or top of the stack when opening keyboard

I have implemented GoRouter in the flutter app and managed all the routes and the app flow and navigation works fine. However when I open the keyboard for any input fields like text field and form ...
0 votes
0 answers
6 views

why getting parameter is not valid when dragging the custom progressbar to the form1 designer?

it was working fine first time when i dragged the custom progressbar to the form1 designer from the toolbox. but now each time i try to drag it i get the exception error message. and i didn't change ...
0 votes
1 answer
44 views

Weird timings when measuring the perfomance of binary search

Okay, so what is happening here puzzled me for 2 days. Basically, as an activity I was measuring how much time some algorthim takes to execute in its worse, average, and best cases. Until now, I got ...
-1 votes
1 answer
11 views

jar file is not generated in my spring project

My name is Alex. I am learning spring and I have already completed a project. Now I want to upload it to the internet and publish it in my portfolio. However, when I give the following command in cmd: ...
0 votes
0 answers
43 views

How to ensure non-async portion of async function executes before view assignment?

I have following (simplified) model: struct PostDetailResponse: Codable { var post_detail: PostDetailContent } struct PostDetailContent: Codable { var userHasLiked: Bool? enum CodingKeys: ...
0 votes
0 answers
9 views

Figuring out the difference between cv::imread / cv::dnn::blobFromImage and QImage

I have the following image loading code (example: to feed YOLO recognition algorithm) which works: cv::Mat image = imread(image_path, cv::IMREAD_COLOR); cv::Mat blob = cv::dnn::blobFromImage( image, ...
3 votes
2 answers
713 views

Building a Public GitHub Repository using Azure DevOps

How do I build a Public GitHub repository using Azure DevOps as part of my Build Pipeline? For example, I use an Open Source toolkit such as SonarQube I'd like the SonarQube deployed using Continuous ...
0 votes
1 answer
20 views

How to Remove the "Series1" Label from a Pie Chart in "openpyxl" in Python?

I'm using openpyxl to create an Excel file that includes a pie chart. However, I can't seem to remove the default "Series1" label from the chart. I have included the entire export_to_excel ...
0 votes
1 answer
7 views

Decreasing Unity resource usage when sitting in a menu

I was wondering if there is any way to lower the amount of resources that Unity uses when its ostensibly not doing anything - such as sitting in a menu that isn't animated. This is something that ...
1 vote
1 answer
249 views

Using Inotify and/or epoll to monitor processes terminating, perhaps using the /proc/<PID> directory

Have an issue where we want to be able to receive an event in one process if another, unrelated process terminates. The first process is sent the PID of the second process. The first process allocates ...
0 votes
0 answers
21 views

cannot access class com.sun.tools.javac.api.JavacTrees (in module jdk.compiler)

I have customized an annotation handler using java21. The pom file of the project where the annotation processor is located is shown below: <project xmlns="http://maven.apache.org/POM/4.0.0&...
1 vote
3 answers
9k views

How to enable Android-14 'Accessibility' Restricted Setting?

In Android 14, we utilized the 'Accessibility' service API in our application. However, this option is not available by default. After clicking "OK" on the 'Restricted Setting' dialog, we ...
0 votes
0 answers
4 views

Idle object detection with how much time it is idle using opencv

Opencv is used to detect the objects that are in motion. But, can we detect the objects which are not moving instead of the moving objects with the time stamp that how much time the object is idle? I ...
0 votes
0 answers
2 views

Unity runtime-created Particle system graphic bug

To create Explosions in my Unity Game, I pool 3 runtime-configured particle systems, with the stop-action equals to disable (so I can pool all disables particleObjects); I do something like this: ...
3 votes
1 answer
10k views

"npm install @azure/msal-browser @azure/msal-angular@latest" but nothing inside of node_modules

I'm trying to include Azure AD for the login, but after running npm install @azure/msal-browser @azure/msal-angular aswell as npm install @azure/msal-browser @azure/msal-angular@latest no new entries ...
0 votes
3 answers
11k views

Workbooks.Activate not working on some computers

I ran into a strange Excel 2013 VBA behavior today and felt posting the solution to the problem may help someone else in the future. The following command worked fine on my computer and most others ...
4 votes
2 answers
17k views

How can I load cross domain html page with jQuery AJAX?

How can I load cross domain HTML page with jQuery AJAX? Suppose I want to get a page outside my domain using jQuery AJAX: $.get('http://www.domain.com/mypage.html', function(data) { alert(data); })...
0 votes
1 answer
15k views

Display selected range of cells in Textbox1

I am facing an issue while trying to display a selected range of cells from Excel to a UserForm textbox, say C1:E14. The code below is giving me an Runtime error '13' Type Mismatch: Private Sub ...
0 votes
0 answers
18 views

Problem With Adding SFML 2.6.1 To Dev C++ (Linker Error)

I'm trying to add SFML 2.6.1 to Dev C++ (I use Windows 7). I added lib and include to Libraries and C++ Includes in Compiler Options; and added "-lsfml-graphics -lsfml-window -lsfml-system" ...
0 votes
1 answer
1k views

Parsing KML/XML with ElementTree library

I would like to parse the "ID2" name attribute found in the SimpleData tag utilizing the ElementTree python library. <Placemark> <ExtendedData> <SchemaData> ...
0 votes
0 answers
13 views

Protobuf parse message fields one at a time

I am familiar with the protobuf wire format where the designers chose not to include the size of the serialized message on the wire. I am also familiar with the strategies to deal with it from scratch:...
-1 votes
0 answers
17 views

C# reading large file data of leads to memory leak

I have a file having 2500000 lines. each line has this format data : -946.469900574903,2024-07-03 15:56:20.562891 I am reading this file in chunks of every 25000 lines, i.e 100 times ...
0 votes
2 answers
20 views

Most idiomatic way to mutate multiple similar columns?

I'm generating multiple columns in a mutate() call, all by using a function of 1) an already-existing column and 2) some value which is different for each output column. The following code produces ...

15 30 50 per page
1
2 3 4 5
806895