Newest Questions
24,180,222 questions
1
vote
0
answers
4
views
Log2 implementation with cygwin64 seems inefficient
I noticed there was a double precision divide after all log2 calls when using cygwin64 so I wrote a small program to illustrate it. Both loops give the same result for the 20 decimal places that are ...
Advice
0
votes
0
replies
3
views
Modernize Google Workspace Logs Export to BigQuery `usage_` Schema and Resolve Unpopulated Fields
Since the launch of the Google Workspace to BigQuery export feature (circa 2019), significant updates have been made to the activity_ tables (near real-time logging, new schemas for Gemini, etc.). ...
0
votes
0
answers
13
views
How to make item in CSS Grid overflow and don't make the whole grid grow
I have two items in a grid. The top one, which has text, I want to fit the content. So it's responsive when I change the page width. The bottom one I would like to take the remaining space, but don't ...
Best practices
0
votes
0
replies
5
views
best way to leverage polars multithreading with scikit-learn compatibility
I've been working on a project for rapidly testing thousands of outcome variables on a standard set of predictors and covariates using polars. It's working very well, with speed ups as high as 16x ...
0
votes
0
answers
10
views
How to render native button in the header of a screen. React Native & Expo
I am trying for a really long time to find the proper way to render a chevron back button in the header of a screen like its done in apples native apps, for example the setting app, but at this point ...
0
votes
0
answers
10
views
Google Script Trigger no longer activating properly
I have the following script:
function resetDailyCheckboxes() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getActiveSheet();
sheet.getRange('C2:C8').setValue(false);
sheet....
-1
votes
0
answers
28
views
Angular version 18.2.14 has a bug on @Directive standalone compiling
Looks like Angular version 18.2.14 has a bug on @Directive standalone compiling
the directive:
import { Directive, ElementRef, HostListener } from '@angular/core';
@Directive({
selector: '[...
0
votes
1
answer
14
views
Spring Authorization Server OAuth2AuthorizationServerConfigurer.authorizationServer() method not found
I am new to spring security. I have been looking to build an authorization server and I have went through a couple of documentations. I saw that all of them have used something like:
...
0
votes
0
answers
19
views
Why would consumer.position() > (consumer.endOffset(...) + 1) in Kafka?
I have some code that prints out the consumer.endOffsets() and current consumer.position() in the void onPartitionsAssigned(Collection<TopicPartition> partitions) callback.
I'm finding that the ...
-1
votes
0
answers
12
views
How i remove Drawer Routes From BackStack in jetpack compose?
In my app i have both Bottom bar and a navigation drawer.
The screens related to bottom bar are(Home, Search, Library, Premium, Create),
Navigation drawer are (news, history, settings).
My problem is ...
0
votes
0
answers
19
views
Airflow variables debugging
In my DAG, I need to define different conditions for files based on the logical date of the DAG run. I want to access the logical date directly as a Python datetime object in my script, so I can ...
0
votes
0
answers
20
views
Problems linking boost with cmake
Using the files that I got below I'm encountering some weird errors, since without Cmake (in another PC, using a custom makefile) the compilation runs file.
This is the main.cpp file
#include <...
Advice
0
votes
1
replies
6
views
Debian 13 (trixie) secure apt
May I please get help adding the secure apt key to my Debian 13 system and also adding the CRAN repository? Apparently, Debian has made some changes and the commands on the CRAN website don't seem to ...
-2
votes
0
answers
18
views
Moving from one Microsoft Domain Name/Active Directory - to another [closed]
We have the following problem (names have been changed to protect the innocent):
400 node network virtually all of it Windows 11 Pro machines
Multiple servers including an Exchange 2016 server
The ...
0
votes
1
answer
64
views
C++ efficient method of formatting std::cout
Say we have the following code:
#include <iostream>
#include <print>
#include <stdio.h>
int main() {
std::cout << "Calculator App" << std::endl;
double ...