Newest Questions
24,210,345 questions
0
votes
1
answer
17
views
Is there a standard way to do bounds checking when using `take` in q/kdb+
What is the best way to implement a non-circular take (#) i.e. take[5; 1 2 3] returning 1 2 3 rather than 1 2 3 1 2?
Would {(x&count y)#y} be the general best? Are there any types of y for which I ...
0
votes
1
answer
13
views
Visual Studio Code Python Language Server crashes with JavaScript out of memory
I have a large Python project I'd like to edit in Visual Studio Code.
However, the Python Language server keeps crashing with JavaScript out of memory errors, like one below.
How can I increase the ...
0
votes
1
answer
13
views
Type gymnastics of heterogeneously-typed lists in Rust
I'm designing a pass system inspired by frunk.
Background
This is a little introduction of the Selector in frunk. If you are familiar with it, just skip this section.
Roughly speaking, frunk uses a ...
-3
votes
0
answers
15
views
Serach for particular word in web search results by command line [closed]
I want to find out a particular word in web search results page.Just like ctrl+f from keyboard. interested in a linux command to do this. I have used https://www.google.com/search?q=KEYWORD&start=...
0
votes
0
answers
8
views
TStream.read fails if file is located on a cloude-mapped drive
A simple TFileStream.read or TFileStream.write repeatedly fails if the file is located on a cloud-mapped drive. Do I need to repeat each read and write operation for a while to make sure it works?
-2
votes
0
answers
9
views
Unable to get check box to show on sample data table in Angular [closed]
I am trying to combine the 'Table With Expandable Rows' with the 'Table with Selection' because I want to use the mat-checkbox with the expandable row from the angular material site (https://material....
0
votes
0
answers
10
views
how to wrap some part of a LazyColumn insider a container with background and border and etc in Jetpack compose
I have a lazycolumn with some items inside it. one of items(that i want background and border for that) is a big list of items that i need to add one by one to lazycolumn so this individual items ...
0
votes
1
answer
25
views
How do I properly use scanf and what are its limits?
I'm currently trying to make a simple little program (BMI index calculator), since I've just started learning C. Currently using Eclipse.
Here's my code:
`
#include <stdio.h>
int weight, height;...
0
votes
0
answers
9
views
Share limited Outlook calendar details and access through VBA
Is there a way to share limited calendar details in outlook 2019 with other users on the same exchange server, so that they can use vba to see start, end and title without granting reviewer ...
1
vote
0
answers
17
views
Regex match positive and negative numbers except for certain number formatting
We're trying to write a regular expression to match floats. Inputs always have 9 decimal places, never begin with a 0 (unless it's actually 0), and can either be positive or negative as long as the ...
1
vote
0
answers
9
views
How to prevent duplicate transaction calculations in a ClickHouse materialized view
I’m planning to use ClickHouse to calculate wallet balances based on transactions in my base table. However, there’s an issue: if something goes wrong and I end up inserting the same transactions into ...
0
votes
1
answer
21
views
`subClass extends baseClass` and not with `new` keyword in JavaScript
I'm new to JavaScript and I'm trying to achieve the logic I have commented in the constructor method of the base class
export default class Building {
constructor(sqft) {
this._sqft = sqft;
...
0
votes
0
answers
11
views
Google Apps Script no ContentService.createTexdtOutput
I am trying to add data from react to a Google Sheet. It works aside from the issue that the script appears to be needing a
return ContentService.createTextOutput
statement.
Without the statement, ...
0
votes
0
answers
9
views
OLA Map Web SDK With HTML, Javascript Not Showing Map
I'm trying to integrate OLA Map Web SDK In my project. I've gone through the documentation and tried everything I can but found nothing to be useful. Every time I got the following error:
Error: ...
0
votes
0
answers
5
views
Using LinearGradient in Expo App causing white screen on iOS device
I'm building a React Native app using Expo, and I’m using the LinearGradient component from expo-linear-gradient. It works perfectly on Android simulators, but when I run the app on a real iOS device, ...