79826358

Date: 2025-11-21 09:54:42
Score: 4
Natty: 4
Report link

It is feature request from 2007 https://forum.scootersoftware.com/forum/beyond-compare-4-discussion/general/13877-feature-request-add-vertical-selection-editing

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Goaul

79826346

Date: 2025-11-21 09:47:40
Score: 2
Natty:
Report link

I had this issue, what helped me:

For example I had 2 rows for header, some columns were merged vertically and some weren't;

Once I got the error, I have resized all the row cells in the header (even the ones that were merged and were not visible) and the error went away.

Good luck and have fun!

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

79826345

Date: 2025-11-21 09:46:40
Score: 1
Natty:
Report link

After uploading the bundle file to the Play Store, this removes localization resource files based on the phone settings.

To avoid the problem, add the line below:

android {
    bundle {
        language {
            enableSplit = false
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: faribakhandani

79826341

Date: 2025-11-21 09:40:38
Score: 3.5
Natty:
Report link

Added to plugins in app.json - worked well🙌🏻🔥

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

79826336

Date: 2025-11-21 09:36:37
Score: 3
Natty:
Report link

I cannot comment anymore on your answers nor on my question, what the h is wrong with this site ? I guess it is because the type of question I chose to be "best practice" ? (I see other questions kept their "normal" appearance) If so, could someone alert a moderator who to please change the type to "vanilla question" type ? (I can't with "edit".) Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1): cannot comment
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Olórin

79826329

Date: 2025-11-21 09:32:36
Score: 0.5
Natty:
Report link

Reference: https://freefrontend.com/css-dropdown-menus/#google_vignette

<div class="button" onclick="document.body.classList.toggle('expanded')"><div class="places">Places</div></div>
<div class="menu">
  <svg class="shadow" width="375" height="322" viewBox="0 0 375 322">
    <defs>
      <filter
              id="blur"
              x="-0.053211679"
              width="1.1064234"
              y="-0.068773585"
              height="1.1375472">
        <feGaussianBlur
                        inkscape:collect="always"
                        stdDeviation="6.075"
                        id="feGaussianBlur1076" />
      </filter>
    </defs>
    <g transform="translate(0,120)">
      <path
            style="opacity:0.14;fill:#0e232e;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#blur)"
            transform="translate(0,-120)"
            id="path967" />
    </g>
  </svg>
  <svg class="container" width="275" height="222" viewBox="0 0 275 222">
    <g transform="translate(0,20)">
      <path class="border1" fill="transparent" stroke-width="1.5" d="m 137.5,201.5003 h -126.393699 c -5.8760576,0 -10.606602,-4.73054 -10.606602,-10.6066 v -179.787399 c 0,-5.8760576 4.7305444,-10.606602 10.606602,-10.606602 h 115.393699 l 11,-10.999699"/>
      <path class="border2" fill="transparent" stroke-width="1.5" d="m 137.5,-10.5 11,10.999699 h 115.3937 c 5.87606,0 10.6066,4.7305444 10.6066,10.606602 v 179.787399 c 0,5.87606 -4.73054,10.6066 -10.6066,10.6066 h -126.3937"/>
    </g>
  </svg>
  <div class="contents">
    <div class="row">Here</div>
    <div class="row">There</div>
    <div class="row">Anywhere</div>
  </div>
</div>



@import url('https://fonts.googleapis.com/css?family=Open+Sans:600');
body {
  align-items: center;
  background: #f0f0f9;
  display: flex;
  flex-direction: column;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  height: 100vh;
  justify-content: center;
  margin: 0;
}
.button {
  background: #d6d5e2;
  border-radius: 50%;
  cursor: pointer;
  height: 26px;
  width: 26px;
  z-index: 1;
}
.button:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #474070;
  content:  ' ';
  height: 0;
  left: 8px;
  position: relative;
  top: -8px;
  width: 0;
}
.button:hover {
  background: #c6c5d2;
}
.button:active {
  background: #b6b5c2;
}
.places {
  color:  #898596;
  left: -64px;
  position: relative;
}
.menu {
  // background: #fff;
  // border: 1px solid #c6c6cc;
  border-radius: 8px;
  height: 222px;
  margin-top: 0px;
  position: relative;
  width: 273px;
}
.container {
  position: absolute;
}
.border1 {
  fill: #fff;
  fill-opacity: 0;
  stroke: #44454a;
  stroke-dasharray: 480 480;
  stroke-dashoffset: -480px;
  transition: stroke 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dasharray 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dashoffset 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    fill-opacity 400ms 40ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.border2 {
  fill: #fff;
  fill-opacity: 0;
  stroke: #44454a;
  stroke-dasharray: 0 480;
  stroke-dashoffset: 0;
  transition: stroke 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dasharray 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dashoffset 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    fill-opacity 400ms 40ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.shadow {
  left: -50px;
  opacity: 0;
  position: absolute;
  top: -46px;
  transition: opacity 400ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.contents {
  left: 20px;
  opacity: 0;
  position: relative;
  top: 48px;
  transition: opacity 400ms cubic-bezier(0.4, 0.0, 0.2, 1);
  width: 234px;
}
.row {
  align-items: center;
  border-bottom: 1px solid #cdd0de;
  cursor: pointer;
  display: flex;
  height: 46px;
  padding: 0 5px;
  user-select: none;
  -moz-user-select: none;
}
.row:hover {
  background: #f8f8f8;
}
.row:active {
  background: #f5f5f5;
}
.expanded .border1 {
  fill-opacity: 1;
  stroke: #c6c6cc;
  stroke-dasharray: 480 480;
  stroke-dashoffset: 0;
}
.expanded .border2 {
  fill-opacity: 1;
  stroke: #c6c6cc;
  stroke-dasharray: 480 480;
  stroke-dashoffset: 0;
}
.expanded .shadow {
  opacity: 1;
}
.expanded .button {
  transform: rotate(0);
}
.expanded .contents {
  opacity: 1;
  transition: opacity 400ms 100ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hamza Fareed

79826305

Date: 2025-11-21 09:14:32
Score: 0.5
Natty:
Report link

Ah, thank you, and what is the rest about then? I disassembled it now too:

$ objdump -b binary -D a.out -m i386:x86-64

a.out:     file format binary


Disassembly of section .data:

0000000000000000 <.data>:
       0:   55                      push   %rbp
       1:   48 89 e5                mov    %rsp,%rbp
       4:   90                      nop
       5:   5d                      pop    %rbp
       6:   c3                      ret
    ...
     fff:   00 14 00                add    %dl,(%rax,%rax,1)
    1002:   00 00                   add    %al,(%rax)
    1004:   00 00                   add    %al,(%rax)
    1006:   00 00                   add    %al,(%rax)
    1008:   01 7a 52                add    %edi,0x52(%rdx)
    100b:   00 01                   add    %al,(%rcx)
    100d:   78 10                   js     0x101f
    100f:   01 1b                   add    %ebx,(%rbx)
    1011:   0c 07                   or     $0x7,%al
    1013:   08 90 01 00 00 1c       or     %dl,0x1c000001(%rax)
    1019:   00 00                   add    %al,(%rax)
    101b:   00 1c 00                add    %bl,(%rax,%rax,1)
    101e:   00 00                   add    %al,(%rax)
    1020:   e0 ef                   loopne 0x1011
    1022:   ff                      (bad)
    1023:   ff 07                   incl   (%rdi)
    1025:   00 00                   add    %al,(%rax)
    1027:   00 00                   add    %al,(%rax)
    1029:   41 0e                   rex.B (bad)
    102b:   10 86 02 43 0d 06       adc    %al,0x60d4302(%rsi)
    1031:   42 0c 07                rex.X or $0x7,%al
    1034:   08 00                   or     %al,(%rax)
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mltm

79826293

Date: 2025-11-21 09:04:28
Score: 6 🚩
Natty: 6
Report link

hello guys my name is janis berzins i like python i hate tkinter

Reasons:
  • RegEx Blacklisted phrase (1): hello guys
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Janis

79826292

Date: 2025-11-21 09:03:27
Score: 8.5
Natty:
Report link

@Ale but how would is use it for every system, like Linux, WIn or MacOS? would i have to download all the 3?

Reasons:
  • Blacklisted phrase (1): i have to do
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Ale
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Akash Jain

79826283

Date: 2025-11-21 08:53:25
Score: 1
Natty:
Report link

i had the same issue with joomla 4.0.3 and then i downloaded the 4.0.4 update patch and uploaded the files manually using filezilla, then downloaded 4.1 and update patch and uploaded the files manually sameway .. The issue then disappeared.

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

79826281

Date: 2025-11-21 08:51:24
Score: 1.5
Natty:
Report link

Tkinter runs on your local machine. HTML/JavaScript runs in a web browser. So you can't directly embed Tkinter in HTML because they operate in completely different environments. Here are a few things I can suggest:

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

79826273

Date: 2025-11-21 08:45:23
Score: 3.5
Natty:
Report link
  1. enter image description here

  2. reinstall npm install -g firebase-tools

  3. Use PowerShell windows, not PowersShell built-in vs code

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kurniawan Wijaya

79826272

Date: 2025-11-21 08:42:22
Score: 2
Natty:
Report link

Refer - https://medium.com/@pradipsudo/explore-nullable-property-of-columns-in-a-spark-data-frame-1d1b7b042adb

val cols = for {
    f <- df.schema.fields
} yield {
    import org.apache.spark.sql.catalyst.expressions.object
    new Column(AssertNotNull(col(f.name).expr)).alias(f.name)
}

df.select(cols._*)
Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sarang

79826256

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

No SFAuthenticationSession is good choise

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

79826255

Date: 2025-11-21 08:18:16
Score: 1.5
Natty:
Report link

If it wasn't static, you would need an already existing instance of the class to invoke it. So to create a new instance, you would need an already existing instance. Catch-22, isn't it?

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

79826253

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

Useful tools:

C++ Insights can show you that fileContents is cast to std::string&& (which is equivalent to std::move(fileContents)) when passed to the constructor of std::optional.

Compiler Explorer can show you that the constructor of std::optional invoked at the return statement is the one accepting rvalue reference of std::string.

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

79826250

Date: 2025-11-21 08:13:14
Score: 1.5
Natty:
Report link

Your concern is also valid for MVC. Data model and view model should be able to change independently. I would definitely create a new view model in your case.

Reasons:
  • Whitelisted phrase (-1): in your case
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: aManFromEarth

79826246

Date: 2025-11-21 08:07:12
Score: 1
Natty:
Report link

You could setup a customized colormap using your Lat_matrix. Here an example using your variable names:

P_acc_matrix = magic(10);
heatmap(P_acc_matrix)
Lat_matrix = randn(10,10);
skyColormap = sky(100);
[~,idx] = sort(Lat_matrix(:));
skyColormapNew = skyColormap(idx,:);
colormap(skyColormapNew)

CustomHeatmap

The colorbar looks weird now but you can remove it if you want..

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Till

79826245

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

@Antc Bad writing about the relational model unfortunately started with Codd's original 69 & 70 papers & has continued.

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

79826237

Date: 2025-11-21 07:50:08
Score: 1
Natty:
Report link

<iframe

  src="https://archive.org/embed/assessmentofsubj0000sell"

  width="560" height="384" frameborder="0"

  webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen

\>\</iframe\>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Khushi Mehta

79826235

Date: 2025-11-21 07:48:07
Score: 1.5
Natty:
Report link

If it is still relevant: I was struggling with this issue recently. Available solutions did not work. I did an temporary GitHub action doing a search for the cairo library and found a path not mentioned elsewhere. This may seem like a kind of brute-force but nevertheless it works. I now set this path in my GitHub action file and it works.

Excerpt form my GitHub action YAML file below. I know the logging might be deleted but I kept it for transparency and debugging in case of new problems.

    runs-on: windows-latest
    steps:
      - name: Install Cairo via MSYS2
        uses: msys2/setup-msys2@v2
        with:
          update: true
          install: mingw-w64-x86_64-cairo
      - name: Add MSYS2 Cairo to PATH to make cairocffi libraries like libcairo-2.dll discoverable
        shell: powershell
        # "C:\msys64\mingw64\bin" did not work, try "C:\Program Files\Unity Hub\resources\app.asar.unpacked\node_modules\canvas\build\Release"
        # found using Get-ChildItem -Path C:\ -Filter "*libcairo*.d*" -File -Recurse -ErrorAction SilentlyContinue in Log step
        run: |
          echo "C:\Program Files\Unity Hub\resources\app.asar.unpacked\node_modules\canvas\build\Release" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
          echo "CAIROCFFI_DLL_DIRECTORIES=C:\Program Files\Unity Hub\resources\app.asar.unpacked\node_modules\canvas\build\Release" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
      - name: Log environment variable updates
        shell: powershell
        run: |
          Write-Host "GITHUB_PATH: $env:PATH"
          Write-Host "CAIROCFFI_DLL_DIRECTORIES: $env:CAIROCFFI_DLL_DIRECTORIES"

You may refer to the complete yaml here: https://github.com/dornech/utils-msoffice/blob/main/.github/workflows/documentation.yml

Reasons:
  • Blacklisted phrase (1): did not work
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dornech

79826233

Date: 2025-11-21 07:43:06
Score: 2.5
Natty:
Report link

To update, I ended up using MAP_UD from here, stripped down most of the header to just what MAP_UD relies on: https://github.com/swansontec/map-macro

I know this kind of preprocessor abuse is pretty questionable but I very much prefer it over adding dependencies into the chain especially that this is shared between host and shader code. Thanks everyone!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Doofus

79826230

Date: 2025-11-21 07:42:06
Score: 0.5
Natty:
Report link

try this.

$(body).animate({scrollTop: 0}, 100); // Fast

$(body).animate({scrollTop}), 500);

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: oscar castellon

79826224

Date: 2025-11-21 07:27:03
Score: 1
Natty:
Report link

Well, then please define the rules for interpreting pinata as piñata, and the like. The problem is not really technical.

So far, your requirements look self-contradicting. Pinata as piñata, formally speaking, are just different words, no more, no less.

Also, I would ask you: why you cannot trust users just typing the characters they actually use? People who know how to spell and read protégé or piñata should know how to enter them.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Sergey A Kryukov

79826221

Date: 2025-11-21 07:21:01
Score: 2
Natty:
Report link

Almost everything I rewrote from Excel to Calc with this OlePropertySet/Get functions and it works. Except this range manipulating. I would now prefer not to use new libraries and API into my program at this time..

Thank you for your link. My next application will be done according to this. OleProperty methos is painful.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: vsm

79826219

Date: 2025-11-21 07:13:00
Score: 1.5
Natty:
Report link

@selbie I don't know if that really is the most easy, I still think having conflicting header files is the most important issue. Maybe having two static libs and pimpl pattern may also work

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

79826217

Date: 2025-11-21 07:08:59
Score: 0.5
Natty:
Report link

In my case, I was spelling something wrong in the header. If you're positive your backend is fine, check typos.

// BAD:Authorizaion
headers: {
  'Authorizaion': `Bearer ${token}` 
}

// GOOD:Authorization
headers: {
  'Authorization': `Bearer ${token}`
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: emirhan demir

79826209

Date: 2025-11-21 06:57:57
Score: 2.5
Natty:
Report link

Estás metiendo el nombre de secccion dentro del modificador (--top-review-section), Estás repitiendo el modificador en varios elementos (review__content--top-review-section, review__author-image-wrapper--top-review-section, etc.).

Define el bloque review normal, y deja que el layaut de la seccion haga el resto.

<section class="top-review-section">
  <article class="review review--highlighted">
    <p class="review__content">
      lorem
    </p>
    <div class="review__author">
      <div class="review__author-image-wrapper">
        <img class="review__author-image" src="" alt="user profile image">
      </div>
      <p class="review__author-username">
        lorem
      </p>
    </div>
  </article>
</section>
/* Bloque review base */
.review { ... }
.review__content { ... }
.review__author { ... }
.review__author-image-wrapper { ... }
.review__author-image { ... }
.review__author-username { ... }

/* Modificador real (intrínseco al bloque, no al contexto) */
.review--highlighted {
  /* por ejemplo: borde, fondo distinto, sombra, etc. */
}

/* Contexto: cómo se ve review DENTRO de top-review-section */
.top-review-section .review {
  /* márgenes, ancho, alineación, etc. específicos de esta sección */
}

.top-review-section .review__content {
  /* ajustes finos solo cuando está en top-review-section */
}

.product-review-section .review {
  /* comportamiento distinto en la sección de producto */
}
Reasons:
  • Blacklisted phrase (1): Está
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): cómo
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user2412052

79826205

Date: 2025-11-21 06:47:54
Score: 1.5
Natty:
Report link

This looks like returning a list of contacts. In that case you might have some base Contact class that has a reference number as sole property. There are 2 subtypes: Company and Person, having their own properties. entity_type is used as the discriminator and tells the json deserializer which class is to be constructed. So yes, this is normal.

In a way, this is not that different than writing a single flat object with all possible fields and just omitting the ones that have no / a null value.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Martijn Stalenhoef

79826203

Date: 2025-11-21 06:46:54
Score: 2.5
Natty:
Report link

Sorry this is not a cyclic dependency; what I meant is that one of the packages is a dependency to the other. I reworded this in my question.

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

79826196

Date: 2025-11-21 06:32:51
Score: 3.5
Natty:
Report link

Grateful. Kindly share the complete code for implementation into blog website on NHS Pay Bands

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

79826193

Date: 2025-11-21 06:29:50
Score: 2
Natty:
Report link

Your snippet appears to set all pixels to the same Color which is color

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: FSO931s

79826183

Date: 2025-11-21 06:14:46
Score: 4
Natty: 4
Report link

KILBRIDE. PRINGLE needs some help with a project. Needs someone proficient in coding.

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

79826177

Date: 2025-11-21 06:03:43
Score: 1
Natty:
Report link

Then I suggest you take it up with Chen & Atzeni, and the ACM -- presumably at that date the paper was peer reviewed.

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

79826157

Date: 2025-11-21 05:40:38
Score: 2
Natty:
Report link

Just promoting @felix-benning's amazing tip to a full answer – set include_groups=False, then use df.name to access the group name. NB I only tested this with a single item in groupby, but it sounds like it should work with multiple ones.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @felix-benning's
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: 3wordchant

79826152

Date: 2025-11-21 05:30:35
Score: 2
Natty:
Report link

when you said "move-eligible" does it mean :
The expression is move-eligible if it is a (possibly parenthesized) id-expression that names a variable of automatic storage duration whose type is a non-volatile object type … declared in the body or as a parameter of the innermost enclosing function or lambda expression.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): when you
  • Low reputation (0.5):
Posted by: sam

79826149

Date: 2025-11-21 05:19:33
Score: 0.5
Natty:
Report link

Frustratingly this is now working.

I think there was originally a mistake, now lost to history, but I have fallen victim to some kind of caching issue with Visual Studio debugging in docker that cached the old ocelot.json. Playing with it now; changes I make are not always reflected into the container that runs when you debug (regardless of the CopyToOutputDirectory=Always)

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

79826139

Date: 2025-11-21 05:07:31
Score: 2.5
Natty:
Report link

Have you seen this documentation for LibreOffice's UNO-based automation system? (UNO being conceptually similar to COM/OLE). They do seem to have C++ bindings available.

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Dai

79826138

Date: 2025-11-21 05:01:30
Score: 2
Natty:
Report link

I know Spark will do a lazy evaluation and will push down the filters to the data source while loading the data. But it only pushes down dynamic filters in case of HDFS. For RDBMS it needs to have pre defined filter conditions to push down filter.
Which in my case will be dynamic as the filter is based on the input view. So spark is loading the complete data from transactions table and then doing a join with input view later to filter data.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Parth Sarthi Roy

79826135

Date: 2025-11-21 04:53:28
Score: 1.5
Natty:
Report link

This seems to have occurred due to the configuration descriptor not being constructed correctly. It seems as though the descriptor was good enough to get past the "device unrecognised" stage, but incorrect enough to not be able to proceed. Once I set up the configuration descriptor correctly, I haven't had this issue.

Using Windows ETW for USB along with Wireshark helped me confirm this problem, as I could see what was being transferred and received correctly, giving me confidence in tracking down the problem.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Eman

79826127

Date: 2025-11-21 04:28:23
Score: 3
Natty:
Report link

// Source - https://stackoverflow.com/a/79823009

// Posted by Waseem Sarwar

// Retrieved 2025-11-21, License - CC BY-SA 4.0

let data = try Data(contentsOf: localFile, options: .mappedIfSafe)

self.uploadTask = riversRef2.putData(data, metadata: metadata) { ... }

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: maf1405

79826126

Date: 2025-11-21 04:21:21
Score: 3.5
Natty:
Report link

// Source - https://stackoverflow.com/a/79155347

// Posted by kikoso

// Retrieved 2025-11-21, License - CC BY-SA 4.0

public static final String PHARMACY = "pharmacy";

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mr Aprilian

79826124

Date: 2025-11-21 04:14:20
Score: 2.5
Natty:
Report link

so I found that when I type
`\DB::connection()->getPdo()->getAttribute(\PDO::ATTR_DRIVER_NAME);`

on tinker, it return dblib, it should return sqlsrv. altough I set sqlsrv in .env and config/database.php. and I found that I need to install pdo_sqlsrv.so and sqlsrv.so, and set the extension in php.ini.

then i just restart the php service brew services restart [email protected] and clear cachec config laravel. I was think that when install via homebrew everything is installed. this is my first using mac, so yea. i'm stupid.

but i don't get it. why usuing dblib becomes error. if I search on internet, dblib is extension for sql server too, but it is from open source. meanwhile sqlsrv is from microsoft. but you know what? it solved

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Fajar Alam

79826118

Date: 2025-11-21 04:06:18
Score: 4
Natty:
Report link

https://issuetracker.google.com/issues/302408555

This is the Link to the Issue for the Warm Private Pool Instances

If anyone is interested

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muchammad Galih Saputra

79826116

Date: 2025-11-21 04:05:17
Score: 3.5
Natty:
Report link

Make sure your package.json has "type": "module" in it

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

79826113

Date: 2025-11-21 03:56:15
Score: 1.5
Natty:
Report link

I am also experiencing this exact issue.

Device Details:

Observation: The screen mirroring display became severely pixelated immediately after updating the operating system to Android 15. Previously, the mirroring quality was perfect.

Workaround: Due to this issue, I have had to switch to using scrcpy as a temporary workaround.

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

79826112

Date: 2025-11-21 03:54:15
Score: 3.5
Natty:
Report link

For those stuck with release, this is an alternative options to extends the 16 KB support requirements for now.
https://github.com/googlesamples/mlkit/issues/975#issuecomment-3561219134

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

79826111

Date: 2025-11-21 03:52:14
Score: 4
Natty:
Report link

haz un debug a D3DXMatrixLookAtRH seria algo como

D3DXVECTOR3 forward = eye - at;
float forward_len = D3DXVec3Length(&forward);

D3DXVECTOR3 cross_test;
D3DXVec3Cross(&cross_test, &up, &forward);
float cross_len = D3DXVec3Length(&cross_test);

OutputDebugStringA(
    ("forward len = " + std::to_string(forward_len) +
     ", cross len = " + std::to_string(cross_len) + "\n").c_str()
);

Si obtienes:

forward len = 0.0   → eye == at

o

cross len = 0.0     → up paralelo a forward

Creo que ya encontrarias el problema. espero haberte dado una pista. un salud.

Reasons:
  • Blacklisted phrase (2): espero
  • RegEx Blacklisted phrase (2): encontrarias
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user2412052

79826104

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

Consider tagging post as posix / c99.

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

79826103

Date: 2025-11-21 03:36:10
Score: 5
Natty:
Report link

@chux, that's nice, but I explicitly stated this is for POSIX C99.

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

79826102

Date: 2025-11-21 03:35:10
Score: 1.5
Natty:
Report link

My solution is usually to have the delayed function which is submitted to the client load the data from file (h5, which enables lazy loading for example) on demand.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nukolas

79826094

Date: 2025-11-21 03:17:06
Score: 2.5
Natty:
Report link

Thanks for the latest video. I followed the same steps. I hit another error when it calls access_token, though at APS side, the call has been succeeded. I suspected the issue came from the connecting of Zaiper.

After checking, it looks the request template affected. There is a request header Authorization with access_token, but when getting access token, this is NOT needed. After removing it from the template, connecting account and getting access_token succeeded.

Of course, when testing specific API such as BuildingConnected API, the header with Authorization is required. I manually added with the value=access_token. Then it works well to fetch API data such as getting companies info.

Could you give it a try? My test video is at

https://www.loom.com/share/2f9195213a86409e8d6adcdc9d22be58

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could you give
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Xiaodong Liang

79826093

Date: 2025-11-21 03:16:05
Score: 0.5
Natty:
Report link

@Antc There's no such thing as "a meaningless join between two relations" or a join "not representing a semantically correct connection", so that quote is a terrible unhelpful & misleading choice of words. Every join & every query has a straightforward meaning in terms of the meaning of its parts. They do immediately before reasonably write of "[t]he erroneous inference of information by the user from the relations in a database". They similarly terribly phrase re semantics elsewhere too. "They proposed the notion of l-less joins to capture the intuition of correct joins in B query." "Informally, a query is sound if it always returns information that logically follows from the state and the constraints."

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Antc
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: philipxy

79826092

Date: 2025-11-21 03:13:05
Score: 2
Natty:
Report link

how to use ace editor?

try going in this link: ace.

this ace in html is easy! and check this code snippet:

var editor = ace.edit("editor", {
  theme: "ace/theme/tomorrow_night",
  mode: "ace/mode/javascript",
});
#editor {
  width: 100%;
  height: 100vh;
}
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.13/ace.js"></script>
<div id="editor">function foo(what_is = "h"){
    let string = what_is;
    return 0;
  }</div>

easy, right!

features!

  1. line numbers

  2. syntax highlighting

  3. errors in number lines

choose an theme:

editor.setTheme("ace/theme/tomorrow_night")

choose an mode:

editor.session.setMode("ace/mode/html")

my favorite version is 1.4.13,

so the html code editor uses <script>.

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how to use
  • Low reputation (1):
Posted by: Ezekiel Ruivivatrr

79826091

Date: 2025-11-21 03:12:04
Score: 2.5
Natty:
Report link

On iOS versions prior to 17, the legacy method (_ : requestMediaCapturePermissionFor:...) is used, while on iOS 17 and later, the updated asynchronous API (_ : decideMediaCapturePermissionsFor:...) is employed.

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

79826087

Date: 2025-11-21 02:54:00
Score: 1
Natty:
Report link

I have a script with 200+ commands and want to schedule the script to run overnight via sqlcmd against any database I specify. Passing databasename to the script is straightforward but how to then ensure that USE databasename will hold for every command.

The approach I came up with is to create a temporary procedure at the beginning of the script that I can then repeatedly call passing @databasename and @sql. The script below demonstrates the approach.

/* example script */
IF OBJECT_ID('tempdb..#sp_querydb') IS NOT NULL
    DROP PROCEDURE #sp_querydb
GO
CREATE PROCEDURE #sp_querydb @db nvarchar(100), @query varchar(500)
AS
  BEGIN
    SET NOCOUNT ON
    DECLARE @sql varchar(550)
    SELECT @sql = 'USE ' + @db + '; ' + @query + ';'
    EXEC sp_executesql @sql  -- or sp_sqlexec
  END
GO
EXEC #sp_querydb 'mydb', 'SELECT DB_NAME()'
GO
EXEC #sp_querydb 'myotherdb', 'SELECT DB_NAME()'
GO

/* OUTPUT */
-------------
mydb
-------------
myotherdb
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @databasename
  • User mentioned (0): @sql
  • Low reputation (1):
Posted by: mick_of_all_trades

79826082

Date: 2025-11-21 02:30:55
Score: 3.5
Natty:
Report link

I'm trying to update PyTorch for MacPorts and am unable to access metalToolchain across different accounts :

sudo -u macports bash -c 'cd /opt/local/var/macports/build/_opt_local_ports_python_py-pytorch/py313-pytorch/work/pytorch-v2.9.1/build/caffe2/aten/src/ATen/ ; xcrun metal -std=metal3.1 bfloat_inc.metal'
error: error: cannot execute tool 'metal' due to missing Metal Toolchain; use: xcodebuild -downloadComponent MetalToolchain

This obviously breaks package manager builds like MacPorts.

There's some permissions issue for accounts different than the one that installed metalToolchain.

Here's what xcodebuild shows run as the user account versus the macports account:

$ xcodebuild -showComponent metalToolchain
Asset Path: /System/Library/AssetsV2/com_apple_MobileAsset_MetalToolchain/68d8db6212b48d387d071ff7b905df796658e713.asset/AssetData
Build Version: 17B54
Status: installed
Toolchain Identifier: com.apple.dt.toolchain.Metal.32023
Toolchain Search Path: /Users/username/Library/Developer/DVTDownloads/MetalToolchain/mounts/68d8db6212b48d387d071ff7b905df796658e713
$ sudo -u macports xcodebuild -showComponent metalToolchain
2025-11-20 16:28:33.645 xcodebuild[72040:426969]  IDEDownloadableMetalToolchainCoordinator: Failed to remount the Metal Toolchain: The file “68d8db6212b48d387d071ff7b905df796658e713” couldn’t be opened because you don’t have permission to view it.
2025-11-20 16:28:33.795 xcodebuild[72040:427010]  IDEDownloadableMetalToolchainCoordinator: Failed to remount the Metal Toolchain: The file “68d8db6212b48d387d071ff7b905df796658e713” couldn’t be opened because you don’t have permission to view it.
2025-11-20 16:28:33.796 xcodebuild[72040:426967]  IDEDownloadableMetalToolchainCoordinator: Failed to remount the Metal Toolchain: The file “68d8db6212b48d387d071ff7b905df796658e713” couldn’t be opened because you don’t have permission to view it.
Asset Path: /System/Library/AssetsV2/com_apple_MobileAsset_MetalToolchain/68d8db6212b48d387d071ff7b905df796658e713.asset/AssetData
Build Version: 17B54
Status: installed
Toolchain Search Path: /Users/username/Library/Developer/DVTDownloads/MetalToolchain/mounts/68d8db6212b48d387d071ff7b905df796658e713

I've tried fixing permissions, to no avail, and ls -ld@ doesn't show any obvious permissions issues.

Does anyone know how to make metalToolchain accessible to multiple users? Or simply the macports user?

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: essandess

79826069

Date: 2025-11-21 01:42:45
Score: 2
Natty:
Report link

<h1><span style="background-color: #e4e6e8;">"this is a heading"</span>
</h1>

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Laukesh patel

79826067

Date: 2025-11-21 01:34:43
Score: 1.5
Natty:
Report link

Just a follow-up; the set_position works with `AnnotationObjects`.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: cvanelteren

79826065

Date: 2025-11-21 01:23:41
Score: 0.5
Natty:
Report link

Fact tables in Power BI are denormalized to optimize query performance.

TLDR

In dimensional modeling for Power BI, fact queries are denormalized to optimize query performance and enhance user understanding. This approach contrasts with highly normalized transactional systems (OLTP) that prioritize data integrity and efficient data entry/updates.

Reasons for Denormalization in Power BI Dimensional Models:

While denormalization introduces some data redundancy, the benefits in terms of query performance and usability for analytical purposes in Power BI typically outweigh the drawbacks, especially when compared to attempting to report directly from a highly normalized OLTP system.

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

79826064

Date: 2025-11-21 01:21:40
Score: 0.5
Natty:
Report link

You can do this using the Python replacement regex module.
Get it here / install it : https://pypi.org/project/regex/
This works on Pcre style syntax that these functions use ie. Recursion.

These JSON parse functions by @sln allow you to validate the section of JSON
text you wish to query.

The core JSON parse functions explained as well as more practical usage examples can be found
here: https://stackoverflow.com/a/79785886/15577665

In this example we drill down to the valid Object that contains the sequence of keys desired
to find.

Regex

(?= (?&V_Obj) )                                        # Must be a valid object ahead
{                                                      # Open Object
                                                       # Some Drills :
(?: (?&V_KeyVal) (?&Sep_Obj) )*?
\s* "contributors" \s* : \s* (?&V_Value) (?&Sep_Obj)   # Drill to "contributors"
(?: (?&V_KeyVal) (?&Sep_Obj) )*?
\s* "truncated" \s* : \s* (?&V_Value) (?&Sep_Obj)      # Drill to "truncated"
(?: (?&V_KeyVal) (?&Sep_Obj) )*?
\s* "text" \s* : \s*                                   # Drill to "text" key

(?! " \s* RT )                                         # Not a string value that starts with 'RT'
\K                                                     # Stop recording
(?&Str) (?&Sep_Obj)                                    # Just match 'text' Value 'string'


# JSON functions by @sln - NoErDet
# ---------------------------------------------
(?(DEFINE)(?<Sep_Ary>\s*(?:,(?!\s*[}\]])|(?=\])))(?<Sep_Obj>\s*(?:,(?!\s*[}\]])|(?=})))(?<Str>(?>"[^\\"]*(?:\\[\s\S][^\\"]*)*"))(?<Numb>(?>[+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?|(?:[eE][+-]?\d+)))(?<V_KeyVal>(?>\s*(?&Str)\s*:\s*(?&V_Value)\s*))(?<V_Value>(?>(?&Numb)|(?>true|false|null)|(?&Str)|(?&V_Obj)|(?&V_Ary)))(?<V_Ary>\[(?>\s*(?&V_Value)(?&Sep_Ary))*\s*\])(?<V_Obj>{(?>(?&V_KeyVal)(?&Sep_Obj))*\s*}))

Python code sample

>>> import regex
>>>
>>> json = r'{"contributors": null, "truncated": false, "text": "RT @BelloPromotions: Myke Towers Ft. Mariah - Desaparecemos\n@myketowers #myketowers #mariah @mariah #Desaparecemos #music #musica #musicanu\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 1099558111000506369, "favorite_count": 0, "entities": {"symbols": [], "user_mentions": [{"id": 943461023293542400, "indices": [3, 19], "id_str": "943461023293542400", "screen_name": "BelloPromotions", "name": "Bello Promotions \ud83d\udcc8\ud83d\udcb0"}, {"id": 729572008909000704, "indices": [60, 71], "id_str": "729572008909000704", "screen_name": "MykeTowers", "name": "Towers Myke"}, {"id": 775866464, "indices": [92, 99], "id_str": "775866464", "screen_name": "mariah", "name": "Kenzie peretti"}], "hashtags": [{"indices": [72, 83], "text": "myketowers"}, {"indices": [84, 91],"text": "mariah"}, {"indices": [100, 114], "text": "Desaparecemos"}, {"indices": [115, 121], "text": "music"}, {"indices": [122, 129], "text": "musica"}], "urls": []}, "retweeted": false, "coordinates": null, "source": "<a href=\"http://twitter-dummy-auth.herokuapp.com/\" rel=\"nofollow\">Music Twr Suggesting</a>", "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 18, "id_str": "1099558111000506369", "favorited": false, "retweeted_status": {"contributors": null, "truncated": true, "text": "Myke Towers Ft. Mariah - Desaparecemos\n@myketowers #myketowers #mariah @mariah #Desaparecemos #music #musica\u2026 [link]"}}'
>>>
>>> Rx = r'(?=(?&V_Obj)){(?:(?&V_KeyVal)(?&Sep_Obj))*?\s*"contributors"\s*:\s*(?&V_Value)(?&Sep_Obj)(?:(?&V_KeyVal)(?&Sep_Obj))*?\s*"truncated"\s*:\s*(?&V_Value)(?&Sep_Obj)(?:(?&V_KeyVal)(?&Sep_Obj))*?\s*"text"\s*:\s*(?!"\s*RT)\K(?&Str)(?&Sep_Obj)(?(DEFINE)(?<Sep_Ary>\s*(?:,(?!\s*[}\]])|(?=\])))(?<Sep_Obj>\s*(?:,(?!\s*[}\]])|(?=})))(?<Str>(?>"[^\\"]*(?:\\[\s\S][^\\"]*)*"))(?<Numb>(?>[+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?|(?:[eE][+-]?\d+)))(?<V_KeyVal>(?>\s*(?&Str)\s*:\s*(?&V_Value)\s*))(?<V_Value>(?>(?&Numb)|(?>true|false|null)|(?&Str)|(?&V_Obj)|(?&V_Ary)))(?<V_Ary>\[(?>\s*(?&V_Value)(?&Sep_Ary))*\s*\])(?<V_Obj>{(?>(?&V_KeyVal)(?&Sep_Obj))*\s*}))'
>>>
>>> regex.search( Rx, json )
<regex.Match object; span=(1370, 1494), match='"Myke Towers Ft. Mariah - Desaparecemos\\n@myketowers #myketowers #mariah @mariah #Desaparecemos #music #musica\\u2026 [link]"'>
>>>
>>>

Output

"Myke Towers Ft. Mariah - Desaparecemos\\n@myketowers #myketowers #mariah @mariah #Desaparecemos #music #musica\\u2026 [link]"
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @sln
  • High reputation (-1):
Posted by: sln

79826063

Date: 2025-11-21 01:14:38
Score: 3.5
Natty:
Report link

Not an action, but quite powerful to preserve git history https://github.com/drevops/git-artifact

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Alex Skrypnyk

79826062

Date: 2025-11-21 01:14:38
Score: 3
Natty:
Report link

I resolved the error for 64-bit version by replacing the lib file “x64_n6/libredir_std.lib” with another copy on my PC.

But this trick did not work for 32-bit version build. I cannot find a copy of following lib that can resolve the error.

"i86_n3/libredir_std.lib"

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Whitelisted phrase (-2): I resolved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ming

79826054

Date: 2025-11-21 00:43:32
Score: 3
Natty:
Report link

you need to use euclidean distances to calculate the distance from wall, inverse cosine and sine formulas to calculate wall distance at different angles

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

79826048

Date: 2025-11-21 00:22:27
Score: 1.5
Natty:
Report link

This is great and works! Processing a large amount of data in the background representing the final image and save to 'path' is my step one. The image (img1) is displayed (and saved).
When I come back later, I apply another process step on the displayed image generating a new image. Meanwhile I don't remember where I saved img1 (my problem, but ... ) but the new image should also be saved in the same location as img1. That is where I did run into the issue which is now solved! Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: E Voelkl

79826039

Date: 2025-11-20 23:56:21
Score: 2.5
Natty:
Report link

Problems like this often come from version incompatibilities between Spark, Python, Java, or Hadoop. In my case, the following combination works without issues: Python 3.11, Java 17, Hadoop 3.3.6, and PySpark 3.5.1.

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

79826033

Date: 2025-11-20 23:42:17
Score: 2
Natty:
Report link

I think I agree with your colleague, main should always be deployable and staging should reflect exactly what is ready to go live. And this is somewhat the standard practice, the workflow is: Feature Branch - Code Review - Main - Staging - Production. Code review catches bugs before main. If issues appear in staging, it's best to fix them in a new feature branch.

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

79826032

Date: 2025-11-20 23:42:17
Score: 2.5
Natty:
Report link

I came across the same issue, there is a chrome bug open for this: https://issues.chromium.org/issues/424764874?pli=1

Firefox had a similar issue too, but this is fixed in the latest update.

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

79826030

Date: 2025-11-20 23:35:14
Score: 5.5
Natty: 4.5
Report link

การหาข้อมูลและข้อเท็จจริงในหัวข้อต่างๆ

การแปลภาษา

การเขียนเนื้อหา, บทความ หรืออีเมล

การแก้ไขปัญหา หรือให้คำแนะนำ

หรือเรื่องอื่น ๆ ที่คุณต้องการ

โปรดแจ้งให้ฉันทราบว่าคุณต้องการอะไร ฉันยินดีที่จะช่วยเหลืออย่างเต็มที่

ค่ะ

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Rungnapha Adam

79826022

Date: 2025-11-20 23:20:10
Score: 2
Natty:
Report link

Redux sagas run in the browser, so Playwright can intercept the HTTP requests they make. I don't think you need Jest. I suggest you use `page.route()` to intercept your final backend endpoint, then go through the funnel, fill all the forms, and submit. Also, verify the captured request has the correct URL and payload.

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

79826021

Date: 2025-11-20 23:18:10
Score: 5
Natty: 4
Report link

It is not easy manually.. Try it automatically like mine - https://pad.itiv.kit.edu/s/hdWzzpSr-

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Will Williams

79826018

Date: 2025-11-20 23:13:08
Score: 3.5
Natty:
Report link

You could. Provided you get the credential headers and the json payload.

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

79826017

Date: 2025-11-20 23:11:07
Score: 1
Natty:
Report link

I was having the similar issue, I am using android Android Studio Otter | 2025.2.1.

The problem was because of incomplete files downloads.

Here is how I solve this problem.

Step 1: Close android Studio

Step 2: Navigate to the folder -->> C:\Users\{userName}\.gradle\caches

Step 3: Delete all the files in this folder and start android studio.

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

79826016

Date: 2025-11-20 23:07:06
Score: 2
Natty:
Report link

<div class="_aagv" style="padding-bottom: 100%;"><img alt="No photo description available." class="x5yr21d xu96u03 x10l6tqk x13vifvy x87ps6o xh8yej3" crossorigin="anonymous" src="https://instagram.fpcl1-1.fna.fbcdn.net/v/t51.2885-15/550234105_1555621925850196_2899217250533692389_n.jpg?stp=dst-jpg_e15_q90_s1920x1920_sh0.08_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6ImFkc19pbWFnZS4xOTIweDE5MjAub3JpZ2luYWw6MjE2MHgyMTYwLnBhZ2U6UGFnZVR5cGVDb2RlLlBBR0VfSU5TVEFHUkFNX1dFQl9GRUVEIn0&_nc_ht=instagram.fpcl1-1.fna.fbcdn.net&_nc_cat=104&_nc_oc=Q6cZ2QGo0cnPrNNXca1zHijp0MEDTW3IlpcJYWt0vRj42dbHskrvRZ-wReK46LZsZ4CFACuUMtxwMQ1cJKe24BOeIwZf&_nc_ohc=Oa9sXZkT65EQ7kNvwEYd01V&_nc_gid=aDdF8T-T1fMfyX0NzUqSWw&edm=APNOSGoBAAAA&ccb=7-5&oh=00_AfiI8jdsRTfHxjobhlljngjRgqAHVCaQKt4GImFFyAhrBg&oe=6925864F&_nc_sid=ca40e6" style="object-fit: cover;"></div>

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Patrick Andrs Bustamante Figue

79825982

Date: 2025-11-20 21:53:49
Score: 1
Natty:
Report link

When having inconsistent or multiple indentation problems, copy the yaml code and place it in Yaml Lint . It will tell you your errors and also give you a nice clean UTF-8 version of it. Then you copy it back to the Yaml file and it will fix your error.
Hope it helps.

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Elizabeth Orji

79825978

Date: 2025-11-20 21:50:48
Score: 0.5
Natty:
Report link

why are you using embedded mode? Did you try using the remote client first? Here are the docs pages for starting a 3-node cluster in Docker using the remote client.

https://ignite.apache.org/docs/ignite3/latest/quick-start/start-cluster

And the embedded mode docs, if you need to use the extended features of embedded mode in your application.

https://ignite.apache.org/docs/ignite3/latest/quick-start/embedded-mode

I suggest starting with the remote client if you are new to Ignite. It will work even with a single-node cluster.

Reasons:
  • Whitelisted phrase (-2): Did you try
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): why are you
  • Low reputation (1):
Posted by: Michael Aglietti

79825973

Date: 2025-11-20 21:42:46
Score: 4
Natty: 5
Report link

Did anything come from this? I shoot stereoscopic 3D and are very interested in multicam usbc stearing of my camera’s speed, aperture and ISO settings, syncing them: thus read master, set slave.

Regards,

Edwin

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did any
  • Low reputation (1):
Posted by: Edwin 3D for You Glaser

79825972

Date: 2025-11-20 21:41:46
Score: 1.5
Natty:
Report link

I've encountered similar error and in my case it was difference between versions (major release number) of docker running on swarm cluster and a machine that I wanted to join swarm.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: DevilaN

79825966

Date: 2025-11-20 21:19:40
Score: 1.5
Natty:
Report link

For anyone seeing this question in 2025 or later, this is now possible. If you want both (button and enter) you can put Select(Button) in the OnChange property of the text input control. If you just want enter, put whatever code is in your button into the OnChange property. That property will trigger from hitting enter or tab, or just clicking outside of the text input control.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: RachaelTheBlonde

79825963

Date: 2025-11-20 21:13:38
Score: 4.5
Natty:
Report link

pnpm install --prod --frozen-lockfile

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fathi Sahbani

79825958

Date: 2025-11-20 21:03:35
Score: 6
Natty:
Report link

@Nas_T Globalsign seems to be half the price of your link, €779 for 3 years: https://shop.globalsign.com/nl-nl/code-signing

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Nas_T
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: brinkdinges

79825957

Date: 2025-11-20 21:01:35
Score: 1
Natty:
Report link

As mentioned in Guru's reply, Stephen Cleary's Concurrency Cookbook, you can also checkout Stephen's invaluable blog on Async and Await.

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

79825953

Date: 2025-11-20 20:56:33
Score: 0.5
Natty:
Report link

Same thing happened to me so I fixed it by upgrading the project using "Composer upgrade" in the project and then composer require tightenco/ziggy and it installed without any issues.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ali

79825949

Date: 2025-11-20 20:48:31
Score: 5.5
Natty: 5.5
Report link

Do you need to change any variable in the answer?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: FarsHattt

79825946

Date: 2025-11-20 20:44:30
Score: 0.5
Natty:
Report link

Just a note...

This statement is not accurate:

In an MVVM architecture, models should be kept free of UI-related logic.

Generally, this is impossible, because the UI can be, and usually is, an essential part of the overall application logic. The right approach is to isolate and abstract out the UI implementation. Can you see the difference? The criterion for this abstraction is met when you can easily replace the View with something completely different, using a different UI framework, and so on. But not to separat the logic itself.

Now, to discuss the particular architecture issue, including one of the most important issues, code duplication, you have to provide an abstract description of your project goals and most basic requirements, importantly, not based on your existing code.

Your existing code can be discussed separately, when we have the understanding what the application can do.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Sergey A Kryukov

79825944

Date: 2025-11-20 20:37:28
Score: 0.5
Natty:
Report link

Sorry, but you post lacks focus. I'm afraid your problem is not that you cannot find the best solution or formulate the problem, but that you don't really see that you don't have focus. Also, it looks like you don't see what to write to make a conversation productive.

Right now, your issue looks so general that it does not present any issue. Rather, it looks you are going to talk about nothing.

I suggest you think about it.

Reasons:
  • No code block (0.5):
Posted by: Sergey A Kryukov

79825943

Date: 2025-11-20 20:33:27
Score: 2.5
Natty:
Report link

You are missing the build step. You should put the files in a subfolder under extensions. Run the frontend build command like npm run build before trying to add them in the Customization project.

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

79825940

Date: 2025-11-20 20:25:25
Score: 1.5
Natty:
Report link

Just in case, something that worked for me (for other users) : try changing the output file format in the run/setup section. In my case it was set to category overview (crystal reports). Changing it to siman summary report solved the same issue as the one you described.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dam's

79825936

Date: 2025-11-20 20:20:23
Score: 6 🚩
Natty: 5.5
Report link

تم تعليق حسابي لنشاط لا يتبع سياسة الواتساب ، و لكن راجعت حسابي و انا علي يقين بأنني لم اخالف سياسات واتساب و اتمني استرجاع حسابي و الغاء الحظر عن رقمي لأنه بالغ الاهمية و لا اتبع اي سياسات مضرة او مخالفة للواتساب ، و شكرا لكم. "

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: داود محفوض

79825933

Date: 2025-11-20 20:13:20
Score: 0.5
Natty:
Report link

not something to be discussed here as its not programming related.

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

79825927

Date: 2025-11-20 20:09:19
Score: 1.5
Natty:
Report link

You're using your disassembler wrong.

Right off the bat, we can tell that the load and the jump don't target the same address, because adrp generates addresses aligned to 0x1000 bytes, so the bottom 12 bits of the load are 0x6c8 whereas the bottom 12 bits of the jump are 0x068. They can't possibly be the same.

Going deeper: you're on macOS 26.0.1 (25A362) and this is the function you're looking at:

;-- __malloc_zone_calloc:
0x1802f9ff0      085435b0       adrp x8, sym._ctr_des
0x1802f9ff4      08dd41f9       ldr x8, [x8, 0x3b8]
0x1802f9ff8      095435f0       adrp x9, 0x1ead7c000
0x1802f9ffc      296943f9       ldr x9, [x9, 0x6d0]
0x1802fa000      1f0100eb       cmp x8, x0
0x1802fa004      200940fa       ccmp x9, 0, 0, eq
0x1802fa008      81000054       b.ne 0x1802fa018
0x1802fa00c      085c36d0       adrp x8, 0x1ece7c000
0x1802fa010      083540f9       ldr x8, [x8, 0x68]
0x1802fa014      000140f9       ldr x0, [x8]
0x1802fa018      085435d0       adrp x8, 0x1ead7c000
0x1802fa01c      08215b39       ldrb w8, [x8, 0x6c8]
0x1802fa020      48020037       tbnz w8, 0, 0x1802fa068
0x1802fa024      085435d0       adrp x8, 0x1ead7c000
0x1802fa028      085143f9       ldr x8, [x8, 0x6a0]
0x1802fa02c      e80100b5       cbnz x8, 0x1802fa068
0x1802fa030      086840b9       ldr w8, [x0, 0x68]
0x1802fa034      1f310071       cmp w8, 0xc
0x1802fa038      89010054       b.ls 0x1802fa068
0x1802fa03c      1f410071       cmp w8, 0x10
0x1802fa040      e3000054       b.lo 0x1802fa05c
0x1802fa044      045440f9       ldr x4, [x0, 0xa8]
0x1802fa048      e8031eaa       mov x8, x30
0x1802fa04c      e843c1da       xpaci x8
0x1802fa050      038542d3       ubfx x3, x8, 2, 0x20
0x1802fa054      50c68dd2       mov x16, 0x6e32
0x1802fa058      90081fd7       braa x4, x16
0x1802fa05c      031040f9       ldr x3, [x0, 0x20]
0x1802fa060      f03688d2       mov x16, 0x41b7
0x1802fa064      70081fd7       braa x3, x16
0x1802fa068      01000014       b sym.__malloc_zone_calloc_instrumented_or_legacy

To prove that, let's look at these three instructions:

0x1802fa018      085435d0       adrp x8, 0x1ead7c000
0x1802fa01c      08215b39       ldrb w8, [x8, 0x6c8]
0x1802fa020      48020037       tbnz w8, 0, 0x1802fa068
  1. The ldrb is the exact same as in your snippet, that's how I found this in the first place.
  2. The adrp has a page delta encoding of 0x6aa82000, which your disassembler shows as 0x6aa82 in decimal, i.e. 436866. Together, these two are almost guaranteed to uniquely identify your dyld_shared_cache, since there's over 3000 libraries merged in there (you'll notice that the full delta of 0x6aa826c8 is almost 1.8GB away from the instruction performing the load).
  3. The bottom 14 bits of the tbnz address matches (i.e. 0x18c2b6068 & 0x3fff == 0x1802fa068 & 0x3fff == 0x2068).

This tells us that your cache is running with an ASLR slide of 0xbfbc000 versus the unslid image on disk. So your slid address of 0x18c2b6068 would correspond to unslid 0x1802fa068 - which is the last instruction of the function above, which is exactly what - and that's what makes sense, jumps within functions are what tb[n]z are usually used for, with their rather limited bits for jump distance. It's also what my disassembler is showing.

So how did you get to malloc_logger? Well that's the next load after that:

0x1802fa024      085435d0       adrp x8, 0x1ead7c000
0x1802fa028      085143f9       ldr x8, [x8, 0x6a0]
0x1802fa02c      e80100b5       cbnz x8, 0x1802fa068

The variable that's loaded for the tbnz check is malloc_slowpath, and if I got there and print a bunch of surrounding stuff as instructions, I see this:

[0x1ead7c6c8]> pd -10
         ;-- _malloc_logger:
         0x1ead7c6a0      00000000       invalid
         0x1ead7c6a4      00000000       invalid
         0x1ead7c6a8      00000000       invalid
         ;-- _malloc_tracing_enabled:
         0x1ead7c6ac  ~   00000000       invalid
         ;-- _malloc_interposition_compat:
         0x1ead7c6af      00             unaligned
         0x1ead7c6b0      00000000       invalid
         ;-- _malloc_sec_transition_policy:
         0x1ead7c6b4      00000000       invalid
         ;-- _malloc_sec_transition_early_malloc_support:
         0x1ead7c6b8      00000000       invalid
         0x1ead7c6bc      00000000       invalid
         ;-- _malloc_check_start:
         0x1ead7c6c0      00000000       invalid
[0x1ead7c6c8]> pd 10
         ;-- _malloc_slowpath:
         0x1ead7c6c8      00000000       invalid
         0x1ead7c6cc      00000000       invalid
         ;-- _lite_zone:
         0x1ead7c6d0      00000000       invalid
         0x1ead7c6d4      00000000       invalid
         ;-- _malloc_zero_on_free_sample_period:
         0x1ead7c6d8      00000000       invalid
         0x1ead7c6dc      00000000       invalid
         ;-- ___mach_stack_logging_shared_memory_address:
         0x1ead7c6e0      00000000       invalid
         0x1ead7c6e4      00000000       invalid
         ;-- _stack_logging_enable_logging:
         0x1ead7c6e8      00000000       invalid
         0x1ead7c6ec      00000000       invalid

So the first load is for malloc_slowpath, which is not too far from malloc_logger, which is the target of the load right after that. But either way, we are in the DATA segment here, these are variables, not functions, there is no code here!

As an aside, your disassembler may not be particularly good (or suited to arm64 or Darwin) either, based off the poor display of the adrp immediate, and the ; <+120> comment on tbnz, which is entirely wrong (it's probably meant to say 0x120, but it's a 0x48 bytes delta, which implies a shift of << 2, except that has already been applied to the value in the instruction encoding... it's a mess).

But hey, did you know that this code is open source?

Reasons:
  • RegEx Blacklisted phrase (3): did you get to
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Siguza

79825926

Date: 2025-11-20 20:08:19
Score: 3
Natty:
Report link

In FirefoxDev, you can set it as an option in the same place Inspect > 3 dots > Settings > Inspector > Default color unit.

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

79825925

Date: 2025-11-20 20:07:18
Score: 6
Natty: 7
Report link

where i should put this part of the code in my code ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): where i
  • Low reputation (1):
Posted by: Taras Manachynskyi

79825924

Date: 2025-11-20 20:07:18
Score: 5.5
Natty:
Report link

Is this only problem with AWS SDK calls? Eg. what version of AWS SDK do you use? V2 or V3?

I remember there were some issues with V2 and errors so just to make sure this is not related to this.

Would you mind to tey to theow an error in the beginning of your handler to see if you can see the line number in the error stack?

Reasons:
  • Blacklisted phrase (2): Would you mind
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is this on
  • Low reputation (0.5):
Posted by: Cockootec

79825922

Date: 2025-11-20 20:05:17
Score: 6 🚩
Natty: 5
Report link

Yes. It is very disappointing this hasn't been enhanced. The Google Home web experience has two way audio. Why can't SDM api generate a stream with two way audio?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: litex2x

79825914

Date: 2025-11-20 19:53:13
Score: 2
Natty:
Report link

As stated by @PanagiotisKanavos C# Dec Kit does not have support for any Dot Net version below 7, my work around was to use a windows VM (my main system runs linux) with Visual Studio 2019 installed to implement the feature and debug the code.

I should mention that I can run the code perfectly fine using Linux it's just the lack of any debugging tools for that version so you have to write to the console to see what's happening.

The version used in the project should be updated though but that's not my call to make. ̄\_ (ツ)_/ ̄

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @PanagiotisKanavos
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ndifreke James Okpo

79825911

Date: 2025-11-20 19:48:11
Score: 5.5
Natty: 5.5
Report link

I'm running into the same issue. Was there ever a resolution to this?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeff

79825910

Date: 2025-11-20 19:48:11
Score: 1
Natty:
Report link

@Alexander This is Bash's POSIX mode. -- Or what do you expect from it? If you want a shell that rejects all Bashisms (not just the ones actively contradicting POSIX, which is what the --posix mode is for), use another shell. Depending on your other requirements, Dash or the KornShell come to mind...

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Alexander
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: pmf

79825908

Date: 2025-11-20 19:45:09
Score: 5.5
Natty:
Report link

See Convert Bash Scripts To Shell, How can I test for POSIX compliance of shell scripts? - Unix & Linux Stack Exchange, and Is there a minimally POSIX.2 compliant shell?.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: pjh

79825905

Date: 2025-11-20 19:44:09
Score: 1.5
Natty:
Report link

I use uvx --from watchdog watchmedo .... from https://stackoverflow.com/a/55196033/9072753

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: KamilCuk