Count how many employees are active for any week and how many were term as well for that week if any

I have a bigquery table like this: Sample of the table I'm working with What I need to do is to be able to tell by each week(week starting Sunday) how many active employees are and how many left if any One thing to note is that both date

Continue reading →

Access 2010 delete change to where

I have an deletequery with several tables in Access 2010, when I go to put From in the delete it automatically changes to Where. It doesn't matter what you do, it changes automatically all the time Any idea? i dont know what to do thank

Continue reading →

MQTT multiple subscribers to one topic

I've recently started using the MQTT broker in AWS, where one device receives messages to control a wind turbine. Now, I wanted to expand this control by connecting a second device to the broker topic. However, I've noticed that when two

Continue reading →

Fetching data from monolithic application from cloud server

I need a proper efficient solution for the following situation. I have a scenario where I have one monolithic application hosted in a server and I need to use this application to process some data and get response. The application can pr

Continue reading →

XPATH img import

I'm new to this, I want to take a image from another site, but a blank page appears. The codes I used are below, how can I fix this problem?

Continue reading →

How to send a json file using a telegram bot?

I am getting this error when using sendDocument: GrammyError: Call to 'sendDocument' failed! (400: Bad Request: invalid file HTTP URL specified: Wrong port number specified in the URL) Code: const file = await fs.createReadStr

Continue reading →

Checkbox Uncheck does not refresh table in Vue

I am using Daisy UI and simple VUE and working on a checkbox. When I check the checkbox it fitlers the table entries and works fine but when I uncheck or check another checkbox it does not refresh/filter again. The following is my table

Continue reading →

Vagrant box update cannot update past v12.2.0

As the title says, looking at the vagrant boxes website. The latest version of homestead is at v14.0.2 When I do vagrant box update, it would say that I'm using the latest version, but the box still stuck on php 8.1 and does not have ver

Continue reading →

Angular 17 upgrade | Internationl Telephone numbers | Ng2TelInputModule deprecated

I am performing an upgrade from Angular 15 to 17. One of the modules has Ng2TelInputModule which has been deprecated in Angular 17 material and doesnt work. I tried using NgxIntlTelInputModule and added below in the appComponent.html `g

Continue reading →

Wrong typings for z.enum

Hello everyone i have a code like this: import { z } from 'zod' const options = [ ["a", { label: "A" }], ["b", { label: "B" }], ] as const export function optionsToEnum(entries: ReadonlyArray): [T, ...T[]] { const [firstVa

Continue reading →

Angular google map advanced marker info window issue - No directive found with exportAs 'mapMarker'

Reading the documentation: https://github.com/angular/components/blob/main/src/google-maps/map-info-window/README.md I have issues using the as in the documentation. #marker="mapMarker" leads to No directive found with exportAs 'mapMark

Continue reading →

What inspired the development of the Pounds to Kilograms Converter Chrome Extension for developers?

The issue the project entitled "Streamline Weight Conversions for Developers" is aimed to solve is the fact that transforming weights, namely to and from pounds and kilograms, commonly occurs in developer's activities and it takes a grea

Continue reading →

get radius of generated circle to use them in React three fiber

I have this code from @nivo/circle-packing and I want only to use this library to get the genereated radius of the circle without overlapping and then I want to store them in array to use them in generating circleGeometry with different

Continue reading →

My Flappy Bird running on Python dies before even reaching the first pipe

I am beginner in python and i am doing a mini project for a school assignment. we are required to make the flappy bird game using python. with numerous references, i concluded that this particular one: https://github.com/maxontech/flappy

Continue reading →

How to Manage Environment-Specific Database Connection URLs in a Shopify Remix App on Fly.io

I'm developing a Shopify app using Remix and deploying it to Fly.io. To connect to my database, I'm using connection URLs stored in a .env file. However, I have separate URLs for development and production environments. Manually changing

Continue reading →

Kafka idempotent producers

According to the documentation, an idempotent kafka producer maintains a sequence number, ensuring deduplication of events and also, ordering. Does this mean that within a single producer session, an idempotent kafka producer would indef

Continue reading →

How to integrate uploadthing with react-hook-forms?

I'm trying to create a page that allows users to upload a file and the user has to fill out a form with a title and description. Once submit button is hit, An email is sent which includes the title and description from the form, as well

Continue reading →

ModuleNotFoundError: No module named 'flags.state'; 'flags' is not a package

I've succesfully installed the flags package: pip install flags

Continue reading →

Trying to read a specific line in c++ but nothing is displaying anything

So i'm writing some test code for a bigger project that will display specific data when a code and address has been entered, but currently nothing is running and i'm not getting any output at all. #include #include #include #include

Continue reading →

How to check Python environment for hidden modules (not listed, but can be imported)

To expand on the title, my question comes in two parts: Is it possible for a Python package to be installed in an environment as a dependency for another package, but not show up when you list down all installed packages in that environ

Continue reading →