24,228,769 questions
-6
votes
0
answers
13
views
Stackoverflow is full of nazis
Deserved because this website is full of overzealous nazis moderator that dont know better how to do their job.. marking every questions duplicated is surely stupids without providing any context.. ...
0
votes
0
answers
4
views
How to let mappings from vim-sandwich use noremap option?
I am using vim-wordmotion which altered the way to move between words, but this would affect the surround operator from vim-sandwich, so I wonder is it possible to use noremap for mappings from vim-...
0
votes
0
answers
10
views
What legible markup language with associated tools would allow me to create documentation with tables with flexible headers (columns, multiple rows)?
HTML allows <th> instead of any <td>. This allows to create (among others) multiple header rows as well as a header column.
<table>
<tr><th>Header</th><th>...
0
votes
0
answers
5
views
SVM prediction score
I am doing a SVM model for Classification for HCC ( class 1 ) and Healthy ( class 0 , I would like to extract the prediction score but i do not know how
enter image description here
As the picture, I ...
0
votes
1
answer
15
views
How to fix WebDriver.__init__( ) got an unexpected argument 'executable_path' error in python, I'm learning how to automate using python [duplicate]
Here is the screenshot of the error
A little backstory:
I'm still new in all this coding/programming stuff. I'm now trying to learn how to automate something using python. So I tried automating ...
0
votes
1
answer
11
views
Next-js App-Router dynamic route: ‘params should be awaited’ warning in /api/…/[id]/… handler — why and how to fix?
I added a dynamic route handler:
src/app/api/meetings/[meetingId]/respond/route.ts
import { NextRequest, NextResponse } from 'next/server';
import { getServerSession } from 'next-auth';
...
0
votes
0
answers
6
views
How do I update `grid-template-columns` in inline styles using Python and Selenium?
I'm using Python and Selenium to dynamically change the inline CSS of a `<div>` element. Updating `background-color` works fine, but I can't seem to change `grid-template-columns`.
from selenium ...
-1
votes
0
answers
15
views
Where can i get app cloner premium & add on?
How can i get a full Unlocked latest mod version for app cloner premium & add on
I have tried from v 2.9.22 and 2.7 but nothing working, if anyone have suggestions please comment down below.
I ...
0
votes
0
answers
14
views
when i am running my 1st c++ code , my terminal is showing this error
/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/include/mach/arm/_structs.h:639:26: error: '_Alignof' was not declared in this scope
639 | } attribute((aligned(_Alignof(unsigned int))));
0
votes
0
answers
31
views
C++: custom integer type to represent spatial dimensions and allows only "2" or "3", for example
At many points in my codebase, I use the following pattern:
template <uint8_t dim>
class Example
{
static_assert((dim == 1 || dim == 2 || dim == 3), "Example objects must be defined in ...
0
votes
2
answers
33
views
How do you use a for loop to allocate an array in C?
New to C and trying to learn the basics. To get things started, I'm trying to mimic some basic functions in a Python program I wrote up recently, but am having some trouble editing the contents of an ...
-3
votes
0
answers
22
views
Can i obtain this shape using css after? [closed]
I have a div in place and need to obtain this shape, preferably using css with :after
I have tried several methods and search trough images and tutorials in the web, but cant get the shape exactly ...
0
votes
0
answers
12
views
Excel - Finding Years (1, 2, or 3) by Nesting a DATEDIF() Statement inside an IF() statement
My Objective: In Excel, I need to find out what year (year 1, year 2, year 3, or ENDED) the project has been and will be through fiscal year (FY)2025 (using dates 10/01/24-09/01/25 for FY25).
Version ...
0
votes
0
answers
17
views
UnslothGKDTrainer SyntaxError with Gemma 3: Missing unsloth_zoo Directory
I'm trying to fine-tune Gemma 3 models (egodfred/gemma-3-finetune-text_to_sql, nadmozg/gemma-3-12b-it-sql-finetuned, google/gemma-3-4b-it) for SQL generation using Unsloth in a Conda environment, but ...
0
votes
0
answers
20
views
Why is VSCode ignoreing the properties file I declared using Java?
I have the following in a application-personal.yaml
app:
auth:
domain: myaccount.auth0.com
clientId: ${AUTH0_CLIENT_ID}
scope: openid profile email add:documents site:admin
This file is ...