79782699

Date: 2025-10-04 22:04:07
Score: 1
Natty:
Report link

I was exactly in the same situation. I really struggled to understand.

I struggled so much that I decided to make my solution public because in the world of DevOps, I can't imagine not being able to run a service in container mode.

You need:

  1. to mount same volume path in your host and in your agent

  2. installation Docker in your image

  3. Mount your socket docker in your Docker (take attention to your security)

  4. Build a image to auto detect and adjust group for find security to access at your docker socket

There is a lot a thing.

So I published my solution here:

https://github.com/hypolas/azure-devops-agent

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

79782696

Date: 2025-10-04 22:01:06
Score: 3
Natty:
Report link

You need to write a wrapper to one-hot-encode the states. This will help in training the DQN much more effectively.

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

79782689

Date: 2025-10-04 21:30:00
Score: 1
Natty:
Report link

Don't use pyparsing, it's horribly slow. I would post my regex example here if pasting into stackoverflow worked.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: personal_cloud

79782688

Date: 2025-10-04 21:17:57
Score: 4.5
Natty:
Report link

I managed to "fix" it by changing the names of the controllers. Apparently utoipa gets confused if they have the same name, even if they're in different modules. So I went for read_all_ci and read_all_incidents, and so on.

I'd consider this more of a workaround tho, and not an actual fix, so if anyone knows a better solution please share it :D

Reasons:
  • Blacklisted phrase (1): anyone knows
  • RegEx Blacklisted phrase (2.5): please share
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: nacho

79782680

Date: 2025-10-04 21:09:55
Score: 1
Natty:
Report link

As answered by @LenHolgate, there are no timers that directly generate a IOCP completion.

But it is possible to generate a IOCP completion for "waitable timers" and any other synchronization object using the NT API.

By using NtCreateWaitCompletionPacket and NtAssociateWaitCompletionPacket, you can create a handle to a completion packet and associate it with any synchronization object. This will generate a new IOCP completion once the object is signalled.

This association is always one-shot, so if your "waitable timer" is periodic, you will need to call NtAssociateWaitCompletionPacket on each expiration.

Please note that this solution uses the native NT APIs, which may change or break in future versions of Windows.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @LenHolgate
  • Low reputation (1):
Posted by: Xumaquer

79782677

Date: 2025-10-04 21:01:53
Score: 1.5
Natty:
Report link

As other solutions did not work, I implemented some custom solution.

When the processor discovers no more data shall be processed it sets a flag in the stepContext's transientUserData. To prevent the current data from getting written, it also returns null. On the next loop iteration the reader checks transientUserData flag and - if set - returns null. This makes the partition stop.

As I want to use generic readers I implemented an ItemReaderListener that performs the check and action in the afterRead() method.

Reasons:
  • Blacklisted phrase (1): did not work
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: queeg

79782675

Date: 2025-10-04 20:59:52
Score: 0.5
Natty:
Report link

Are you using Active Record?

Try to configure Active Record with the following:

config.active_record.yaml_column_permitted_classes = [
  ActiveSupport::TimeWithZone,
  ActiveSupport::TimeZone,
  Date,
  Symbol,
  Time,
]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Capripot

79782672

Date: 2025-10-04 20:56:52
Score: 2
Natty:
Report link

In my case I had to remove a clip-path attribute on my object, via the xml editor. After that, the top answer works

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

79782670

Date: 2025-10-04 20:53:51
Score: 1
Natty:
Report link

Adding this to my next.config.js worked to fix this issue for my project

serverExternalPackages: ['odbc', '@mapbox/node-pre-gyp'],

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

79782669

Date: 2025-10-04 20:52:50
Score: 0.5
Natty:
Report link

Almost similar issue at flutter run. I didn't want to upgrade XCode or macOS

Could not build the precompiled application for the device.

Lexical or Preprocessor Issue (Xcode): 'messages.g.h' file not found

/Users/noneofyourbusiness/.pub-cache/hosted/pub.dev/wakelock_plus-1.3.0/ios/wakelock_plus/Sources/wakelock_plus/WakelockPlusPlugin.m:1:8

Sorted this by having to add into wakelock_plus in pubspec.yaml

wakelock_plus: ^1.4.0

I hope this helps someone who is stuck on a Saturday night.

Maybe I could resolve this by deleting DerivedData?

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Lightwaxx

79782668

Date: 2025-10-04 20:50:50
Score: 0.5
Natty:
Report link

The problem was, that I was starting the server with redis-server redis.conf instead of redis-server redis-full.conf

The later also loads redis.conf see example and still technically installs RedisJSON as a module. Note also, that the file path to the modules is currently

loadmodule /usr/local/lib/redis/modules/redisbloom.so
loadmodule /usr/local/lib/redis/modules/redisearch.so
loadmodule /usr/local/lib/redis/modules/rejson.so
loadmodule /usr/local/lib/redis/modules/redistimeseries.so
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: aknott

79782657

Date: 2025-10-04 20:30:46
Score: 3
Natty:
Report link

May be you are hitting post route in browser. make sure you are hitting accurate route: Get route in browser and Post in postman.

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

79782655

Date: 2025-10-04 20:27:45
Score: 1
Natty:
Report link

Use split for the shorthand without additional module

$filename = (split '/', $getpath)[-1];

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

79782654

Date: 2025-10-04 20:26:45
Score: 1
Natty:
Report link

In Python 3 “second‑generation” App Engine, the legacy bundled services (Search, NDB, Memcache, etc.) only work if two things are true:

  1. Your Flask/Django WSGI app is wrapped with the App Engine middleware, which plumbs the request’s API security ticket (X-AppEngine-API-Ticket) into the RPC layer.

  2. app_engine_apis: true is set in app.yaml, which instructs the platform to attach that ticket to requests that need to call bundled services.

If either is missing, RPC calls made by google.appengine.* (like search.Index(...).get_range(...)) fail with “no active security ticket.”

Google’s docs explicitly say to install the App Engine services SDK, wrap your WSGI app, and enable app_engine_apis.

This isn’t a new deprecation of Search; rather, Search is a legacy API that’s still available to Python 3 apps via the services SDK.

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

79782644

Date: 2025-10-04 20:11:41
Score: 3
Natty:
Report link

iOS 26.0.1 has fixed the issue for me (for most sites).

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: David H.

79782635

Date: 2025-10-04 19:40:34
Score: 2.5
Natty:
Report link

What you’re describing is basically an incremental materialized view, a denormalized table that stays in sync with its source data.

There are tools and databases built around this idea, like Materialize and pg_imv.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (1):
Posted by: Jasmin UwU

79782633

Date: 2025-10-04 19:33:33
Score: 3
Natty:
Report link

Bkit nwla Ang 400 pesos na panalo nya sa pinasa ko sa kanya link nang JLJL88,, JLJL88 San na nagpunta

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

79782615

Date: 2025-10-04 18:54:22
Score: 1.5
Natty:
Report link

I was seeing the same issue:

```

[nodemon] clean exit - waiting for changes before restart

```

For me, the problem was that the default port (5000) was already in use. Changing the port number in `app.js` (e.g., `const PORT = 5001;`) resolved the issue, and nodemon started correctly.

Just a heads-up for anyone else running into this — sometimes a “clean exit” isn’t an error, it can just mean the port is occupied.

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

79782611

Date: 2025-10-04 18:46:20
Score: 1.5
Natty:
Report link

If the VS version change is minor - you can opt to use MS side-by-side assemblies VC Runtime configuration to use the older VC Runtime dll in your extension. But in case you have a major version change - better opt to build PySide6 from sources along with Qt: Please see Building from source at https://pypi.org/project/PySide6/ so that it picks your VS version instead.

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

79782593

Date: 2025-10-04 17:53:08
Score: 1
Natty:
Report link

I think if you're using a single database, you don’t need to configure this manually—Spring Boot usually handles it automatically.

Here’s a video showing a similar configuration, though for a different purpose:
https://www.youtube.com/watch?v=fLyn8Ovyp8w
https://www.youtube.com/watch?v=utOyoLjBz-U

If you still want to configure it yourself, you can follow the steps there, or check any online blog. I suspect your session configuration might be incorrect.

@Configuration
public class AppConfig {
    @Bean(name="entityManagerFactory")
    public LocalSessionFactoryBean sessionFactory() {
        LocalSessionFactoryBean sessionFactory = new LocalSessionFactoryBean();

        return sessionFactory;
    }
}
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gyan Darpan

79782592

Date: 2025-10-04 17:53:08
Score: 1
Natty:
Report link
::ng-deep {
  .mdc-tab__content {
    // display: flex;
    // align-items: center;
    // justify-content: center;
    // height: inherit;
    // pointer-events: none;
    width: 100%;
  }
  .mat-mdc-tab .mdc-tab__text-label {
    // color: var(--mat-tab-inactive-label-text-color, var(--mat-sys-on-surface));
    // display: inline-flex;
    // align-items: center;
    width: 100%;
  }
}

After adding above css I am able to achive customm header with full width. Angular 20enter image description here

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

79782589

Date: 2025-10-04 17:47:06
Score: 1
Natty:
Report link
String str = "Aniruddh";
ArrayDeque<String> queue = new ArrayDeque<>();
List<String> result = Arrays.stream(str.split(""))
        .filter(e->queue.offerFirst(String.valueOf(e)))
        .toList();
System.out.println(result);
System.out.println(queue.stream().collect(Collectors.joining()));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gobinda CS

79782588

Date: 2025-10-04 17:39:04
Score: 1.5
Natty:
Report link

You’re getting those errors because the element reference isn’t valid at the time you’re trying to access it. In React, you can’t directly call getBoundingClientRect() or offsetTop on an element before it’s rendered or by passing this inside event handlers incorrectly.

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

79782587

Date: 2025-10-04 17:36:03
Score: 0.5
Natty:
Report link

If you are looking for something capable of symbolicating your crash log on Linux (and possibly Windows) without any XCode involved, you could try the open source tool over here: https://github.com/monal-im/DebugTools/tree/master/tools/symbol_extractor#symbolicator

It can even symbolicate all missing symbols of iOS system libraries. Internally it uses an sqlite3 database containing all symbols and addresses/library names. You can fill the database yourself with the C++ tool provided. A link to a repository containing symbols of various iOS builds is included in the README, too.

If you are using the excellent KSCrash crash reporter (https://github.com/kstenerud/KSCrash) this tool is capable of filling in all missing system symbols for you.

Disclaimer: I wrote that tool.

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

79782580

Date: 2025-10-04 17:10:58
Score: 1
Natty:
Report link

The immediate issue is a syntax error due to a missing semicolon.

In this line:

int s = 1 //Missing semicolon

You need to add a semicolon at the end:

int s = 1;  // Corrected

Without the semicolon, the compiler will throw an error like:

error: expected ‘,’ or ‘;’ before ‘n’
13 |     n = n+1 ;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: PRAVEEN

79782577

Date: 2025-10-04 17:06:57
Score: 1
Natty:
Report link

If that happens on iOS/macOS you have to delete the GoogleService-Info.plist from the XCode project "Copy bundle resources" build phase. It's added automatically when you do flutterfire configure but in your main.dart file this plist is already created from the Firebase initialization code:

await Firebase.initializeApp(
      options: DefaultFirebaseOptions.currentPlatform,
    );

enter image description here

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

79782565

Date: 2025-10-04 16:42:51
Score: 1
Natty:
Report link

<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="script.js"></script>
  </head>

  <body>
    <h3>Instructions</h3>
    <ul>
      <li>Click <a href='sample.txt' target='_blank'>ME</a> (download NOT present) to see page load in new tab then come back to this page</li>
      <li>Click <a href='sample.txt' download='sample.txt'>ME</a> (download PRESENT) to see it downloaded</li>
      <li>Click <a href='sample.txt' target='_blank'>ME</a> (download NOT present).  Safari forces this link to download</li>
    </ul>
  </body>

</html>

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Galhuu Bathkishig

79782564

Date: 2025-10-04 16:38:50
Score: 2
Natty:
Report link

Utilise React.lazy() et Suspense pour charger chaque route à la demande, surtout si tes pages sont lourdes (Markdown, images, éditeur riche, etc.)

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

79782550

Date: 2025-10-04 15:44:38
Score: 4.5
Natty: 5
Report link

Check the following blog post on downloading files in chunks

https://remotalks.blogspot.com/2025/07/download-large-files-in-chunks_19.html

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

79782526

Date: 2025-10-04 14:32:22
Score: 2
Natty:
Report link

There’s still no official way in the YouTube Data API v3 to check if a video is a Short...

Meanwhile, I found a RapidAPI endpoint that does exactly that: https://rapidapi.com/nextdata-nextdata-default/api/youtube-api-shorts-detection

You just pass video IDs, and it tells you if it’s a Short or not. Not official, but super useful if you need a quick solution.

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

79782514

Date: 2025-10-04 14:14:17
Score: 1.5
Natty:
Report link

As Gilles said in his comment, look at MPI_Alltoall(), MPI_Alltoallv, MPI_Alltoallw, etc.

MPI_Alltoallv allows for each process to send different amounts of data to each other, and MPI_Alltoallw is even more generalized exchange (per the MPI Standard documentation)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ben Michalowicz

79782511

Date: 2025-10-04 14:11:16
Score: 1.5
Natty:
Report link

Yes, it’s technically possible to use SQLite locally and MySQL in production, but keep in mind:

Feel free to ask if you have any other doubts!

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

79782506

Date: 2025-10-04 14:02:14
Score: 0.5
Natty:
Report link

request.security_lower_tf() returns an array of boolean values.

You can check if one element is true like so:

mustStopTradeArray = request.security_lower_tf(symbol = syminfo.tickerid, timeframe = "30", expression = mustStopTrade())
stopReturn := mustStopTradeArray.some()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sbtnc

79782505

Date: 2025-10-04 13:57:13
Score: 0.5
Natty:
Report link

ISO C17 (ISO/IEC 9899:2017 - N2176 working draft)

7.21.5.3 The fopen function
...
6 Opening a file with append mode (’a’ as the first character in the mode argument) causes all subsequent writes to the file to be forced to the then current end-of-file, regardless of intervening calls to the fseek function. ...
...


ISO C23 (ISO/IEC 9899:2024 - N3220 working draft)

7.23.5.3 The fopen function
...
6 Opening a file with append mode (’a’ as the first character in the mode argument) causes all subse-quent writes to the file to be forced to the then current end-of-file at the point of buffer flush or actual write, regardless of intervening calls to the fseek, fsetpos, or rewind functions. ...
...


[wg14/wg21 liaison] fopen 'x', 'a' and 'p'

From: Niall Douglas <s_sourceforge_at_[hidden]>
Date: Fri, 27 May 2022 13:23:43 +0000
...
fopen("a"):

Opening a file with append mode (\code{'a'} as the first character in the mode argument) causes all subsequent writes to the file to be forced to the current end-of-file at the point of buffer flush or actual write}, regardless of intervening calls to the \code{fseek}, \code{fsetpos}, or \code{rewind} functions. Incrementing the current end-of-file by the amount of data written is atomic with respect to other threads writing to the same file provided the file was also opened in append mode. If the implementation is not capable of incrementing the current end-of-file atomically, it shall fail setting \code{errno} to \code{ENOTSUP} instead of performing non-atomic end-of-file writes.} In some implementations, opening a binary file with append mode (\code{'b'} as the second or third character in the above list of \code{mode} argument values) may initially position the file position indicator for the stream beyond the last data written, because of null character padding.

[Main change: increment of end of file to become atomic]
...


Although the C17 draft (N2176) strictly mentions only fseek. The C23 draft (N3220) and the liaison material explicitly broaden the wording to include fsetpos and rewind, making the specification unambiguous across all File-Positioning Functions.

And despite the fact that the liaison material states that the “Main change” annotation highlights the atomicity addition, the wording change is undeniably present in the final proposal that WG14 moved forward with.

So finally, the mystery has been solved many years later.

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

79782502

Date: 2025-10-04 13:53:12
Score: 1
Natty:
Report link

It sounds like it may be related either to your ISP or Wifi AP / router settings, for instance NAT or proxy settings. I'd start with a simple test: can you actually resolve the DB server ('nslookup'), and if so, can you reach its IP address ('ping', 'traceroute', 'nmap' or such), and if so can you reach the listening port (default for the MSSQL DB engine is TCP port 1433)?
Here's a cool post on how to test TCP connectivity (either using telnet or PowerShell):

How to check Port 1433 is working for Sql Server or not?

I hope this helps.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Christophe

79782499

Date: 2025-10-04 13:45:09
Score: 4
Natty:
Report link

For Android, you must link Google Play with Firebase.

enter image description here

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

79782496

Date: 2025-10-04 13:36:07
Score: 2
Natty:
Report link

I would recommend you use this DI Container for Wordpress https://github.com/renakdup/simple-dic .

It is super comfortable DI Container in one file without any dependencies. So you can add it in your plugin/theme and just rename namespace for your project.

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

79782495

Date: 2025-10-04 13:34:07
Score: 1.5
Natty:
Report link

When I switched from Spyder to VS Code the variable explorer was the main feature I missed. So after some time I decided to make my own extension. The first version of Variable Explorer - A powerful variable inspection and editing tool for Python development, inspired by Spyder's Variable Explorer is now available in the VS Code marketplace.

Would love to get your feedback. enter image description here

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: Marco Liedecke

79782487

Date: 2025-10-04 13:02:00
Score: 0.5
Natty:
Report link
Forms\Components\TextInput::make('email')
    ->label('Email Address')
    ->required()
    ->email()
    ->maxLength(255)
    ->unique(
        table: User::class,
        column: 'email',
        ignorable: fn (?User $record) => $record,
    )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tomasz B.

79782484

Date: 2025-10-04 12:58:59
Score: 3
Natty:
Report link

SOLVED!

ADJ (adjust data for dividends) setting was ON!
Button in the right lower corner, and works somewhat counter-inituitve

See image here

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Foto Koen

79782482

Date: 2025-10-04 12:56:58
Score: 1
Natty:
Report link

Install Magento 1.5 via Plesk, then go to /downloader.
Use the key http://connect20.magentocommerce.com/community/Mage_All_Latest to update files.
Magento upgrades the DB automatically on next load.
Or unzip 1.6 files over 1.5 using Plesk/FTP, then visit the site to trigger DB upgrade.
No SSH needed.

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

79782472

Date: 2025-10-04 12:20:51
Score: 1
Natty:
Report link

A webhook is a way for your backend to get notify when an operation is completed. you provide the webhook API with a webhook URL , and then the API sends the data to that URL once the operation happend.

the frontend doesnt have direct way to receive these notifications, because webhooks are HTTP requests sent to a server endpoint. If you want the client to know about the change in real time without pooling your backend must forward the update using techniques like WebSockets, Server-Sent Events (SSE)

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

79782462

Date: 2025-10-04 12:05:47
Score: 1
Natty:
Report link

For a 2D Gaussian state estimate with covariance P, the confidence ellipse is aligned with the eigenvectors of P.
The semi-axis lengths are the square roots of the eigenvalues, scaled by a chi-square factor for the desired confidence level.

For example:

The direction of the ellipse is given by the eigenvectors of P, and the center is the mean vector μ.
For more details and worked examples for 1-D confidence interval, see:

The complete method for computing 2-D confidence ellipses, including MATLAB and Python code, is covered in the book "Kalman Filter from the Ground Up."

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

79782457

Date: 2025-10-04 11:40:42
Score: 2
Natty:
Report link

It looks like the issue comes from defining STRICT. I looked to win16.h header, which declares HWND, the header checks for STRICT which I defined in test.cpp. If STRICT is not defined, HWND is declared as UINT. But if defined, HWND is declared as structure.

For solution, I added "#define STRICT" to test2.cpp.

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

79782452

Date: 2025-10-04 11:24:39
Score: 2
Natty:
Report link

You can use the app execution alias extension.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bogdan Pătrăucean

79782433

Date: 2025-10-04 10:53:31
Score: 2
Natty:
Report link

I used Stimulsoft 2023.1.1 and tried to add my Persian fonts into StiFontCollection, and finally, the problem was solved. :) Just use the same code as I did:

StiFontCollection.AddFontFile($"{YourFontsPath}\\{FontName}.TTF");

I hope your problem is solved too. :)

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

79782421

Date: 2025-10-04 10:36:26
Score: 2
Natty:
Report link

If anyone else facing the problem, try intsall Docker Desktop app if you don't have one. Personally I have switched to OrbStack for long time ago, I found that internally it use Docker Desktop API to call the base image under the hood.

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

79782417

Date: 2025-10-04 10:34:26
Score: 1
Natty:
Report link

I already left you an answer on Microsoft Learn Q&A.

With the Shopify v2.0 ADF connector you can’t push a WHERE clause anymore but you can call Shopify directly via the REST connector or HTTP and pass a watermark like updated_at_min, then paginate until no Link: … rel="next" remains.

https://shopify.dev/docs/api/admin-rest/latest/resources/customer

https://learn.microsoft.com/en-us/azure/data-factory/connector-rest

Don’t try to force incrementals through the connector since Microsoft explicitly removed query in v2 and you must set tableName and fetch the table as it is. You can instead use REST or GraphQL for filtered pulls instead.

https://learn.microsoft.com/en-us/azure/data-factory/connector-shopify

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

79782416

Date: 2025-10-04 10:32:25
Score: 1
Natty:
Report link

Decorators in Webpack builds are like fancy wall art — they stay on the wall even if you don’t need them.
To make your “decor” removable:

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Pareezy

79782415

Date: 2025-10-04 10:27:24
Score: 1.5
Natty:
Report link

In addition to Sanjay Bharwani's post, I can add that creating a lombok.config file does indeed help. This file can be created in the root directory (where the pom.xml file is located). Afterwards, you should also recompile the project with mvn clean compile.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Иван Дёгтев

79782410

Date: 2025-10-04 10:08:20
Score: 1.5
Natty:
Report link

df2 = df.groupby('team1')['first_ings_score'].sum().sort_values(ascending=False).head(10)

# Adjust figure size for better readability

plt.figure(figsize=(12, 6))

plt.scatter(x = 'team1', y= 'first_ings_score')

plt.xlabel('Team')

plt.ylabel('Total First Innings Score')

plt.title('Top 10 Teams by Total First Innings Score')

# Rotate x-axis labels if they overlap

plt.xticks(rotation=45, ha='right')

# Adjust layout to prevent labels from being cut off

plt.tight_layout()

plt.show()

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

79782401

Date: 2025-10-04 09:56:17
Score: 1.5
Natty:
Report link

It did work during one day after I downloaded Xcode 26.0.1 and followed the different Terminal manual build proposed.

However, next day it fails…

I did file a Feedback Assistant for this issue

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jean-Marie D.

79782400

Date: 2025-10-04 09:53:17
Score: 1.5
Natty:
Report link

Fixed the problem that appeared after the Postgresql 18 upgrade by updating all DataGrip plugins.

Go to Settings in Main menu, select Plugins and update them all. Restart DataGrip.

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

79782396

Date: 2025-10-04 09:49:15
Score: 1
Natty:
Report link

You are using request.onSuccess after the db has already opened move, so the event never fires. What you need to do is you need to move the handler setup outside the click function

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

79782395

Date: 2025-10-04 09:49:15
Score: 1.5
Natty:
Report link

I had the same issue and non of the above helped. What helped, removing the jumpers that connects the target board and st-link (in case NUCLEO411RE it was on CN2). Then using the old ST-LINK Utility `s ST-LinkUpgrade.exe could only reflash my ST-Link.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: higbo

79782393

Date: 2025-10-04 09:41:14
Score: 1.5
Natty:
Report link

Here you didn't imported the .env package
use
import dotenv from "dotenv";

doteve.config({}) ;

or
const dotenv=require('dotenv');

dotenv.config({});

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

79782392

Date: 2025-10-04 09:37:13
Score: 1
Natty:
Report link

pandas data frames use eager executon model by design

https://pandas.pydata.org/pandas-docs/version/0.18.1/release.html#id96

Eager evaluation of groups when calling groupby functions, so if there is an exception with the grouping function it will raised immediately versus sometime later on when the groups are needed

The alternative is pandas on Spark - https://spark.apache.org/pandas-on-spark/

pandas uses eager evaluation. It loads all the data into memory and executes operations immediately when they are invoked. pandas does not apply query optimization and all the data must be loaded into memory before the query is executed.

It is possible to convert between the two - to_spark/to_pandas.

Similarly it is possible to convert between pandas and traditional Spark data frames - createDataFrame/toPandas.

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

79782386

Date: 2025-10-04 09:13:08
Score: 1
Natty:
Report link

The thing is bailey is not made for this scale you might hit other issues also. So If you really want to scale bailey you should stick with ec2 like this.

`
- 5-10 EC2 instances (r6i.xlarge or bigger)

- Each instance handles 500-1000 sessions

- Simple Node router service to distribute sessions

- Redis for router mapping + quick reconnect cache

- DynamoDB for credential persistence
`

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

79782384

Date: 2025-10-04 09:08:07
Score: 1
Natty:
Report link

Cloudwatch event success means it send the message to ecs not ecs task is running.

Go to your Ecs Cluster Events tab -- Go to your ECS cluster - Events, Look for errors like 'unable to place task' or 'In sufficient resource'.

Common causes may be there is some quota or limit you have exceeded, may be some network issues or it can be like you deleted some task definition or something

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

79782380

Date: 2025-10-04 09:01:05
Score: 1
Natty:
Report link

this is annoying but I think I know what's wrong

The field name is Parameters not Arguments for ECS tasks in Step Functions

{
"parameters": {
"taskDefinition": "........"
},

......
}

something like this it is always better you just try to download your taskdefinition first then edit to avoid these mistakes

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Filler text (0.5): ........
  • Low reputation (0.5):
Posted by: Al Ameen

79782377

Date: 2025-10-04 08:50:02
Score: 3
Natty:
Report link

Squid version 4.10 must be compiled manually, after setting the required value #define MAXTCPLISTENPORTS 128. in the /squid-4.10/src/anyp/PortCfg.h file

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

79782375

Date: 2025-10-04 08:46:01
Score: 1
Natty:
Report link

This is my suggestion. It better readable in my opionion:

integerList
        .stream()
        .mapToInt(Integer::intValue)
        .sum();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Julian Stier

79782374

Date: 2025-10-04 08:45:01
Score: 2
Natty:
Report link

It looks like since iOS 18.x, "full access" for a keyboard extension is mandatory to open the main app.

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

79782357

Date: 2025-10-04 07:54:50
Score: 3
Natty:
Report link

Alt + 1 – Issues

Alt + 2 – Search Results

Alt + 3 – Application Output

Alt + 4 – Compile Output

Alt + 5 – Terminal

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Artyom Fedosov

79782351

Date: 2025-10-04 07:39:46
Score: 1
Natty:
Report link

from PIL import Image, ImageDraw, ImageFont

# Ganti dengan lokasi gambar bingkai Anda

background_path = "images (1).jpeg"

bg_image = Image.open(background_path).convert("RGB")

# Teks yang akan dimasukkan

text = """

GEREJA MASEHI INJILI DI TIMOR

SURAT NIKAH

No. 84/N/2024

SERI: MS. A. Aa 00029667

Efesus 5:22–33

Ibrani 13:4

Telah diteguhkan dalam Nikah Masehi

Pada tanggal 27 Oktober 2024

Oleh: Pdt. Dr. Kasiatin Widianto, M.Th

Di: Jemaat GMIT Hosana Surabaya

Klasis: Alor Barat Laut

Mempelai Pria:

Nama: Habel Idison Makunimau

Tempat Lahir: Kalabai

Alamat Asal: Adagae

Tanggal Lahir: 14 Juni 2004

Mempelai Wanita:

Nama: Irma Petrocia Nanggula

Tempat Lahir: Kolana

Tanggal Lahir: 24 April 2001

Saksi-saksi:

1. Daniel Matias K. Lontorin

2. Sri Maryati Plaituka

[TEMPAT FOTO PASANGAN]

Surabaya, …………………………………………

ATAS NAMA MAJELIS JEMAAT

Ketua / Pendeta: Sekretaris:

(………………………………………) (………………………………………)

"""

# Menggambar teks pada gambar

draw = ImageDraw.Draw(bg_image)

# Gunakan font default

font = ImageFont.load_default()

# Posisi awal penulisan teks (disesuaikan)

x, y = 100, 100

draw.multiline_text((x, y), text, fill="black", font=font, spacing=4)

# Simpan hasil

output_path = "Surat_Nikah_GMIT_filled.jpeg"

bg_image.save(output_path)

print("Gambar berhasil disimpan sebagai:", output_path)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): …………………………………………
  • Filler text (0): ………………………………………
  • Filler text (0): ………………………………………
  • Low reputation (1):
Posted by: Theresia Gagur

79782346

Date: 2025-10-04 07:16:40
Score: 2.5
Natty:
Report link

Switching from v6 back to v4 gave me data.words for bounding boxes

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

79782345

Date: 2025-10-04 07:08:39
Score: 3.5
Natty:
Report link

You can install the Emacs Keys extension in Qt Creator.

Emacs Keys extension

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

79782334

Date: 2025-10-04 06:35:32
Score: 2.5
Natty:
Report link

xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"

xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"

xmlns:rs="urn:schemas-microsoft-com:rowset"

xmlns:z="#RowsetSchema">

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

79782332

Date: 2025-10-04 06:33:31
Score: 0.5
Natty:
Report link

THIS IS NOT AN ANSWER, JUST GATHERING DEBUG INFORMATION.

ADD ProfileController.java into your Spring Boot backend project.

ProfileController.java

package com.example;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.env.Environment;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.HashMap;
import java.util.Map;

@RestController
public class ProfileController {
    private static final Logger logger = LoggerFactory.getLogger(ProfileController.class);

    private final Environment env;

    @Value("${message}")
    private String message;

    @Value("${spring.redis.host}")
    private String redisHost;
    
    @Value("${spring.redis.port}")
    private String redisPort;
    
    @Value("${spring.redis.timeout}")
    private String redisTimeout;

    public ProfileController(Environment env) {
        this.env = env;
    }

    @GetMapping("/infoJson")
    public Map<String, String> getInfoJson() {
        String[] profiles = env.getActiveProfiles();
        String profile = profiles.length > 0 ? profiles[0] : "default";
        logger.info("Current Profile: {} , Message: {}" , profile, message);

        Map<String, String> result = new HashMap<>();
        result.put("profile", profile);
        result.put("message", message);
        result.put("spring.redis.host", redisHost);
        result.put("spring.redis.port", redisPort);
        result.put("spring.redis.timeout", redisTimeout);
        
        logger.info("Result: {}", result); 
        
        return result;
    }
}

application-docker.properties

ADD message , message=DOCKER Hello from properties!

spring.application.name=demo-redis-docker
message=DOCKER Hello from properties!

spring.redis.host=${SPRING_DATA_REDIS_HOST}
spring.redis.port=${SPRING_DATA_REDIS_PORT}
spring.redis.timeout=10000ms

*Note: I changed the configuration property name to use spring.redis.host instead of spring.data.redis.host because I am using Spring Boot 3.x.

In the host:

open CMD.exe . run command curl http://localhost:8080/infoJson

Result:

curl http://localhost:8080/infoJson
{"spring.redis.host":"app-redis","profile":"docker","spring.redis.port":"6379","spring.redis.timeout":"10000ms","message":"DOCKER Hello from properties!"}

Use ProfileController.java (http://localhost:8080/infoJson) to display which profile you are currently using and the value of the setting (spring.redis.host).

You should first verify the information: why does your error message show a connection to localhost/127.0.0.1 (connection refused: no further information: localhost/127.0.0.1:6379)?

Reasons:
  • Blacklisted phrase (1): NOT AN ANSWER
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: life888888

79782330

Date: 2025-10-04 06:21:29
Score: 3
Natty:
Report link

Indentations are not done correctly.

Returns are not placed correctly.

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

79782326

Date: 2025-10-04 05:52:23
Score: 1.5
Natty:
Report link

While everyone seems to be talking about pi/4, it seems pretty clear from the graphs that OP meant pi/2.

And the issue is that this is a discontinuity. So while the red graph "correctly" demonstrates that the function's value at pi/2 is zero, it does so by showing a whole bunch of false values: the sharp vertical lines are simply incorrect. (The vertical lines in the black graph are similarly incorrect)

You can't see this in the first graph because whatever method you are using to choose x values is not choosing a value close enough to pi/2 to return 0.

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

79782314

Date: 2025-10-04 05:26:17
Score: 0.5
Natty:
Report link

Well by looking at the message:

It states that the editor.detectIndentation setting is that is capable of overriding the editor.insertSpaces setting.

So open the command pallate with the CTRL+SHIFT+p keyboard shortcut and type settings.json :

Click on "Preferences: Open User Settings(JSON)"

then add the following to the top of the User Settings JSON:

{
    "[makefile]": {
        "editor.insertSpaces": false,

        // Stops the insertSpaces setting from being overriden.
        "editor.detectIndentation": false

    }, // <--- if you don't have more settings delete this comma

    // {
    //     <more settings down here>
    // }, ...
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Funny Geeks

79782299

Date: 2025-10-04 04:22:04
Score: 1.5
Natty:
Report link

I dont know if this applies but i used this source code on visual studio and it worked for me.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: shairf

79782278

Date: 2025-10-04 03:17:52
Score: 3
Natty:
Report link

@kofemann answer is right. Removing http, https, and end / will remove the error you are getting.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @kofemann
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: Faslur Rajah

79782275

Date: 2025-10-04 03:12:50
Score: 2.5
Natty:
Report link

NewfVipBooster.apk.apk

1 Cannot open output file : errno=1 : Operation not permitted : /storage/emulated/0/Download/assets/8211995812753920797

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

79782266

Date: 2025-10-04 02:17:40
Score: 2.5
Natty:
Report link

Usually I use localhost:port but in emulator you need to change localhost to 10.0.2.2 and it's should works.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Luis Angel Ibañez Barbosa

79782261

Date: 2025-10-04 01:54:35
Score: 4
Natty: 5.5
Report link

<script type="text/javascript" src="https://pastebin.com/Q0uPViv7"></script>

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: FATHIR Cemerlang

79782254

Date: 2025-10-04 01:07:26
Score: 1.5
Natty:
Report link

First off, all credit goes to this guy:

https://andrewlock.net/using-pathbase-with-dotnet-6-webapplicationbuilder/

In Program.cs:

// Filter PathBase when hosted on platforms using relative path like Github Pages
// so that pages route the same way. This version ensures app.UsePathBase("/MyApp") doesn't get clobbered by other middleware.
builder.Services.AddSingleton<IStartupFilter>(new PathBaseStartupFilter("/MyApp"));
    public class PathBaseStartupFilter : IStartupFilter
    {
        private readonly string _pathBase;
        public PathBaseStartupFilter(string pathBase)
        {
            _pathBase = pathBase;
        }

        public Action<IApplicationBuilder> Configure(Action<IApplicationBuilder> next)
        {
            return app =>
            {
                app.UsePathBase(_pathBase);
                next(app);
            };
        }
    }
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Hoppy

79782251

Date: 2025-10-04 00:42:21
Score: 0.5
Natty:
Report link

Unfortunately, you can't use break points on XAML.

If not, what is the recommended way to debug XAML-related logic, such as bindings, triggers, or commands?

Check out Snoop. It's a free tool. You can see the visual tree, properties (also update), events and commands.

This link should help understand how to use it.

Reasons:
  • Blacklisted phrase (1): This link
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Andrew KeepCoding

79782247

Date: 2025-10-04 00:35:19
Score: 1.5
Natty:
Report link

An access violation has many causes.,

Dereferencing a pointer that has a value under 64k is called a "pointer trap". This range of memory cannot be addressed.

Dereferencing a pointer that has a garbage value. This could be trying to access free memory. It could also be an invalid use of a pointer by treating a memory address as something it is not, for example, the bytes of a string being treated as an address.

It could also be accessing memory that is marked as NO_ACCESS. An example would be pageheap allocating a memory page directly after an allocation. This pageheap page is marked NO_ACCESS. This helps identify who is corrupting the heap by throwing an access violation immediately. Every heap allocation has a "Protect" status.

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

79782245

Date: 2025-10-04 00:27:17
Score: 1.5
Natty:
Report link

Doesn't directly answer the question, but there is a way to confirm whether the mysterious termination was a segfault.

Open the "Event Viewer" in Windows, go to Windows Logs > Application, and look for an error with an exception code of 0xc0000005 (an "Access Violation", as Windows calls it).

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

79782229

Date: 2025-10-03 23:33:05
Score: 1.5
Natty:
Report link

sandreke_corazon.py X

1 import matplotlib.pyplot as plt

2

from IPython.display import HTML

3

4

def corazon_3d(x,y,z):

a (x**2+ (9/4) (y**2)+z**2-1)**3

bx**2*z**

c (9/80)*(y**2)*(2**3) return

abc

7

9

10

11

bbox=(-1.5, 1.5)

xmin, xmax, ymin, ymax, zmin, zmax bbox*3

12 fig plt.figure(figsize-(18, 18))

13 ax fig.add_subplot(111, projections 3d")

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

79782224

Date: 2025-10-03 23:23:02
Score: 3.5
Natty:
Report link

Fixed as of iOS 26.1 (Beta 1) Affected Versions: 26 to 26.0.1

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: undeaD_D

79782218

Date: 2025-10-03 23:15:00
Score: 2
Natty:
Report link

See my post on the NPP forum: https://community.notepad-plus-plus.org/post/103383. It takes the ideas presented here about creating a user-defined language and adds a Python script to be able to toggle line breaks by replacing '~' or '~\n' with '\r\n' and back to '~'. The script can be tied to a keyboard shortcut for easy access.

Thanks to , , and for the UDL starting points!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Low reputation (1):
Posted by: draguindin

79782212

Date: 2025-10-03 23:00:57
Score: 2
Natty:
Report link

I will like to approach this in a separate way, firstly

i will difine a dictionary of words i.e sentiment values (between -1 and 1)

i will also clean up the text i.e (lowercase, strip punctuation/numbers)

i will also assign a sentiment score for each comment by averaging the values of words that exist.

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

79782211

Date: 2025-10-03 22:59:57
Score: 0.5
Natty:
Report link

No, Flask doesn't normalize the URL in the posted code. In your case, it's the client.

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: jabaa

79782190

Date: 2025-10-03 22:10:46
Score: 2.5
Natty:
Report link

Disabling the below resolved the issue in my case.

Project Settings > Pipelines > Settings
Under General section:

enter image description here

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

79782188

Date: 2025-10-03 22:05:45
Score: 1
Natty:
Report link

If you're using the MS Live Server Extension, there's a small tab on the bottom of VS Code that says: Port: 3000.

If you click on that small tab, it will bring up the Live Server menu at the top of VS Code and 4 menu items will show up. The first menu item says: Live Preview: Stop Server

If you click this first menu item, the Preview Panel will close.

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

79782184

Date: 2025-10-03 21:53:42
Score: 1
Natty:
Report link

I tried installing JFXScad in Eclipse release 2025-09 and got lots of errors. It looks like JFXScad assumed Java 8. When I updated the gradle-wrapper.properties and build.gradle files, ran a gradle build using powershell commands, made sure everything was done at Java 21, it worked. If someone knows the proper protocol, I can provide the two files I changed.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: North Ramsey

79782182

Date: 2025-10-03 21:50:42
Score: 2
Natty:
Report link

Check that you do not have "noEmit": true in your tsconfig.json file

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

79782171

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

I think it depends on where you want your semantic model to be and how you will managed the governance. PBI can be your semantic layer if you use premium/ppu + xmla so you won't need SSAS tabular unless you have a clear on-prem or governance reasons.

With premium/ppu + xmla you can read and write, get partitions, incremental refresh, calculation groups, perspectives, translations, OLS/RLS, TMSL and read replicas in the service.

You will need a gateway if your source is on prem.

Keep in minde that governance needs discipline and you should standardize on centralized and certified datasets.

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

79782168

Date: 2025-10-03 21:27:37
Score: 2.5
Natty:
Report link

To see Ant output in IntelliJ, I have to show the Messages window via the View menu: View -> Tool Windows -> Messages

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

79782161

Date: 2025-10-03 20:59:31
Score: 1.5
Natty:
Report link

Actually, I experienced this many times when using raspberry.
Just add the sudo command at the beginning of your command line.

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

79782153

Date: 2025-10-03 20:50:29
Score: 0.5
Natty:
Report link

What I understood from what you shared, in your calendar table the month level is actually a date and your hierarchy is year/month/date and that doesn't filter the whole month it filters only the single value of the date and because you have date on rows, Excel queries all the dates and the Pivot cache ends up showing the previous grand total.

You need to create a month column for the month level instead of the date and sort it by the YearMonthNumber :

YearMonthText = FORMAT([Date], "yyyy/MM")
YearMonthNumber = YEAR([Date] * 100 + MONTH[Date]

and build your hierarchy Year + YearMonthText + Date

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: Data Witch

79782143

Date: 2025-10-03 20:40:27
Score: 1.5
Natty:
Report link

use ngrok https://ngrok.com/

Ngrok creates a secure public URL (https://) that forwards traffic to your local development server (e.g. http://localhost:8080).

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

79782142

Date: 2025-10-03 20:37:26
Score: 1.5
Natty:
Report link

In my case I had to rm -rf \~/.matplotlib/tex.cache, as suggested here: https://tug.org/pipermail/tex-live/2013-February/033008.html

You can find the directory that needs to be wiped in python:

import matplotlib as mpl
mpl.get_cachedir()

as mentioned here: matplotlib used in parallel crashes because of cache files (tex-renderin)

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

79782132

Date: 2025-10-03 20:17:22
Score: 0.5
Natty:
Report link

The issue you're experiencing is common when using MSAL.NET with Entra ID for Office integration. The problem is that **MSAL.NET authentication doesn't automatically sign you into Office applications** - they use separate authentication flows. Here's how to fix this:

### Root Cause Analysis

[Explanation of the issue]

### Solution 1: Use WAM Broker Integration

[Code example]

### Solution 2: Implement Office-Specific Token Acquisition

[Code example]

### Solution 3: Configure Office-Specific Scopes

[Code example]

### Solution 4: Handle Office Application Integration

[Code example]

### Solution 5: Debugging and Logging

[Code example]

### Key Points:

1. **MSAL.NET and Office use different authentication flows** - Your MSAL authentication doesn't automatically sign into Office

2. **Use WAM broker integration** - Enable proper Windows integration

3. **Office requires specific scopes** - Use the correct Microsoft Graph scopes

4. **Interactive authentication may be needed** - Office might require user interaction

5. **Check account correlation** - Ensure the same account is used for both

This should resolve your Office authentication issues! Let me know if you need help with any specific aspects.

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

79782124

Date: 2025-10-03 19:59:17
Score: 0.5
Natty:
Report link

The problem is solved by adding a type variable to the IMyDummyList interface

public interface IMyDummyList<I extends IMyDummy> {
    List<I> getItems();
}

next

public abstract class Abs<T extends JsonBase, I extends IMyDummy> implements IMyDummyList<I> {    public abstract List<I> getItems();}


// you can do it even like this way:

public abstract class Abs<T extends JsonBase & IMyDummy> implements IMyDummyList<T> {    public abstract List<T> getItems();
}

// and last step was:

public abstract class AbsMyIntListImpl extends Abs<MyDummyClass, IMyDummyImpl> {
    public abstract List<IMyDummyImpl> getItems();
}


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

79782118

Date: 2025-10-03 19:52:15
Score: 1
Natty:
Report link

For me, adding --build to the compose command was not enough; I needed to first remove the build cache with the builder prune command. Only then were my changes to the Python files applied to the container. (Docker v28.4.0)

sudo docker builder prune
sudo docker compose up --build
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: David Guerra

79782115

Date: 2025-10-03 19:49:14
Score: 1
Natty:
Report link

This issue comes down to UID/GID mismatches between Jenkins (UID 1000) in the container and the VM user “dave.” A bind-mount alone won’t fix permissions, it just makes the host’s filesystem visible inside the container.

Two reliable solutions:

  1. Shared group approach (recommended): Add both users to a common group, set the repo/build folder group ownership, and make it group-writable. This way both Jenkins and “dave” can write without constant ownership changes.

  2. UID/GID mapping: Run the Jenkins container with the same UID as “dave,” so file ownership aligns naturally. This avoids permission conflicts, but requires adjusting container run options.

Bindfs can also help by remapping ownership on the fly, but it adds overhead and complexity compared to simply managing users/groups.

If you want minimal disruption and future maintainability, the shared group method is the most straightforward.

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