Newest Questions
24,234,115 questions
0votes
1answer
2views
Materialized view invalidated and cannot remember original SQL
I have a materialized view named "hourly_metrics" on my table. It is a straightforward view that stores max, min, avg, stdedev and so on at hourly intervals. The thing here is that I also ...
0votes
0answers
13views
How to decrypt the cipher text using Python?
I am using Kryptonite to field encryption using AES128_GCM key and i need to decrypt it using python or any programming language. So it can be possible? if possible then how can i do? I have to pass ...
0votes
0answers
5views
GORM: dependent table record is not created in 1 to 1 relationship
i've been working on my project and encountered some strange behavior. i have two entities with 1:1 relation and they look like this: type User struct { ID uint `json:"id" ...
0votes
0answers
6views
Looking for a more precise image recognition compared to pyautogui. (Clash of Clans - Bot)
just the usual Python idea I guess. Wanted to create a bot that looks for a base on its own until one matching the required minimum is found (did this using pyautogui and pytesseract, screenshotting ...
0votes
1answer
4views
Cannot create a materialized view for the _query_trace table
I am using QuestDB Enterprise and I want to know which users are sending queries to the cluster and how long the queries take to execute. I know I can parse the information from the logs, but that's a ...
-1votes
0answers
11views
Which of these two code snippets is more Pythonic? [duplicate]
I'm trying to write cleaner Python code and was wondering which of these styles is considered more Pythonic. Option 1 fruits = ["apple", "banana", "cherry"] for i in ...
0votes
0answers
9views
I am getting ArrayIndexOutOfBoundException while using the below code
I am getting ArrayIndexOutOfBoundException while checking thread safety of ArrayList. We are getting exception.We are getting exception after that we are getting the output but while using vector we ...
-2votes
0answers
15views
i want to center my footer but its not working?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Guide to help with Mental Health | Website&...
0votes
0answers
14views
Python Pandas.read_csv header and index column not lining up
I have a bunch of csv files read from a teensy adc onto an SD card and am trying to extract them to be able to do some basic stats over each row. I have tried everything I can think of to try and fix ...
0votes
0answers
6views
STM32 SPI DR Register won't clear after read
I have a stm32f103c8t6 mikcocontroler and NRF24l01+ RF module. I have written a driver code for NRF24 and it fails miserably. There are functions for writing register and reading register. #include &...
-2votes
0answers
12views
Which is the better approach to connect postgres with the backend? [closed]
I want to build an web app which might have lots of user and content like an ecommerce store. For that, I wanna use Postgres(SQL) database but getting confused of how should I implement this?? Should ...
0votes
0answers
8views
Control pandoc's markdown-output indent
We have a repo of markdown documents where some of these markdowns are human generated and some are converted from HTML with pandoc --from html --to commonmark. Our team-wide standard for markdown is ...
0votes
0answers
4views
'./dist/bootstrap-vue-next.mjs?' does not provide an export named 'BootstrapVueNext'
In my laravel application after i installing npm install bootstrap bootstrap-vue-next and updating the vite.config.js : import { BootstrapVueNext } from 'bootstrap-vue-next'; import 'bootstrap/dist/...
0votes
1answer
10views
Trouble compiling with slice2cpp in Visual Studio on Windows
I am a beginner trying to compile a project using slice2cpp in Visual Studio on Windows. I have followed the official documentation but I am unable to successfully compile the project. I have ...
0votes
0answers
6views
Jetpack Compose showKeyboardOnFocus flag don't work
I am using a Jetpack Compose OutlinedTextField and have set its KeyboardOptions to showKeyboardOnFocus = false. According to the documentation, this should prevent the soft keyboard from appearing ...