Newest Questions

0 votes
0 answers
6 views

Can an extension for thunderbird clear notifications?

I am contributing to an extension for thunderbird which sends its own notifications for some incoming emails. Because of that these emails will have two notifications which is a bit annoying. I am ...
  • 1
0 votes
0 answers
4 views

Error trying to use "gemini-2.5-pro-preview-06-05" in Firebase Vertex AI

I'm using Vertex AI in an Angular project with Firebase. The latest 2.5 Flash model works. const model = getGenerativeModel(this.vertexAI, { model: "gemini-2.5-flash-preview-05-20" }); But ...
  • 2,588
0 votes
0 answers
3 views

Rendering creatures without server-side Minecraft Geckolib

I am writing a server for vanilla minecraft without using server mods. Now I want to write a mod that would replace the model rendering of regular mobs with my unique Blockbench model only with client ...
0 votes
0 answers
6 views

How to make transparrent bottomSheet in flutter

I set all the color options to transparent, but all the color still stays whitemy app bottomSheet: BottomSheet( elevation: 0, backgroundColor: Color.fromARGB(0, 1, 1, 1), ...
0 votes
0 answers
5 views

Microsoft SQL -On-premises Data Gateway

I want to connect my On-premises DB with Microsft Data Fabric to aviod duplication and data migration. for this; I have successfully installed the Microsoft On-premises Data Gateway (standard) version ...
0 votes
0 answers
4 views

KSP failed with exit code: PROCESSING_ERROR

I am making an app in Android Studio and am currently trying to implement Room. When I try to rebuild/ run the project it puts the following error: Execution failed for task ':app:kspDebugKotlin'. >...
0 votes
0 answers
3 views

Splash Screen Stuck on Real Android Device – Why Doesn’t It Disappear? [Expo]

I’m using expo-splash-screen provided by Expo to implement a splash screen in my app. The necessary code is written in App.tsx, and when I build the APK and test it on a real Android device, the ...
0 votes
0 answers
4 views

Autodesk platform service aps-iot-extension viewer issue Error:404, 500

After the APS maintenance on February 2024, my APS-iot-extension model cannot work. https://github.com/autodesk-platform-services/aps-iot-extensions-demo The Error includes: could not obtain the ...
0 votes
0 answers
4 views

Need Assistance with Fine-tuning my Content Moderation Neural Network with RoBERTa. (Dataset: Jigsaw)

I can't quite figure out how to fine-tune my neural network with jigsaw and make it a multi-classifier rather than a binary-classifier (multiple types of output rather than just positive and negative) ...
  • 1
0 votes
0 answers
4 views

RuntimeError: The current Flask app is not registered with this 'SQLAlchemy' instance

I'm having troubles to init my app on flask. It says "Did you forget to call 'init_app', or did you create multiple 'SQLAlchemy' instances?" I call init_app as "db.init_app(app)" ...
  • 1
0 votes
0 answers
11 views

TensorflowJS: Model load Value Errors

I'm currently trying to load a tensorflow js model in a React app: const modelPromise = tf.loadLayersModel('/assets/models/tfjs_model/model.json') However, whenever I use the model I receive the ...
0 votes
1 answer
11 views

storing a R function output list in a column of lists for further processing

OK, this is a pretty basic question that I am having a hard time finding an answer. I have functions that return several results that are returned as a list. I want to store that output list in a ...
  • 1
0 votes
0 answers
6 views

How to handle creation of related aggregates in CQRS + DDD using Wolverine (e.g., Inquiry and Customer)?

I’m using CQRS and Clean Architecture with DDD in my .NET project. I’m also using Wolverine as my messaging system. I have two commands: CreateCustomerCommand CreateInquiryCommand When a user sends ...
  • 1
0 votes
1 answer
6 views

shiny express python script is having trouble controlling the barchart plot

Im having trouble setting the y axis to start at zero for the following shiny express python script. Instead it starts at 4.1 . the set_ylim is having no affect. from shiny.express import input, ...
  • 1,031
0 votes
1 answer
12 views

PowerShell RegExp

I have a string with commas where I want to replace the commas with tildes except where there is a number each side of the comma. Please can someone explain why this works: $Str = "abc,12345,67,...
  • 336