Newest Questions

Filter by
Sorted by
Tagged with
0 votes
0 answers
5 views

I’m experimenting with GridDB and testing some SQL queries on a time-series dataset. I noticed that queries filtering by timestamp range become slow as the dataset grows. Here is a simplified example. ...
Imtiaz Ghous's user avatar
0 votes
0 answers
3 views

I am attempting to design the sample space for a forest monitoring project using a battery of biometric, physiographic, and remotely sensed raster datasets, namely canopy height derived from digital ...
Sean McKenzie's user avatar
Best practices
0 votes
5 replies
15 views

I need assistance understanding prompts for SQL to get better at it. I know SELECT, WHERE, and FROM are the basics. There are more advanced ways to writing a prompt for SQL to get better data ...
Cameron Hamilton's user avatar
Advice
0 votes
2 replies
11 views

enum Pets { Cat = 0, Dog, Hamster, GuineaPig, Ferret } fn main() { let my_pet = Pets::Cat; println!("{}", my_pet); } Is there a way to make this code print the ...
merendo07's user avatar
0 votes
0 answers
5 views

I use boost::asio with its awaitable<T> a lot and sometimes my coroutine code end up with following logic: Read something asynchronously from, say, socket OR asynchronously wait on some timer, ...
Max's user avatar
  • 356
0 votes
0 answers
14 views

So, I have read the following two related questions: Unable to resolve unable to get local issuer certificate using git on windows Configure git to accept a particular self signed server certificate I'...
Trashman's user avatar
  • 1,724
0 votes
0 answers
15 views

I have a project that manipulates geometry, and although I can step through the code and see the values, it's quite hard to verify everything without looking at the geometries that are being used/...
Daniel Möller's user avatar
0 votes
1 answer
8 views

I have a small View sample where I was trying to animate some error code when a value outside of a specific range is entered. I tried both animating it and using a transition but the error text just ...
S. Hatmaker's user avatar
-2 votes
0 answers
35 views

I built a voice-based AI App using: Twilio Voice (speech input) FastAPI LangGraph OpenAI GPT model with tools API for tools The system works well, but response latency is ~3 seconds after the ...
Shashank's user avatar
Best practices
0 votes
5 replies
28 views

I understand that best practice for global variables between modules is as mentionned doc python, but I don't understand how to make those variables modifyable from within a function. Here I declare ...
Louis's user avatar
  • 2,620
1 vote
0 answers
34 views

Why do the third and fourth substitutions produce different results? #!/usr/bin/env raku use v6.d; my $str; my regex myregex1 { <[\d;]>+ }; $str = "abc3def0ghi"; $str.=subst( / <?...
sid_com's user avatar
  • 25.5k
Best practices
0 votes
1 replies
17 views

I want to create a data matrix in matlab, aggregating/grouping data of two columns and by the sum of a third column. For example given the next data matrix x: game=[1;2;3;1;2;3;1]; Money=[0 ;5; 6; 0; ...
Claris's user avatar
  • 31
Advice
0 votes
2 replies
26 views

I am structuring the command and response models for my service layer. Currently, putting all models into a single, flat folder (like /commands or /responses) is becoming hard to manage due to the ...
Quốc Dũng's user avatar
-1 votes
1 answer
24 views

I'm trying to reset my Supabase auth.users table for my Jest testing environment, but I'm getting this error when I run the following code: await db.query(`TRUNCATE TABLE auth.users RESTART IDENTITY ...
Jasperan's user avatar
  • 5,173
2 votes
0 answers
40 views

I have a SUMIFS formula where one of the criteria is to compare to a date. If the formula compares like this, it works: =SUMIFS(Payroll[Check Amount], Payroll[Method], "D", ...
lljc00's user avatar
  • 47

15 30 50 per page
1
2 3 4 5
1611207