Newest Questions
24,167,953 questions
0
votes
1
answer
18
views
How to include all `time` series (including future ones) under a device in Apache IoTDB Continuous Query?
I'm using Apache IoTDB 2.0.6 (tree model) and trying to create a Continuous Query (CQ) that aggregates all time series under a specific device. The challenge is that new time series may be created ...
Advice
0
votes
0
replies
9
views
munmap and write combine flushing behavior
Let's say I have a PCIe Device where I:
mmap a BAR region into process memory.
Within that process, I issue a set of writes via memcpy (with no sfence/mfence following)
I subsequently munmap
Are ...
1
vote
1
answer
29
views
Get table name of the columns, used only in select statement of the view
Suppose the following is the select statement of a view
SELECT Emp.ID, Emp.FullName, Emp.JoiningDate, Dept.DepartmentName, Reg.RegionName
FROM Employees AS Emp
INNER JOIN Departments AS Dept
...
Advice
1
vote
3
replies
35
views
Android PWA opens in Chrome Custom Tab instead of Trusted Web Activity when installed from Play Store
Title:
Android TWA opens Chrome Custom Tab during OAuth login when using a no-code platform (Base44) with multiple domains
Body:
I'm trying to publish an Android app based on a PWA using Trusted Web ...
2
votes
0
answers
23
views
Array.map wraps overloaded function return type in additional array
I have an overloaded function type
type MaybeElementwise = {
<T extends number>(x: T): T
<T extends number>(x: T[]): T[]
}
and an implementation:
const f = (<T extends number&...
-1
votes
2
answers
20
views
Build error in my .net project visual studio 19/22
Recently I set up the project on a new laptop. When I try to build the solution, I get several errors such as:
CS0234: The type or namespace name 'BusinessComponent' does not exist in the namespace.
...
Advice
0
votes
1
replies
32
views
Windows 7 activation key?
I have a computer that came preinstalled with windows 7. ive been using it with linux for about a year now and wine just aint cutting it. Neither is virtualbox, because it would be much more efficient ...
-1
votes
0
answers
46
views
Python websockets library is killing my RAM. What are the alternatives?
I'm running a trading bot that connects to the Bybit exchange. Each trading strategy runs as its own process with an asyncio event loop managing three coroutines: a private WebSocket (order fills), a ...
0
votes
0
answers
42
views
Open API generator doesn't recognize `components`
I can't find anything online about anything other than specifying the version of Swagger, but that didn't help at all. It just spits out the error attribute components is unexpected every time. So ...
-1
votes
0
answers
33
views
create-react-app auto refresh page on code change in production
I have an issue where when I restart and update my production server, users need to refresh the page manually in order to make use of the code changes. This means users who do not know to do this are ...
Advice
0
votes
1
replies
17
views
Mac App - limiting the size of an ImageView to fit on screen
I'm an experience iOS programmer but now I'm trying my hand at a MacOS app. I created the app as a storyboard app. It will display a single image. Eventually, it will typically be a raw file at full ...
0
votes
1
answer
15
views
How to update module in Deployer/Composer
I've inherited a website that deploys using a Deployer script and it needs a newer version of a module. If I change composer.json from ^1.25 to ^1.28 the composer update works on both the dev machine ...
Advice
0
votes
1
replies
25
views
How to package windows specific executable in nupkg with Net Core 8 SDK style project
I have two .NET 8 WinExe projects; MyBuildTool and MyRuntimeTool
MyBuildTool.csproj (MyRunTimeTool.csproj is similar)
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<...
-1
votes
1
answer
23
views
Add Universal Padding to the all pages In React Native Expo
<Tabs screenOptions={{ header: (props) => <CustomHeader {...props}/>, headerStyle: { height: 100 } }}>
</Tabs>
I wanted to add a custom universal padding in the tabs, so that ...
0
votes
0
answers
22
views
How should a .NET Framework solution handle OpenTelemetry wrapper dependencies when using packages.config?
We have a .NET Framework solution with multiple projects. Many projects reference an internal core library, and that core library contains all the package references, including our custom ...