Newest Questions
24,186,323 questions
0
votes
0
answers
4
views
Selecting project .xcodeproj file and Xcode displays No Selection
This randomly happened around 2 days ago. When I click on the main .xcodeproj file for my Xcode project the screen seems to show the expected view with build number etc for a split second, then shows ...
-1
votes
0
answers
5
views
C# Detect if mouse is over any window in hierarchy
How can I check if the mouse cursor is over any window in my window hierarchy.
I have this window structure:
Window 1
Window 2 (owned by Window 1)
Window 3 (owned by Window 2)
Window X (owned by .....
0
votes
0
answers
3
views
Children not showing properly while working with webstorm ide and using developer tools
I have a relatively simple problem that's absolutely killing me, working through a basic web development course and for whatever reason I am not seeing my links as children displayed in the document ...
0
votes
0
answers
4
views
Why doesn't my float comparison work in C?
My expected outcome is that im able to compare floats up to the sixth decimal point. The actual results are that they that it's incorrect, only sometimes though.
Bonus if you can tell me why without &...
0
votes
0
answers
9
views
How to chunk code at semantic boundaries when a single AST node exceeds the chunk size limit?
I'm building a code indexing tool for LLMs using tree-sitter in Go. The goal is to split source files into chunks (~600 lines) that respect function/class boundaries for better LLM context.
When a ...
1
vote
0
answers
8
views
Single ELF relocatable file instead of archive as static library
Historically, why was it decided to use archives (.ar) as static library instead of merging several ELF relocatable files (.o) into one to use as the library?
Would there be any advantages (not ...
0
votes
0
answers
10
views
Linux mint battery swap, now booting to intramfs Gave up waiting for root file system
I have a Dell XPS 13 laptop running Linux mint. Was working fine, and I just swapped the battery for a new OEM one. When I booted up, I now find I drop to intramfs.
My laptop is down, so I can't add a ...
0
votes
0
answers
7
views
Pull Multiple Choice Grid answers from a Form, and insert that data to a Doc template and create a PDF
I am new to app scripts and trying to auto generate a PDF after a Forms submission. The Form has Short Answer, Date, Multiple Choice Grid, and Uploaded photo questions. I currently can only pull the ...
-4
votes
0
answers
35
views
Please help me with Playfair cipher (C#)
It is playfair cipher and the keyword is GOLDEN however my algorithm cannot figure it out. It is using tetragram frequencies for fitness. My guess will be that the problem is something to do with the ...
-1
votes
0
answers
21
views
Paginated reports based on multiple dependant parameters or something else?
Occasionally have to reprint an existing A4 work order, a frustrating manual process because the system involved is not capable of reprinting them. I have been asked to help.
I can use SQL to recreate ...
0
votes
1
answer
32
views
Acumatica PXGrid - How to disable the row highlighting. The selected row styling is 'masking' the custom colors/styles of the grid row
I have been able to customize the row colors of my PX grid (in a Custom Form) using the Page_Load method, however, when the row is 'selected' in the Grid, the color of the selected row is 'masked'.
Is ...
0
votes
0
answers
21
views
Excel VBA Problem copying/pasting rows from one workbook into another based on criteria
I'm trying to create a script that will pull specific rows from one sheet, and then paste then into a new sheet on the workbook that's running the code. It currently works to search through my list, ...
2
votes
1
answer
35
views
Do the bytes "00 10 A1 B3" make sense in Arm 32-bit architecture?
The bytes 00 10 A0 B3 decodes to movlt r1, #0 in the arm 32-bit architecture.
When I type the bytes 00 10 A1 B3 into the shell-storm online disassembler, it shows "N/A".
However, in the ...
0
votes
0
answers
17
views
Why does Spring's HttpRequestFunction fail with a NoSuchMethodError after upgrading to Spring Boot 4.0.0?
I have a Spring Cloud Stream Application which consumes messages from the RabbitMQ Binder and outputs them to Spring Cloud Function's HTTP Request Function.
It looks like this:
Java code:
@...
-1
votes
0
answers
25
views
Append to a plain array when fetching new data
I want to implement a file browser, in React and Relay, that's feed by a GraphQL API. Two usage scenarios need to be supported:
The root directory gets returned and then then the user expands ...