Newest Questions
24,222,689 questions
0
votes
0
answers
2
views
MySQL Workbench- Why does my COUNT() func change results when I join the third table?
Before I join the third table, my number of products quantities is correct, but as soon as I JOIN the third table, the number of products changes to an incorrect COUNT. I tried different joins but ...
0
votes
0
answers
5
views
How do I assign product labels by snap_date in Tableau when multiple policies can be active?
I'm working in Tableau and trying to assign a product label to each household per snap_date, based on which insurance policy is active. Each row represents a household on a specific date, and a ...
0
votes
0
answers
8
views
Appropriate analytical approach in R for effects of sampling distance on Jaccard Index of community similarity
I have a dataset comprised of multi-species presence (y/n) for each of nine sampling points on an L-shaped transect (center point + 4 points at increasing distances between points along each arm of ...
0
votes
1
answer
6
views
FirebaseAuthException ([firebase_auth/unknown] An internal error has occurred. [ Failed to connect to /10.0.2.2:9099)
I keep receiving an error when running on flutter:
FirebaseAuthException ([firebase_auth/unknown] An internal error has occurred. [ Failed to connect to /10.0.2.2:9099)
I'm using a physical Android ...
-1
votes
0
answers
7
views
WebGL “Framebuffer is incomplete: Attachment has zero size” when displaying 3Dmol.js model loaded from raw PDB text in React (Chrome & Firefox)
Symptoms:
Model renders once, then the next frame throws the error.
On route change or Collapse/Tab hide, the error repeats.
Adding viewer.clear() in cleanup removes the message but stops
rendering ...
0
votes
0
answers
10
views
TCP socket server hangs randomly and rsa Decryption error raised randomly
I'm trying to make a server for a password manager I'm building, but the server seems to hang randomly and it seems to randomly throw rsa.DecryptionErrors randomly too. I did recently switch from ...
1
vote
1
answer
16
views
Inheritance and slicing
I have a simple c++ base class and two derived classes:
class base;
class der1;
class der2;
class base{
public:
virtual void act(base*); // ignore for now
virtual void print(){
cout &...
0
votes
0
answers
4
views
Progress bar display issue with setinterval
I have a jQuery script that makes an Ajax call to a PHP file (process.php) to retrieve the status of a database (The upload.php and import.php parts are working fine and not relevant here I would say),...
0
votes
1
answer
7
views
MySQL connection button is missing - Superset 5.0.0
"I've just installed Apache Superset v5.0.0, and I'm trying to configure a database connection. However, I only see options for PostgreSQL and SQLite; the MySQL connection button is missing. I've ...
0
votes
0
answers
4
views
Switching environments on firebase apphosting
I'm trying to follow the documentation for Firebase's App Hosting and changing the configuration per environment to deploy my Angular application. My goal is to run a different build script based on ...
0
votes
0
answers
17
views
Problems when multiplying two Eigen matrices with custom scalars
I have implemented a class that represents a special type of polynomials in three variables, including overloads for ==, +=, -=, *=, +, -, *. I tested the operators and they seem to be working fine. I ...
0
votes
0
answers
16
views
FitzHugh–Nagumo model output not resembling what is shown on Wikipedia
First off, I just want to mention that I am a biology researcher not trained in differential equations or dynamical systems. I am doing this as an exercise to get a bit of intuitive understanding of ...
1
vote
1
answer
17
views
100% Coverage Exit Handler That Handles All Ways A Program Can Exit In C
I have a program where I allocated a lot of data and used multiple libraries. I have a cleanup procedure (can be a function, label, setjmp, or just a section of code) that frees allocated memory and ...
0
votes
0
answers
9
views
Global CSS styles from component library not loading in Next.js
I have few global styles in my component library, which I am trying to use in a Next.js project. They only get applied as soon as I add the console.log in following snippet.
"use client";
...
0
votes
0
answers
10
views
How to wrap an existing scriptblock in a new scriptblock
I am writing a function to execute commands on a remote machine. The function receives a scriptblock and needs to wrap those commands inside additional commands (i.e. a try / catch). However, I need ...