Newest Questions
24,230,442 questions
0
votes
0
answers
10
views
How best to write a script for deployment using python
Good moring all, How do I resolve this File ~\anaconda3\Lib\site-packages\joblib\numpy_pickle.py:650 in load with open(filename, 'rb') as f:
0
votes
0
answers
7
views
Swagger for a spring boot application shows placeholder instead of Project name, version etc
Swagger for my spring boot application shows placeholders instead of actual values like
@project.name@ , @project.version@
@project.description@
@{operation.tag}
POST / ${operation.desc}
File: ...
0
votes
0
answers
8
views
Flutter emulator device offline – adb fails with device offline error while native apps install fine
I'm facing a persistent issue with the Android Emulator while working on Flutter projects on my office laptop. The emulator boots and works perfectly when I install native apps (Kotlin/Java), but ...
0
votes
0
answers
8
views
Removing prompt for debug configuration from Visual Studio Code [duplicate]
I just want to run my programs without being asked to "Select a debug configuration" every time.
This program I am working on right now is an extremely basic usage of GLFW I followed from a ...
0
votes
0
answers
8
views
How to generate the AAR file by using Soong build system (by Android.bp only)
I am using the following Android.bp to generate the AAR file:
android_library {
name: "MyModuleLib",
system_ext_specific: true,
srcs: ["src/main/java/**/*.java&...
0
votes
1
answer
28
views
Making a C++ struct that has the memory layout of an array
I have a set of structs that looks something like
struct A
{
int x;
int y;
};
struct B
{
int x;
int y;
int z;
};
struct Top
{
A a;
B b;
int* getPtr() { return &a.x; }
}...
-1
votes
0
answers
16
views
Avoir le code html css qui permet d'avoir cet affichage : [closed]
Bonjour,
Il me faudrait le code html css qui permet d'avoir cet affichage :
un prix par mois
impossible d'avoir le bon look
j'ai essayé
<!DOCTYPE html>
<html lang="fr">
<head&...
0
votes
0
answers
16
views
Why is tcpdump on my Mininet router not capturing packets sent to the router’s own IPs?
I’m working on a Mininet topology where I have one router (r1) connected to four hosts (h1, h2, h3, and h4) in two subnets:
•h1 and h3 are in the 10.0.0.0/24 subnet.
•h2 and h4 are in the 192.168.0.0/...
0
votes
0
answers
26
views
What's the fastest way to write a hard coded series of bytes to an array?
I'm writing a serialization system which uses Roslyn Source Generators to create the serialization code for each type.
When serializing an object, the system needs to write some information about its ...
0
votes
0
answers
8
views
Mismatch Between Frequency Response and Eigenvalue-Based Natural Frequency in MATLAB for a 5-DOF System with Frequency-Dependent Stiffness
I am working with a mechanical system that has five degrees of freedom (a composite plate), and I am trying to compute its frequency response, time-domain response, and natural frequencies.
I have ...
1
vote
1
answer
17
views
Getting a full screen background image
I'm trying to crete this website of this indie game studio I'm a part of and right now I'm having trouble getting this image to cover the whole page and make it the background. enter image description ...
0
votes
0
answers
10
views
Invalid option: --timing
I tried to change the mesh row and mesh column in gemmini Config.scala from 16 to 32 but after that when I am using
cd chipyard/sims/verilator
make CONFIG=GemminiRocketConfig
I am getting error: %...
0
votes
0
answers
18
views
2D plots in plotly cannot show small variations
I have to plot some kind of graphs to represent the data below:
[[ 0. , 234. , 568.33333333, 881.66666667],
[ 0. , 234.66888889, 569.44555556, 865.03806017],
[ 0. , 235....
1
vote
1
answer
26
views
An API that will give you the word count of any given(or most) book's? [closed]
I'm working on a new website right now and need to be able to get the word count from a large range of popular/classic titles to compare the users input.
I've tried google books, penguin publishing, ...
0
votes
0
answers
11
views
What is the proper way to fill a batch in training an LM all the way to the end eg how to correct my tokenize_and_group_texts_via_blocks?
I’m preparing a text dataset for next-token language-model pre-training.
Using HF datasets with batched=True, I wrote a helper that
1. prepends a BOS token (if the tokenizer has one),
2. appends an ...