79814490

Date: 2025-11-08 22:47:01
Score: 0.5
Natty:
Report link

Source file names may not be human readable for several reasons related to compilation, caching, and module loading processes:

In summary, the discrepancy between readable source code module names and actual filenames on disk often arises due to tooling optimization, language runtime requirements, or packaging designs that emphasize correct, fast loading and module namespace management over purely human readability.

This explanation aligns with common observations reported by Raku developers and on platforms like Stack Overflow regarding module source file handling.raku+1

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Denis Do Nascimento Veira

79814486

Date: 2025-11-08 22:40:59
Score: 1.5
Natty:
Report link

It seems the font is "cropped" on your image, to fit in the box/input. You might trying changing the paddings, setting them all to 0 to start, and see how it changes

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Eternal Dreamer

79814484

Date: 2025-11-08 22:18:55
Score: 2.5
Natty:
Report link

Thanks for @herrstrietzel

 descent-override: 40%;

only this line was needed, and now font is perfect inside the input box.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @herrstrietzel
  • Self-answer (0.5):
Posted by: Dreamer64

79814482

Date: 2025-11-08 22:09:51
Score: 0.5
Natty:
Report link

2025 Update

  1. Go to Project in the top menu bar.

  2. Click Add Resource.

  3. Select Icon.

A placeholder icon named icon1.ico will be created next to your .vcxproj file. Simply replace it with your own icon (keeping the same file name) and rebuild the project.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Salatiel

79814475

Date: 2025-11-08 21:55:48
Score: 1
Natty:
Report link

If I understand your question, the answer to the first step is in your question description.

Each service modifies shared data without publishing the results to other services.

Do not try to sync data across services until you know which service owns each piece of data.

The simplest first step is to move to a single database.

Get all the services to share a single transactional data store or have each service publish their outcomes (not transient state but the end state once they finish processing the data) to a common read model that reflects the eventual correct state of the data.

This is the first step toward a more manageable outcome.

Once you have this working, you can look at the service boundaries and figure out which service owns which data (not entities, but fields).

Make sense?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Sean Farmar

79814465

Date: 2025-11-08 21:44:45
Score: 1.5
Natty:
Report link

Correct order and variables:

NVM_VERSION="v0.40.3"

NVM_URL="https://raw.githubusercontent.com /nvm-sh/nvm/${NVM_VERSION}/install.sh" TMP_INSTALL="/tmp/nvm-install.sh"

NVM_DIR="$HOME/.nvm"

The fully expanded URL is: https://raw.githubusercontent.com/nvm-sh /nvm/v0.40.3/install.sh

Safe download + review commands: curl -fsSL "$NVM_URL" -o "$TMP_INSTALL" head -n 200 "$TMP_INSTALL" # review the installer

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Movie Trials

79814463

Date: 2025-11-08 21:38:43
Score: 1
Natty:
Report link

There is a way to trick GROUPBY to refer to two different value columns. It works by using the function FILTER inside the LAMBDA wrapper and passing not the values, but the row fields grouping column again to LAMBDA. Here is a link to a YouTube video with a detailed explanation what to do and why it works: https://youtu.be/b3Z2Bi5MnOA

In your case, because you first need to sum up the values and then divide the results, you will need to use inside the LAMBDA wrapper the function SUM wrapped around FILTER with first column divided by SUM wrapped around FILTER with second column.

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Whitelisted phrase (-1): In your case
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nino K.

79814456

Date: 2025-11-08 21:24:40
Score: 2
Natty:
Report link

Would something like this work? Not sure if it's more performant, but maybe a little?

javascript
const as_obj = data.reduce((accum, curr) => {
  const { category_name, isparent, parent } = curr;

  if (isparent && accum[category_name]) {
    // This is a parent, but we've already seen one of its children;
    // we created the parent key for that already.
    return accum;
  }

  if (isparent && !accum[category_name]) {
    // This is the first time we've seen the parent key, creating an object for it.
    return { ...accum, [category_name]: { ...curr, children: [] } };
  }

  if (parent && !accum[parent]) {
    // We haven't seen this child's parent yet, but we'll make a place for it.
    accum[parent] = { category_name, children: [] };
  }

  const children = [ ...accum[parent].children, curr];

  return { ...accum, [parent]: { ...accum.parent, children } };

}, {});

const res = Object.values(as_obj);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Rodrigo Reis

79814454

Date: 2025-11-08 21:14:38
Score: 2
Natty:
Report link

It looks like your main issue is with the JDBC URL and user setup, but if you want a more streamlined solution, our platform can deploy any JIRA Data Center version with PostgreSQL, MySQL, Oracle, or MSSQL. It handles all database configuration automatically—including the correct JDBC URL, schema, and user permissions—so JIRA can connect right away without manual tweaks.

👉 You can check it out here:https://artio5.gumroad.com/l/igirrd

Reasons:
  • Blacklisted phrase (0.5): check it out
  • No code block (0.5):
  • Low reputation (1):
Posted by: Artiom Aleksandrovici

79814448

Date: 2025-11-08 21:00:34
Score: 2
Natty:
Report link

I wanted to share an update for those following GroundingDINO development. Because the original repository hasn’t received updates in quite some time, I’ve created and published an up-to-date, fully compatible fork that brings the project current with modern tool-chains.

📦 New release: groundingdino-cu128 on PyPI

All original license terms (Apache 2.0) and attributions have been preserved in full.
The fork’s changes are limited to modernization, packaging, and build maintenance—no original intellectual property or authorship has been altered or removed.

-GhostCipher

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: GhostCipher

79814447

Date: 2025-11-08 21:00:34
Score: 6.5
Natty:
Report link

Thanks for the advice, but thats not it, I built both to release.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks for the advice
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: nik

79814435

Date: 2025-11-08 20:37:29
Score: 1
Natty:
Report link

Briefly: combine the "Membership" and "Product" tables into a single table. Add an enum or equivalent to distinguish the types. For special discount, or fees, add an auxiliary table. That discount/fee table would have a column with the enum, and a date range. Some rows would be global, others linked to specific membership/products. Perhaps with a many-to-many linking table. For custom items, they go in the main table with other indicators as necessary. The hardest part is coming up with the name of the Membership+Product table :-)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: David Pierson

79814427

Date: 2025-11-08 20:18:24
Score: 0.5
Natty:
Report link

### Overview:

The primary issue appears to be that the Cloud Build pipeline for deploying your application is not being executed. This is evidenced by the absence of recent Cloud Build builds and the lack of configured Cloud Build triggers. Consequently, no Cloud Run services are being deployed. While the service accounts have the necessary permissions, the deployment process itself is not being initiated. I ran `gcloud builds list` and found no recent Cloud Build builds. I also ran `gcloud builds triggers list` and found no Cloud Build triggers configured. Furthermore, I ran `gcloud run services list --region=us-central1`, `gcloud run services list --region=us-east1`, and `gcloud run services list --region=europe-west1` and found no Cloud Run services deployed in these regions. There were also no error logs for Cloud Build or Cloud Run revisions in the specified timeframe.

### Recommended fixes:

* **Configure Cloud Build Triggers:** You need to set up Cloud Build triggers to automatically start builds when changes are pushed to your source repository. This will initiate the CI/CD pipeline.

* **Verify `cloudbuild.yaml`:** Ensure that your `cloudbuild.yaml` file is correctly defined in your source repository and specifies the steps to build your application and deploy it to Cloud Run.

* **Specify Cloud Run Deployment Region:** When deploying to Cloud Run, ensure that you specify the desired region for your services. If you intend to deploy to a region other than the ones checked, you will need to adjust your deployment configuration accordingly.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kene Agbo

79814419

Date: 2025-11-08 19:58:19
Score: 2
Natty:
Report link

Are you assuming this line would work, magically ?

newFragment.arguments = bundleOf("uri" to uri)

Nevertheless, I am trying to use the PdfViewer composable itself, with "1.0.0-alpha11" dependency, and this minimalist code doesn't work out-of-the-box.

/* dependency-libraries
androidx.pdf:pdf-compose:$version
androidx.pdf:pdf-document-service:$version
*/

@Composable
fun PdfViewerScreen(
    fileUri: android.net.Uri // "content://..."
) {
    val context = LocalContext.current.applicationContext // Just-in-case
    val state = remember { androidx.pdf.compose.PdfViewerState() }
    var doc by remember { mutableStateOf<androidx.pdf.PdfDocument?>(null) }

    LaunchedEffect(fileUri) {
        doc = androidx.pdf.SandboxedLoader(
                context, 
                Dispatchers.IO
            ).openDocument(fileUri)
    }

    DisposableEffect(doc) {
        onDispose { doc?.close() } // Closable PdfDocument
    }

    doc?.also {
        androidx.pdf.compose.PdfViewer(
            modifier = Modifier.fillMaxSize(),
            pdfDocument = doc,
            state = state
        )
    }
}

What also bothers me is that there's no Loading-State callbacks, error callbacks ?

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: AndroidRocks

79814416

Date: 2025-11-08 19:52:17
Score: 4.5
Natty:
Report link

I can't repost for another 1.30h

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriele

79814413

Date: 2025-11-08 19:47:16
Score: 5
Natty:
Report link

How can you represent inheritance in a database? How do you effectively model inheritance in a database? etc etc etc How much research effort is expected of Stack Overflow users? https://stackoverflow.com/help

Reasons:
  • Blacklisted phrase (1): How do you
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): stackoverflow.com/help
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: philipxy

79814405

Date: 2025-11-08 19:41:14
Score: 2
Natty:
Report link

Why is "normalization" there? Replacing a supertype table with subtype tables in not DB normalization. What does "break normalization" mean? What does "completely breaking normalization" mean? How exactly is it happening with what design?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Why is
  • High reputation (-2):
Posted by: philipxy

79814402

Date: 2025-11-08 19:34:12
Score: 1
Natty:
Report link

Adding to other answers - another option could be to use defaultdict from collections built-in module to pre-define dream_makers values as lists, like this:

from collections import defaultdict

dream_makers = defaultdict(list)
...
dream = input("what are your dreams")
dream_makers[name].append(dream)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: LowpolyOllie

79814401

Date: 2025-11-08 19:34:12
Score: 1
Natty:
Report link

I know this is an old thread but perhaps this might help new users:

Useful links for new complied versions can be found here:

https://mupdf.readthedocs.io/en/1.26.11/

https://github.com/ArtifexSoftware/mupdf

https://mupdf.com/releases?product=MuPDF

This web site allows free use of MuTool on line:

https://www.sejda.com/split-pdf-down-the-middle

If you use Windows and Chocolatey then:

choco install mupdf

will install the latest version.

Syntax is:

mutool poster -r -x 2 1.pdf 1a.pdf
D:\Downloads\mupdf-1.26.2-windows>mutool poster
usage: mutool poster [options] input.pdf [output.pdf]
        -p -    password
        -m -    margin (overlap) between pages (pts, or %)
        -x      x decimation factor
        -y      y decimation factor
        -r      split right-to-left

and so this:

mutool poster -r -x 2 1.pdf 1a.pdf

will 'cut' a dual page PDF into a single multipage PDF of separate left & right pages.

See also:

https://commandmasters.com/commands/mutool-common/

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: David Matthewson

79814383

Date: 2025-11-08 18:54:03
Score: 1
Natty:
Report link

Ten years down the line, let me add my two cents, using the astropy library.

is underrated. The users that keep the best time are astronomers. Similar to using high precision Julian Date. Most high precision time calculations should be based on astronomical time, see "Explanatory Supplement to the Astronomical Almanac"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ChuckD

79814375

Date: 2025-11-08 18:34:59
Score: 0.5
Natty:
Report link

Now that you know the add-on limitations, you should redesign your solution.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Wicket

79814374

Date: 2025-11-08 18:34:59
Score: 0.5
Natty:
Report link

For anyone seeing ERR_INTERNET_DISCONNECTED on localhost:5173 in Edge with Vite/React: check Edge DevTools → Network. Mine was set to Offline for that tab, so all requests (including Vite’s HMR/WebSocket and my /health fetch) were blocked. Changing it back to No throttling and hard-refreshing fixed it. This was a DevTools setting, not a Vite or backend issue.

enter image description here

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rushikesh Chavan

79814365

Date: 2025-11-08 18:12:54
Score: 3.5
Natty:
Report link

The problem was caused by the lack of Microsoft Visual C++ Redistributable, once installed everything works perfectly.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: M4rc0txt

79814360

Date: 2025-11-08 18:01:51
Score: 3.5
Natty:
Report link

You need to use prematch in all child decoders, or use siblings decoders in case each child decoder is designed to extract only specific field.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jakub

79814357

Date: 2025-11-08 17:56:49
Score: 7 🚩
Natty:
Report link

Solved (in the comments, by @BugFinder, profile https://stackoverflow.com/users/687262/bugfinder): I needed to go to "Build Profiles" under File

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @BugFinder
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: robotsnh

79814355

Date: 2025-11-08 17:51:48
Score: 2.5
Natty:
Report link

Downgrade node version to 22 it solve the problem.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Chi-Yuan Li

79814348

Date: 2025-11-08 17:44:46
Score: 0.5
Natty:
Report link

Worked for me also. Just change to devices list to

devices.append(AudioUtilities.CreateDevice(dev)).FriendlyName
To return names.
Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ross

79814341

Date: 2025-11-08 17:35:44
Score: 0.5
Natty:
Report link

Apparently it is not possible to do with the tb-entity-subtype-select entity.

However, I was able to do it by just using mat-form-field. And it works just fine

<mat-form-field fxFlex class="mat-block">
    <mat-label>Title</mat-label>
    <mat-select
        fxFlex
        class="mat-block"
        formControlName="formName"
        [required]="true"
        [showLabel]="true"
    >             
        <input matInput formControlName="formName" required>
        <mat-option value="Option 1">Option 1</mat-option>
        <mat-option value="Option 2">Option 2</mat-option>
    </mat-select>
</mat-form-field>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Iñaki Goicolea Marin

79814339

Date: 2025-11-08 17:33:43
Score: 5
Natty:
Report link

With OVMF prebuilt by https://github.com/rust-osdev/ovmf-prebuilt/ it works well.

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kuraga

79814332

Date: 2025-11-08 17:16:39
Score: 2.5
Natty:
Report link

i also attempted to reproduce this and i dont see a problem. edit the snippet, add HTML, and/or say what browser and OS you had the problem with

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: kaslmineer7999

79814325

Date: 2025-11-08 17:04:36
Score: 3
Natty:
Report link

I tried to reproduce the issue with editing your question (converting it into code snippet), but I don't see the same. Please, edit it the snippet so we can see the issue. Also, please tell us what you tested the issue on.

Reasons:
  • RegEx Blacklisted phrase (2.5): please tell us what you
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: iorgu

79814323

Date: 2025-11-08 17:02:36
Score: 1
Natty:
Report link

Upgrades happen at the component based level. You can run this quietly but add onto the end of the command line /l*v <pathToLog> Once the upgrade is complete, search the log file for the component GUID that is not upgrading.

Usually it will show some reason why it's not upgrading the file attached to that component.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Doc

79814321

Date: 2025-11-08 17:01:35
Score: 2
Natty:
Report link

Faced the same problem

  1. reinstalled CUDA tOOLKIT 12.4

  2. removed all old versions of CUDA tools from add/remove progam files

  3. went to visual studio 2022 installer and repaired community studio and build tools

    Magically I can build now!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sujit Vasanth

79814317

Date: 2025-11-08 16:54:34
Score: 0.5
Natty:
Report link

Answering my own question:

When I look at the actual throughput metric (numRecordsInPerSecond) of the Map functions, it is similar for both case 1 and case 3. My mistake was to infer something about the throughput based on the metrics shown in the overview. However, the number of records that go out in the upstream operator increases with the number of side outputs. I wrongly assumed that each unique record is only counted once, even if it sent to multiple outputs.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: keezar

79814313

Date: 2025-11-08 16:42:31
Score: 2
Natty:
Report link

I would abandon the ints and just go with the guids. I see no evidence that ints are faster.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Peter Marshall

79814310

Date: 2025-11-08 16:36:29
Score: 0.5
Natty:
Report link
#include <stdio.h>

void diziyi_yazdir(int dizi[], int uzunluk) {
    for (int i = 0; i < uzunluk; i++) {
        printf("%d ", dizi[i]);
    }
    printf("\n");
}

void permutasyon_yazdir(int dizi[], int uzunluk, int index) {
    if (index == uzunluk) {
        diziyi_yazdir(dizi, uzunluk);
        return;
    }

    for (int i = index; i < uzunluk; i++) {
        // swap
        int temp = dizi[index];
        dizi[index] = dizi[i];
        dizi[i] = temp;

        // recurse
        permutasyon_yazdir(dizi, uzunluk, index + 1);

        // backtrack (restore)
        temp = dizi[index];
        dizi[index] = dizi[i];
        dizi[i] = temp;
    }
}

int main() {
    int dizi[4] = {1, 2, 3, 4};
    permutasyon_yazdir(dizi, 4, 0);
    return 0;
}


this is the corrected code
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jason

79814308

Date: 2025-11-08 16:34:28
Score: 0.5
Natty:
Report link

What worked for me was

$('#my-select').children().text("yourTextHere").prop("selected", true);
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: lisandro

79814302

Date: 2025-11-08 16:21:25
Score: 3.5
Natty:
Report link

Assalam-e-Alaikum

MY name is Rohan

I live in Hyderabad Sindh

I am electrical Deploma 3year Qasmabad Hyderabad Sindh

I am Apply for job Electrical

Department

I am request for submit

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Electrical

79814292

Date: 2025-11-08 16:06:21
Score: 4.5
Natty:
Report link

Is it a good example of dynamic_cast https://developernote.com/2025/11/an-interface-segregation-principle-isp-example/ ? Does it break some principles?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is it a
  • High reputation (-1):
Posted by: Dmitriano

79814286

Date: 2025-11-08 15:58:20
Score: 0.5
Natty:
Report link

On this thread an Apple Engineer provided the solution to the problem.

Apparently privacySensitive() only takes effect if the user deactivates Show Complication Data for Always On in the Watch Settings. In order to overwrite the user's choice you need to add the Data Protection entitlement as documented here. By doing that, you prevent the widget to access/show any privacy sensitive data.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Meyssam

79814276

Date: 2025-11-08 15:48:16
Score: 2.5
Natty:
Report link

i had the same problem before and i recommend just reinstalling VScode

Reasons:
  • Whitelisted phrase (-1): i had the same
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: trabelsi wejden

79814266

Date: 2025-11-08 15:21:10
Score: 4.5
Natty:
Report link

Does it mean that on POSIX cxxxxx are to be eschewed in favour of plain xxxxx.h?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nil Admirari

79814246

Date: 2025-11-08 14:49:02
Score: 3
Natty:
Report link

Circuit Breaker'a Fallback catch the failed call .. so from retry's perspective the call has not failed so it will not retry.. u should place retry filter before circuit breaker..

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sayan mallick

79814235

Date: 2025-11-08 14:35:59
Score: 1
Natty:
Report link

Actually I suggested the usage of function func with class C: public A, public B

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79814234

Date: 2025-11-08 14:34:59
Score: 2
Natty:
Report link

I think the most disappointing fact here is that 10 years later we don't have a better version of entering data to the database than the CloudKit Dashboard, with ZERO possibility to use for instance Numbers/Excel sheets aka CSV to import and update data there, god forbid FileMaker would have an appropriate interface/API functions to be used as a data entry interface.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Peter Unghváry

79814233

Date: 2025-11-08 14:34:59
Score: 3.5
Natty:
Report link

I submitted a support ticket. They confirmed it is a bug.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joe Schmucker

79814231

Date: 2025-11-08 14:26:56
Score: 5
Natty:
Report link

Could you give one simple example where dynamic_cast is really needed and does not violate some principles?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you give
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79814228

Date: 2025-11-08 14:22:55
Score: 0.5
Natty:
Report link

I tried @Pau's workaround, and it didn't work as the files now seem to be JSON. I had to do the following to get this working with a more recent version of Homebrew:

find "$(brew --prefix)/Caskroom/"*'/.metadata' -type f -name '*.json' -exec jq 'del(.depends_on)' {} \; -exec sh -c 'jq "del(.depends_on)" "$1" > "$1.tmp" && mv "$1.tmp" "$1"' _ {} \;
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Pau's
Posted by: gawbul

79813242

Date: 2025-11-08 14:04:50
Score: 3
Natty:
Report link

It is strange that you are talking about my expectations. Do you really know what I expect? Ok, 99.999% of pointer downcasts breaks some principals. What is this 0.0001% that does not?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813237

Date: 2025-11-08 13:58:49
Score: 1.5
Natty:
Report link

so, the fix is to add the pointer to B to the function signature, like void func(A* a, B* b), right?

Its unclear what you want to achieve, if you tell us that, perhaps we can tell you how to fix it.

Can someone give me an example when dynamic_cast is not broken?

It can be used to safely downcast a pointer for example, but its uses are more rare than you seem to expect.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can someone give me
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: 463035818_is_not_an_ai

79813236

Date: 2025-11-08 13:56:48
Score: 6
Natty:
Report link

Can someone give me an example when dynamic_cast is not broken?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can someone give me
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can someone give me an
  • High reputation (-1):
Posted by: Dmitriano

79813234

Date: 2025-11-08 13:54:47
Score: 2.5
Natty:
Report link

Did you compile as release? Often the simplest of mistakes.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • High reputation (-1):
Posted by: 8192K

79813233

Date: 2025-11-08 13:53:47
Score: 3.5
Natty:
Report link

so, the fix is to add the pointer to B to the function signature, like void func(A* a, B* b), right?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Dmitriano

79813229

Date: 2025-11-08 13:50:46
Score: 2.5
Natty:
Report link

As far as I can guess, func is broken because its signature does not contain B. And dynamic_cast<B> looks probably unexpectable, right?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813225

Date: 2025-11-08 13:44:44
Score: 3
Natty:
Report link

Only you need to add `default=None` argument to your model field that was rendered as a RadioSelect.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Parviz

79813224

Date: 2025-11-08 13:43:44
Score: 2
Natty:
Report link

I also will be very happy if you give me a strict explanation of why func violates LSP. The substitution of A parameter with whatever you want will not alter the correctness of the program, right?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813222

Date: 2025-11-08 13:41:43
Score: 0.5
Natty:
Report link

The fact that function func does not violate LSP makes me very happy now. I hope that it is really true.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813217

Date: 2025-11-08 13:38:42
Score: 0.5
Natty:
Report link

I have sliver and did not try to use it with sliver yet because in the page I want to use it , I do not use it yet so for who want to make footer in the bottom without staying fix (will stay in the bottom of the page until the user scroll to the bottom of the page)

body: Center(
          child: SingleChildScrollView(
            scrollDirection: Axis.horizontal,
            child: Container(
              color: Colors.white,
              // decoration: const BoxDecoration(
              //     image: DecorationImage(
              //         image: AssetImage('assets/images/backcv2.jpg'),
              //         fit: BoxFit.fill)),
              // color: Colors.white,
              height: 1100,
              width: 1111,
              child: ListView(
                scrollDirection: Axis.vertical,
                children: [
  //after all the widget in the body

                 SizedBoxFooter(),
                ],
              ),
            ),
          ),
        ),
      ),



Widget SizedBoxFooter() {
  return SizedBox
    (
    height: 29,
    width: double.infinity,
    child: Container(
// margin: EdgeInsets.only(bottom: 5),
      padding: const EdgeInsets.only(bottom: 1.0, right: 7, left: 9),

      color: Colors.white,
      height: 37,
      child: InkWell(
          onTap: () {
            showModalBottomSheet(
              isScrollControlled: true,
              context: context,
              builder: (bctx) {
                return FractionallySizedBox(
                  heightFactor: 0.47,
// widthFactor: 1,
                  child: //a column in a container , a listview - what you want
                );
              },
            );
          },
          child: Center(
            child: Text(
              strinfotxt,
              style: TextStyle(fontSize: 15.9),
            ),
          )),
    )
  );
}```
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MrMoon

79813216

Date: 2025-11-08 13:38:42
Score: 0.5
Natty:
Report link

As another answer put it, scraping should be technically feasible.

However, scraping your own Play Console web UI violates Google's terms of service and can result in having your account suspended. I decided to refrain from doing it, and suggest others do too - not worth the risk.

Instead, I used a polling mechanism that, when paired with email parsing, it's able to get the accurate status of your Android app. I've open sourced it if you wanna check how it's done or host it yourself: https://github.com/rogerluan/app-store-connect-notifier

Reasons:
  • No code block (0.5):
Posted by: Roger Oba

79813214

Date: 2025-11-08 13:37:42
Score: 2
Natty:
Report link

So, the answer: my example does not violate LSP! This is exactly what I expected here.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813213

Date: 2025-11-08 13:35:41
Score: 1.5
Natty:
Report link

So, what is wrong with the polymorphism in my example? There is no polymorphism at all right? So my example does not relate to LSP at all, and so it can't violate it, right?

Yes.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: 463035818_is_not_an_ai

79813211

Date: 2025-11-08 13:30:40
Score: 2.5
Natty:
Report link

I believe you do not understand my question well enough. Ok, probably my understanding of LSP is not quite correct. Assume LSP means polymorphism. So, what is wrong with the polymorphism in my example? There is no polymorphism at all right? So my example does not relate to LSP at all, and so it can't violate it, right?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813208

Date: 2025-11-08 13:26:39
Score: 0.5
Natty:
Report link

Its unclear what you expect to get here if you refuse to accept basic facts.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: 463035818_is_not_an_ai

79813204

Date: 2025-11-08 13:22:37
Score: 1.5
Natty:
Report link

"using an object without knowing its actual exact type" - it is your imagination, it is not LPS. You mix different things. LSP says nothing about this. LSP is not polymorphism.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813202

Date: 2025-11-08 13:19:37
Score: 2.5
Natty:
Report link

thanks for your reply.

There are different problems, like there are definer clauses or there are HTML tags in the SQL dump, etc. So there are different syntax errors that all lead to "You have an error in your SQl syntax..."

I have fixed a couple of them with a python script that goes through the SQL and searches for regex and replaces/deletes stuff. But this obviously is not a good solution and has never fixed all the issues.

But maybe there is some library that does that with a script or so? I mean I cant be the first person to encounter this issue.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Stefan L.

79813192

Date: 2025-11-08 12:55:30
Score: 1
Natty:
Report link

If you want to create your own file format, then you will have to decide how you want the file to be structured. Do you want the file to consist of binary data or text? If you want it to consist of text, then how should this text be structured? Do you want it to use XML or JSON? Or maybe a simpler structure, such as CSV? Or maybe a much simpler structure, like having one single word per line?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Andreas Wenzel

79813190

Date: 2025-11-08 12:55:30
Score: 0.5
Natty:
Report link

Is strange using signals with *ngIf directive, use control flow syntax @if; Also for clarity in your template you can use @let personIsOffline = isAliceOffline().

Take considerations, the computed will be executed once.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @let
Posted by: Joel Garcia Nuño

79813189

Date: 2025-11-08 12:53:29
Score: 1
Natty:
Report link

altering the correctness of the program - means the program becomes incorrect, but not potentially incorrect, or the possibility of dereferencing nullptr by another programmer will increase

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813187

Date: 2025-11-08 12:51:29
Score: 3
Natty:
Report link

To solve this try reinstalling the vs code again and make sure you don't have any important projects if you do please back them up or push them to your repo

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ejike Victor

79813186

Date: 2025-11-08 12:49:28
Score: 1
Natty:
Report link

I had this problem and apparently there are two ways to solve it.

  1. Use google-generativeai instead of google-genai

  2. Try removing google-generativeai and also google-genai and this time only install google-genai

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hadi Jafari

79813183

Date: 2025-11-08 12:46:27
Score: 0.5
Natty:
Report link

Why should I have print()? Why should I dereference b? A and B are completely different classes, they do not have a common interface at all, and do not have a common base class. LSP says nothing about polymorphism, it is about subobjects. LSP: Objects of a superclass should be replaceable with objects of its subclasses without altering the correctness of the program.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why
  • High reputation (-1):
Posted by: Dmitriano

79813182

Date: 2025-11-08 12:43:26
Score: 1
Natty:
Report link

For those looking for a deeper answer, what the security checks are protecting are the standard objects of the ValueStack. The ValueStack is a list of named objects of just about everything, including the invoked Action and aspects of servlet context, so your JSP code and submitted forms can read and set them as properties. When asked to read or set data, the ValueStack finds the first property or object matching.

When the author's form is submitted, Struts 2 sets the 'application.appName' property. If the security didn't discard it, the Action instance would match as it has the 'application' property, then the 'appName' property of said 'application' property would be set (though that would fail because the 'application' property is null).

Alas, 'application' is a named object in the ValueStack, which is all the application scope properties. In a Jakarta EE server, these are the ServletContext attributes. If the Action doesn't have an 'application' property and security doesn't happen, Struts 2 matches the application object and sets the 'appName' attribute. Setting an application scope property.

For form submission, the property names to be set come from the form field names, which the user can hack, whether your receiving Action expects them or not. Without the security checks, random users can hack various objects, including session-based data. Got the customer's account in session? If the user can guess the attribute and property names, he can change the account no. Hence, form field names starting with 'applicaton, 'session', 'request' and the like are silently thrown away.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Matthew Greet

79813175

Date: 2025-11-08 12:37:25
Score: 3
Natty:
Report link

Where did you see virtual void print() = 0; ? See updated post. What kind of "undefined behavior" can happen here? nullptr can happen and it will be handled correctly, right?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Where did you
  • High reputation (-1):
Posted by: Dmitriano

79813173

Date: 2025-11-08 12:35:25
Score: 1
Natty:
Report link

Liskov substitution principle dictates that:

an object (such as a class) may be replaced by a sub-object (such as a class that extends the first class) without breaking the program.

In what sense do you think it might be violated here ?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: wohlstad

79813172

Date: 2025-11-08 12:34:24
Score: 1.5
Natty:
Report link

Does the code below violates Liskov Substitution Principle (LSP)?

No.

The code is not an example of Liskov Substitution Principle (LSP), so it does not violate Liskov Substitution Principle.

q.v. this answer regarding LSP: https://stackoverflow.com/a/584732/4641116

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Eljay

79813171

Date: 2025-11-08 12:33:24
Score: 3
Natty:
Report link

Join Us in the Dragon Gi Movement - where quality meets passion, and tradition meeta innovation. https://dragongi.com/

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aqeel raja

79813163

Date: 2025-11-08 12:25:22
Score: 1
Natty:
Report link

Solution was to add a handle scope:

void MyEmitFunc(const std::string & someStringFromQueue) {
    v8::Isolate* isolate = v8::Isolate::GetCurrent();
v8::HandleScope scope(isolate);
    v8::Locker locker(isolate);
    v8::Isolate::Scope isolateScope(isolate);
    v8::Local<v8::String> s = v8::String::NewFromUtf8(isolate, someStringFromQueue.c_str()).ToLocalChecked();
    ...
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user31836277

79813161

Date: 2025-11-08 12:20:20
Score: 2
Natty:
Report link

Pelota Libre TV: Ver Futbol Libre online en vivo y directo. Disfruta de partidos de la Copa Libertadores, Sudamericana y del fútbol argentino como River Plate y Boca Juniors. Canales como TyC Sports, ESPN, Fox Sports y TNT transmiten eventos internacionales gratis.

https://pelota-libre.co/

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user2926777

79813152

Date: 2025-11-08 11:51:13
Score: 0.5
Natty:
Report link

There’s an important difference between App signing key certificate and Upload key certificate in Play Console:

If you use Play App Signing, you must register the App signing key SHA-1 in Google Cloud Console (OAuth 2.0 Android client) for Google Sign-In or One Tap to work.

If you’re not using Play App Signing and manually create your signing key, then your own key’s SHA-1 is what you register instead.

Steps to fix error 10:

  1. Copy App signing key SHA-1 from Play Console → App Integrity

  2. Paste it in Google Cloud → Credentials → OAuth client (Android)

  3. Save and wait a few minutes

No code change or re-upload is needed(if you already created, otherwise please create a new one), the app will now authenticate correctly.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: enestatli

79813130

Date: 2025-11-08 11:03:03
Score: 3.5
Natty:
Report link

enter image description here npm i -g eas-cli

eas login # (अगर खाता नहीं है तो बना लो)

eas build -p android --profile preview

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mirajul Sk

79813126

Date: 2025-11-08 10:54:00
Score: 2.5
Natty:
Report link

Have you tried to force the optimizers hand? https://mariadb.com/docs/server/ha-and-performance/optimization-and-tuning/query-optimizations/force-index

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: P.Salmon

79813125

Date: 2025-11-08 10:53:00
Score: 3
Natty:
Report link

When you are using SessionAuthentication, you are using Django's authentication which usually requires CSRF to be checked. Django REST Framework enforces this, only for SessionAuthentication, so you must pass the CSRF token in the X-CSRFToken header.

re : https://stackoverflow.com/a/26639895/16958410

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When you are
  • Low reputation (0.5):
Posted by: mehdi_ahmadi

79813122

Date: 2025-11-08 10:47:58
Score: 2
Natty:
Report link

If your WordPress site feels slow or is getting penalized by Google for Core Web Vitals, try the free plugin LCP Optimizer Universal PRO.
It automatically improves LCP, CLS, and FID without touching your code.
👉 https://emanuelcelano.github.io/lcp-optimizer-universal-pro/

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: emanuel celano

79813104

Date: 2025-11-08 10:11:49
Score: 0.5
Natty:
Report link

Use getElementsByTagNameNS(). Once you subscript the element you need, you can access its content with .textContent.

var d = "http://schemas.microsoft.com/ado/2007/08/dataservices";
var items = xmlStr.getElementsByTagName(d, "Attachment");
var attachment = items[0].textContent;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user31571297

79813099

Date: 2025-11-08 10:02:47
Score: 1.5
Natty:
Report link

You can’t reliably “save & restore” an entire site purely with client-side JavaScript — browsers won’t let JS fetch arbitrary archived assets and rewrite every link for a full site restore. A practical approach is to pull the archived HTML and assets from the Wayback Machine (or use an automated tool like www.waybackdownloader.com) and then serve the downloaded files (fix relative links, update absolute URLs, restore assets, and test). If you want to prototype with JS, fetch archived HTML via the Wayback API, rewrite asset URLs to point to your downloaded copies (or to archive URLs), and then inject the page — but for complete restoration, an automated downloader + a short post-processing step is far more reliable.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mirza shafehy

79813098

Date: 2025-11-08 10:00:46
Score: 4
Natty:
Report link

Now you can access conversation history via API

https://docs.cloud.google.com/dialogflow/cx/docs/reference/rpc/google.cloud.dialogflow.cx.v3beta1#conversationhistory

enter image description here

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yash Kavaiya

79813095

Date: 2025-11-08 09:57:45
Score: 0.5
Natty:
Report link

@sirtao - re all the extra backticks in my select-object - it was just a typo really. I’ve been writing some scripts that use commands with lots of parameters and they do need backticks at line breaks and my left hand was just on a roll with the ` key :-).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @sirtao
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: mclayton

79813093

Date: 2025-11-08 09:56:45
Score: 2.5
Natty:
Report link

set PYTHONNOUSERSITE variable in Windows environment settings. It can in the "user variables for somebody" or in the "System variables". The value could be 1 or 2 as the picture shows.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: wang jun

79813089

Date: 2025-11-08 09:46:43
Score: 2.5
Natty:
Report link

Some options:

SPARQL
Cypher
Gremlin

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Siebe Jongebloed

79813087

Date: 2025-11-08 09:45:38
Score: 6 🚩
Natty:
Report link

I have the same issue, I have fixed it by replacing the old npm viewPager deprecated package with the new react-native-pager-view package.

Deprecated Package: https://npmjs.com/package/@react-native-community/viewpager

New Package: https://www.npmjs.com/package/react-native-pager-view

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
Posted by: Vishal Pawar

79813086

Date: 2025-11-08 09:44:33
Score: 6 🚩
Natty:
Report link

I have the same issue, I have fixed it by replacing the old npm viewPager deprecated package with the new react-native-pager-view package.

Deprecated Package: https://npmjs.com/package/@react-native-community/viewpager

New Package: https://www.npmjs.com/package/react-native-pager-view

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
Posted by: Vishal Pawar

79813085

Date: 2025-11-08 09:43:32
Score: 1
Natty:
Report link

You might want to look into how Flutter’s EditableText and TextSpan work internally that’s where the core logic for building custom text editors starts. Using JSON for storing rich text is a good idea (like Quill and Zefyr do), but building it from scratch means you’ll need to manage text selection, styling spans, and keyboard input manually. I’d suggest starting small maybe first render styled text with Text.rich, then move on to handling user input.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SanTosh

79813084

Date: 2025-11-08 09:42:28
Score: 6 🚩
Natty:
Report link

I have the same issue, I have fixed it by replacing the old npm viewPager deprecated package with the new react-native-pager-view package.

Deprecated Package: https://npmjs.com/package/@react-native-community/viewpager

New Package: https://www.npmjs.com/package/react-native-pager-view.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
Posted by: Vishal Pawar

79813080

Date: 2025-11-08 09:38:26
Score: 2
Natty:
Report link

@Raymond I updated my reply above. I might add that this whole new format of "open ended questions" on SO (with replies instead of comments and answers) is quite problematic IMHO.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Raymond
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: wohlstad

79813079

Date: 2025-11-08 09:36:26
Score: 3
Natty:
Report link

sometime your android termial path and your project opne in android may be different chekc it firt when you got error

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manish Patadiya

79813078

Date: 2025-11-08 09:35:25
Score: 3.5
Natty:
Report link

Press the triangle in the cell for "Column Lables" and uncheck the 'Card" box. Now your chart will only display the data for 'Left'.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: R vE

79813064

Date: 2025-11-08 09:06:19
Score: 1
Natty:
Report link

chatGPT have been based on some libraries like chrome and phyton
second one bot supports another libraries and based on bytes in case to merge.
It's in cloud and chat gpt doen't support its main function.

byte code:

000
001
010
011
100
101
110
111
{...artefact}
000
001
010
011
100
101
110
111
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Qadult

79813059

Date: 2025-11-08 08:55:16
Score: 2
Natty:
Report link

One way to solve this type of problem is with the texture used by the terrain, first select it and then change the Alpha Source value from "Input Texture Alpha" to "From Gray Scale". This option solved my problem.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: moslem razyani

79813052

Date: 2025-11-08 08:45:13
Score: 5.5
Natty:
Report link

@wohlstad I did not see any "regular" or "normal" option. Please be more accurate.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @wohlstad
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Raymond

79813044

Date: 2025-11-08 08:31:10
Score: 1
Natty:
Report link
export class HelloComponent {
  @Input() name: string;
  html1 =
    '<html><head><style>  .html1_h2 {color:red;}</style></head><body><h2 class="html1_h2">Inner HTML1 in red</h2></body></html>';
  html2 =
    '<html><head><style>  .html2_h2 {color:blue;}</style></head><body><h2 class="html2_h2">Inner HTML2 in blue</h2></body></html>';
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: JuStin Lo