79733471

Date: 2025-08-12 17:10:50
Score: 3
Natty:
Report link

Mike,

Are you still looking for a REST API to use with Microsoft Access ?
If so you we can discuss it privately....

David R.
[email protected]

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: David Richardson

79733470

Date: 2025-08-12 17:10:46
Score: 9.5
Natty:
Report link

I am having the exact same problem now in 2025 with Eclipse 2025-06. I can't find a solution but my research shows that probably JSch needs to updated to use the newest OpenSSH authentication methods.

Just some context: Eclipse used to work fine and synchronizing projects easily. After a major server update, with more stringent security rules, the Eclipse sync failed. As I do not control the server (it is a big IT provider) we need Eclipse to implement more modern tools to make it more secure.

Any suggestions are welcome.

Reasons:
  • RegEx Blacklisted phrase (2): Any suggestions
  • RegEx Blacklisted phrase (2): I can't find a solution
  • RegEx Blacklisted phrase (2): can't find a solution
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the exact same problem
  • Low reputation (1):
Posted by: Rick

79733465

Date: 2025-08-12 17:04:44
Score: 1.5
Natty:
Report link

I'd like to add

Secur32.lib

for curl version 8.15.0 compilation.

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

79733460

Date: 2025-08-12 17:03:44
Score: 3.5
Natty:
Report link

If you're not targeting web, this documentation will probably help you :
https://docs.flutter.dev/cookbook/persistence/reading-writing-files

Basically you have to use the package path_provider with dart.io .

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Médi Olivier

79733446

Date: 2025-08-12 16:41:38
Score: 4
Natty:
Report link

There are some limits in using DATA STRUCTURE in a SQLRPGLE. As we do not know the code, I can just enjoin you to check what limit you exceeded in that IBM reference :

https://www.ibm.com/docs/en/i/7.6.0?topic=cssiira-using-host-structures-in-ile-rpg-applications-that-use-sql

Regards,

Olivier.

Reasons:
  • Blacklisted phrase (1): Regards
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Olivier Drubigny

79733438

Date: 2025-08-12 16:21:33
Score: 3.5
Natty:
Report link

https://in.mathworks.com/help/stats/prob.nakagamidistribution.html

The help section in 'MATLAB' has a detailed description about Nakagami function and its application.

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

79733436

Date: 2025-08-12 16:21:33
Score: 0.5
Natty:
Report link

If anyone is using Sideloadly to install the .ipa on a device: it always auto-signed my app while installing, creating a new identifier in the apple connect, which didn't have any capabilties e.g. "Sign-In with Apple".

Sideloadly Settings

Changing the Sidloadly settings to "Normal" install, prevented this from happening and it worked again.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gleitmehl

79733429

Date: 2025-08-12 16:14:31
Score: 5.5
Natty:
Report link

You can detect and correct duplicate records with a two-step process.

  1. Find duplicates by aggregation

  2. Review and correct them

Let me demonstrate it with dummy data.

enter image description here

---

POST translations_test/_bulk
{ "index": {} }
{ "raw_body_text": "¿Hola, cómo estás?", "translated_body_text": "Hello, how are you?" }
{ "index": {} }
{ "raw_body_text": "Muy bien, ¡gracias!", "translated_body_text": "Hello, how are you?" }
{ "index": {} }
{ "raw_body_text": "¿Cómo te va?", "translated_body_text": "Hello, how are you?" }
{ "index": {} }
{ "raw_body_text": "Estoy bien.", "translated_body_text": "I am fine." }

GET translations_test/_search
{
  "size": 0,
  "aggs": {
    "translations": {
      "terms": {
        "field": "translated_body_text.keyword",
        "min_doc_count": 2,
        "size": 10000
      },
      "aggs": {
        "unique_sources": {
          "terms": {
            "field": "raw_body_text.keyword",
            "size": 10000
          }
        },
        "having_multiple_sources": {
          "bucket_selector": {
            "buckets_path": {
              "uniqueSourceCount": "unique_sources._bucket_count"
            },
            "script": "params.uniqueSourceCount > 1"
          }
        }
      }
    }
  }
}

Tips:

Extra Tip:

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): cómo
  • Blacklisted phrase (1): Cómo
  • Blacklisted phrase (2): gracias
  • Blacklisted phrase (2): Estoy
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Musab Dogan

79733426

Date: 2025-08-12 16:06:28
Score: 1.5
Natty:
Report link

When I moved to this OS, I was trying this as well. I remember that i had installed Python from the official site which is python.org, but I did not face this issue.

I suggest you update the python version on your system, ensure you installed the suitable version, and retry connecting to the virtual env via VS code. I suggest to follow the tip that was shared earlier in the following link, to reinstall, or update the Jupyter extension, and then relaunch your VS code software.

Also some quick checklist:

  1. ensure ipykernel is installed in your system (if not, install it)

  2. you can try registering the env by yourself on the kernel.

  3. ensure kernel is selected correctly inside your VS code app.

  4. if all above 3 points are satisfied, close the app and restart VS code.

Would love to hear if there's any more effective way to combat this. In addition to above, you can read the attached official documentation of VS code, with link to py environments section.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Deepthi B 21BCE5601

79733418

Date: 2025-08-12 15:59:26
Score: 1
Natty:
Report link

Yes you can use this Update, I think it will work.

Update RECIPES 
   set SEQUENCE = RRN(RECIPES);

Regards,

Olivier.

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Olivier Drubigny

79733400

Date: 2025-08-12 15:33:20
Score: 1
Natty:
Report link

Ah, it seems a repository cannot be imported via load directly, I need to use local_repository to import it first and then load definitions from the repository.

load("@bazel_tools//tools/build_defs/repo:local.bzl", "local_repository")
local_repository(name="hedron_compile_commands", path="tp/hedron_compile_commands")
load("@hedron_compile_commands//:workspace_setup.bzl", "hedron_compile_commands_setup")
hedron_compile_commands_setup()
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: zsrkmyn

79733397

Date: 2025-08-12 15:30:19
Score: 1
Natty:
Report link

I found the answer in documentation , You can solve this by adding a custom Live Template in Phpstorm.
Go to Settings → Editor → Live Templates, click + to make a new one, give it an abbreviation (like html5), paste your HTML5 boilerplate in the template text, and under Applicable in, tick PHP.

Now, in a .php file (outside your PHP tags), just type your abbreviation and hit Tab — you’ll get the full boilerplate instantly.

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

79733392

Date: 2025-08-12 15:28:19
Score: 1.5
Natty:
Report link

Found this thread and had the same problem, referencing images with @ and it not working with Vue and Element plus.

I haven't had the chance to test it because I just don't have the time, but check this page out on the Element Plus website , they import ref from vue, then imageinstance from element-plus and then use that to handle the image.

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

79733390

Date: 2025-08-12 15:26:18
Score: 0.5
Natty:
Report link

The reason your code isn’t working is because YouTube’s getPlayerState() and Vimeo’s getPaused() don’t return results instantly — you need to use their APIs properly.

YouTube Example:

<script src="https://www.youtube.com/iframe_api"></script>
<iframe id="yt-player" width="560" height="315"
    src="https://www.youtube.com/embed/n1tswFfg-Ig?enablejsapi=1"
    frameborder="0" allowfullscreen>
</iframe>

<script>
let ytPlayer;

function onYouTubeIframeAPIReady() {
    ytPlayer = new YT.Player('yt-player', {
        events: {
            onReady: checkYTState
        }
    });
}

function checkYTState() {
    // 1 = playing, 2 = paused
    const state = ytPlayer.getPlayerState();
    console.log('YouTube state:', state);
}
</script>

Vimeo Example:

<script src="https://player.vimeo.com/api/player.js"></script>
<iframe id="vimeo-player" src="https://player.vimeo.com/video/237596019"
    width="640" height="360" frameborder="0" allowfullscreen>
</iframe>

<script>
const vimeoPlayer = new Vimeo.Player('vimeo-player');

function checkVimeoState() {
    vimeoPlayer.getPaused().then(function(paused) {
        console.log('Vimeo paused:', paused);
    });
}

checkVimeoState();
</script>
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Asfand Yar

79733386

Date: 2025-08-12 15:25:18
Score: 2
Natty:
Report link

Image for screenshot of my playground on Azure AI Foundry

When we are using the Azure AI Foundry, within a project, we choose our models from model catalogue and try it out in the playground. Once you enter playground, there will be an option to upload data source, which serves as knowledge base based on which the response we are expecting will be grounded upon.

Here, if you see in the attached screenshot of my Azure AI Foundry's chat playground, you can see at top left, there is a blue button denoting 'view code' option. when you click on it, you can see the code, which can be integrated with your current prompt and app.

But, when you are trying to use the endpoints to connect to the model locally from your project, you see that the data on which you grounded the model's responses is not working. One suggestion you may try out, as I read in the following link on official Microsoft documentation for Azure AI Foundry: Microsoft's Documentation for Azure AI Foundry

I read that when we click on the view code button, in one of the lines of code, we should be able to see the endpoint in the format as follows: https://<project-name>.<region>.inference.ai.azure.com/chat

When I tried it on my Azure Foundry, I got in a different format, but if you're able to see the endpoint in the suggested format, it might solve your problem.

Would love to hear if I need to follow differently to get the correct endpoint format. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When we are
  • Low reputation (1):
Posted by: Deepthi

79733384

Date: 2025-08-12 15:25:18
Score: 3
Natty:
Report link

I had an issue similar to this while following the zero-config setup for xdebug but it was a setting of PhpStorm blocking external connections:

PhpStorm Settings. PHP > Debug > External Connections > Uncheck ignore external connections

After unchecking this I was able to connect.

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

79733370

Date: 2025-08-12 15:16:15
Score: 2
Natty:
Report link

When the ODL controller responds with a 404 message, it is usually because it could not process the request correctly, usually because it is not correctly formed. Take a look at the following guide that has some examples on how to configure and query the controller:

https://repositorioinstitucional.uaslp.mx/xmlui/handle/i/8772

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When the
  • Low reputation (0.5):
Posted by: D Arjona

79733366

Date: 2025-08-12 15:11:14
Score: 1.5
Natty:
Report link

You can do this without any converters:

<TextBlock Text="{Binding Name[0]}" />

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

79733365

Date: 2025-08-12 15:09:13
Score: 1
Natty:
Report link

Make sure state.user is defined before adding it to the localstorage.

useEffect(() => {
  if (state.user) {
    localStorage.setItem("user", JSON.stringify(state.user));
  }
}, [state.user]);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: c_Jane

79733358

Date: 2025-08-12 15:02:11
Score: 2.5
Natty:
Report link

THe issue was resolved when we went to Trust Center -> Trust Center Settings ->ActiveX Settings and clicked the "Prompt me before enabling all controls with minimal restrictions" and restarted Excel.

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

79733350

Date: 2025-08-12 14:57:10
Score: 2
Natty:
Report link

The frontend runs in the browser, even though it may be docker starting it up.

Therefore the browser is not aware of your docker host-name resolution, and you should use localhost for your apiUrl in your angular application.

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

79733343

Date: 2025-08-12 14:51:08
Score: 2.5
Natty:
Report link

here you are inserting one row for every fruit, means if u add more that one it will not add into the number but create the multiple rows it is better to first combine the different fruits using ID for each using GROUP BY

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

79733340

Date: 2025-08-12 14:50:08
Score: 0.5
Natty:
Report link

please clear docker cache first, and then use this configuratin in your pom file

<configuration>
  <image>
    <builder>paketobuildpacks/builder-jammy-base</builder>
    <runImage>paketobuildpacks/run-jammy-base</runImage>
  </image>
</configuration>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: amir rad

79733337

Date: 2025-08-12 14:49:07
Score: 2
Natty:
Report link

Perhaps this problem is also caused by what you observed. It is also possible github is experiencing an incident and just fails to show open PRs, which is what's happening for me at the moment (see screenshot).

Check https://www.githubstatus.com/ for incident status.

What it looks like when PRs are problematic on github

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

79733332

Date: 2025-08-12 14:41:06
Score: 2
Natty:
Report link

@PrivateToDatabase is a qualifier (thats missing from the docs).
The subcomponent module should have something like that:

@Module
public class DatabaseImplModule {
    @Provides
    @PrivateToDatabase
    Database provideDatabase() {
        return new Database();
    }
}

If you want constructor injection, it won't work (StackOverflowError). You would need to pass arguments to new Database(arg1, arg2) manually with new. On the other hand, field injection will work using members injector:

    @Provides
    @PrivateToDatabase
    Database provideDatabase(MembersInjector<Database> injector) {
        Database instance = new Database();
    injector.injectMembers(instance);
        return instance;
    }
Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @PrivateToDatabase
  • Low reputation (1):
Posted by: qba47

79733328

Date: 2025-08-12 14:37:05
Score: 0.5
Natty:
Report link

I solved this by: When the form is submitted, use JavaScript to concatenate all the InputText values into one long string before the actual submit. This string is coded so it can be unpacked on the server into useable fields. The string is stored as a string field in the form's model.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: SteveGundeck

79733326

Date: 2025-08-12 14:34:04
Score: 3
Natty:
Report link

One way to avoid having to escape all the curly brackets in your JSON might be to use the older-style Python string formatting...?

"""
{
   'ultimate': 'The %(foo)s is %(bar)s'
}
""" % {'foo':'answer', 'bar':42}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Quentin Stafford-Fraser

79733323

Date: 2025-08-12 14:32:03
Score: 3.5
Natty:
Report link

Maybe you have an overflow error (ORE) in your USART. This flag can also cause the ISR te be called (again and again if not resetted).

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jan Atze de Vries

79733319

Date: 2025-08-12 14:29:03
Score: 1.5
Natty:
Report link

You need to set targetLocation to your output folder and use targetNameExpression only for the filename. Also make sure your variables like ${version} are defined. For example: groovy Copy Edit fileCopyOperations( includes: 'build-*/Release/program', flattenFiles: true, renameFiles: true, sourceCaptureExpression: 'build-(.*)/Release/program$', targetLocation: "${env.WORKSPACE}/output", targetNameExpression: "\$1-program-${version}" ) Make sure version is defined in your script before this step. The FATAL: null error often happens if these are missing or misconfigured.

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

79733318

Date: 2025-08-12 14:28:02
Score: 3.5
Natty:
Report link

I ended up following react documentation for a nextjs app as with nextjs I wasnt able to see any fetch calls traces .

https://github.com/Da3az/signoz-sample/commit/07392131f84ad9040c0825777901fc7c8e6f1df3

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Chakib Salah

79733317

Date: 2025-08-12 14:28:02
Score: 3.5
Natty:
Report link

If you got this error when starded the app with React Native, u must to donwload Visual Studio C++
https://learn.microsoft.com/pt-br/cpp/windows/latest-supported-vc-redist?view=msvc-170

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

79733311

Date: 2025-08-12 14:21:00
Score: 2.5
Natty:
Report link

There is a current effort to bring back l2switch for the latest Titanium release. This is a work in progress but it should start working soon.

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

79733306

Date: 2025-08-12 14:17:59
Score: 1.5
Natty:
Report link

Thanks for @greg-449 for the directions.

It turns out the injection system is not even initialized until PlatformUI.createAndRunWorkbench is ran.

I have found however that my TreeModelView class is created with working DI. Which is apparently because it is mentioned in plugins.xml It is still not clear whether I have (or need) a central point where I can register my own beans, but I could do so here with the ones needed there.

First of all, to inject the OSGI service inez I did not have to do anything beyond using @Inject in that class. I have even deleted basically all of the start() function of my bundle activator which was previously obtained the service.

I could also @Inject IEclipseContext, and use that tho create my own bean. I did that with my ModelTreeContentProvider class, which in turn again uses inez using injection:


public class TreeModelView extends ViewPart {
    public static final String ID = "io.github.magwas.inez.ui.treeModelView";

    @Inject
    IWorkbench workbench;

    @Inject
    Inez inez;

    @Inject
    IEclipseContext eclipseContext;

    private TreeViewer viewer;

    @Override
    public void createPartControl(Composite parent) {
        Assert.notNull(inez, "inez is null");
        ModelTreeContentProvider provider = ContextInjectionFactory
                .make(ModelTreeContentProvider.class, eclipseContext);
                //normal eclipse viewer stuff from here, deleted for brewity
        
    }

    @Override
    public void setFocus() {
        viewer.getControl().setFocus();
    }

}
public class ModelTreeContentProvider implements ITreeContentProvider {

    @Inject
    Inez inez;

    @Override
    public Object[] getElements(Object inputElement) {
        System.out.println("getElements " + inputElement);
        return inez.root().getChildren().toArray();
    }
//[...]
}

I also tried to just add a @Singleton annotation to my ModelTreeContentProvider class and inject it to my TreeModelView, but that did not work. Apaprently I have to register my beans using ContextInjectionFactory by hand. So until I find some central space where I can make all my beans early, I just use some of my views and editors for that, and factor out their business logic to some services.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @greg-449
  • Self-answer (0.5):
Posted by: Árpád Magosányi

79733301

Date: 2025-08-12 14:10:58
Score: 3.5
Natty:
Report link

Issue is in the excellent KX12 to KX13 converter I was using.

Fix can be found here:

https://github.com/KenticoDevTrev/KX12To13Converter/issues/10

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: rory

79733293

Date: 2025-08-12 14:07:57
Score: 2.5
Natty:
Report link

Microsoft official guideline: https://learn.microsoft.com/en-us/windows/wsl/tutorials/gui-apps#install-x11-apps

You have to install the x11 apps.

sudo apt install x11-apps -y
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tcluk624

79733277

Date: 2025-08-12 13:56:54
Score: 2
Natty:
Report link

the read number is correct, in the ITF code the last number is a control character not a barcode number

85890000000 chk0 71290328221 chk4 19070822119 chk1 64001262917 chk8

Correct number read is

85890000000712903282211907082211964001262917

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

79733269

Date: 2025-08-12 13:51:52
Score: 3
Natty:
Report link

Put the cursor where you want to split and then use loupe Commands, choose split.

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

79733253

Date: 2025-08-12 13:35:48
Score: 1
Natty:
Report link

As I've noticed a lot of people struggling with creation of a multilingual Avalonia app (myself included), I wrote an article on the issue after I figured out a working solution. You can read it here:
https://beemobile4.net/support/avalonia-articles/multilingual-web-application-based-on-avalonia-framework

Reasons:
  • Whitelisted phrase (-2): I figured out
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vladimír Gregor

79733252

Date: 2025-08-12 13:35:48
Score: 3.5
Natty:
Report link

This is giving comments on users created in PostgreSQL. Thanks for providing this information in the Post

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jitendra JP Patel

79733250

Date: 2025-08-12 13:34:48
Score: 1
Natty:
Report link

To solve the above problem, please take the following specific steps:

Step 1: Find command line

a(function(){if(!e.isSecure){var a=c.lang.versionCheck.notificationMessage.replace("

in file ckeditor.js

Step 2: Edit the command line mentioned in step 1 as follows:

a(function(){e.isSecure=true;if(!e.isSecure){var a=c.lang.versionCheck.notificationMessage.replace(

This means that you assign the variable e.isSecure to always be TRUE and the result will no longer display the other message.

I have done it and found it effective.

Wishing you success.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Việt Ngô

79733248

Date: 2025-08-12 13:31:47
Score: 6
Natty:
Report link

Potential answer given by @pvmilk here: https://github.com/ray-project/ray/issues/5635. Also implements a similar fix

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @pvmilk
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bawb

79733247

Date: 2025-08-12 13:30:46
Score: 1
Natty:
Report link

Your question isn't very clear but maybe you want this?

p<- plot_ly(data = df,
            x= ~DAYS,
            y= ~SCORE,
            type = "scatter",
            mode = 'lines',
            color = ~GROUP) |>
  add_trace(split = ~ USUBJID, showlegend = FALSE)
p

resulting plot showing only a legend with the three colors

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Roland

79733244

Date: 2025-08-12 13:30:46
Score: 2
Natty:
Report link

If you are using fragments, you can switch back to the previous one by adding the transaction to the back stack:

FragmentTransaction ft = getSupportFragmentManager().beginTransaction();

ft.replace(R.id.container, newFragment);

ft.addToBackStack(null);

ft.commit();

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Zümra Arslanhan

79733238

Date: 2025-08-12 13:19:44
Score: 0.5
Natty:
Report link

It looks like a NullPointerException in HmsPushMessaging.java when accessing a null Intent during onResume.

Possible fixes:

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ZAST.AI

79733237

Date: 2025-08-12 13:19:44
Score: 4
Natty:
Report link

I have the same issue.

Group contains such field: securityEnabled.

So if securityEnabled=true - requests with allowExternalSenders,autoSubscribeNewMembers,hideFromAddressLists,hideFromOutlookClients will fail with 401.

This is not a very logical decision on Microsoft's part, since the entire request fails. It would be better to simply return null.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Stepan

79733235

Date: 2025-08-12 13:17:43
Score: 1.5
Natty:
Report link

The issue happens because the Gmail API access token expires (usually after 1 to 2 hour after generation) and the Post SMTP plugin isn’t properly refreshing it using the refresh token.

Make sure your OAuth setup requests offline access so a refresh token is issued. Also, confirm the plugin supports storing and using refresh tokens correctly

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

79733234

Date: 2025-08-12 13:17:43
Score: 1
Natty:
Report link

The new syntax for Tailwind v4 is @variant instead of @media

@variant md {
  /* css */
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Valentin E

79733218

Date: 2025-08-12 13:03:40
Score: 0.5
Natty:
Report link

This feels a lot like a problem sessions are going to solve for you. The main problem here is you are trying to save some information against the AnonymousUser which is a common object for all users that are not authenticated. The way I would approach this is to use database backed sessions saving the information (cart contents) there and then retrieving this and saving against the User/Customer model.

https://docs.djangoproject.com/en/5.2/topics/http/sessions/

As an aside what's the difference between a User and a Customer? It could be argued they are the same thing except a customer has a sales history (which could be a seperate Sale model)

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: simalpas

79733198

Date: 2025-08-12 12:44:36
Score: 2.5
Natty:
Report link

This code very simple to use

var response = mystring?.Length >4 ? mystring[^4..] : mystring;

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Prince Antony G

79733195

Date: 2025-08-12 12:42:35
Score: 3
Natty:
Report link

DBeaver loads the metadata for your database when you connect. If the tables or other metadata changes, you need to force the reload.

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

79733188

Date: 2025-08-12 12:41:35
Score: 3.5
Natty:
Report link

Website is off.
They stopped paying

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

79733181

Date: 2025-08-12 12:35:33
Score: 2.5
Natty:
Report link

There is an option in MATLAB to imshow() that makes clear that the bwdist transform is NOT all-black.
Yes, you can scale the image by dividing by max(distance(:)); but you can also just:

imshow(distance, [])

The square brackets auto-scale the visualization.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Brett Shoelson

79733180

Date: 2025-08-12 12:33:32
Score: 1.5
Natty:
Report link

Yes, IBM Watson’s Speech to Text API can handle MP3 audio files, as long as they meet its supported audio encoding requirements (e.g., MP3 with proper bitrate and sampling rate). The API also supports formats like WAV, FLAC, and Ogg, but you’ll run into issues with things like WMA, AAC without proper container support, or proprietary codec formats — those are among the more common unsupported formats.

If you just need a quick way to convert MP3 speech to text without API setup, keys, or audio re-encoding, I’ve built a speech to text browser extension that works directly in your browser. You just drag & drop your MP3, and it uses modern automatic speech recognition (Whisper by OpenAI) to give you a transcript.

You can check it out here: https://chromewebstore.google.com/detail/speech-to-text/jolafoahioipbnbjpcfjfgfiililnoih

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Евгений Рябышев

79733178

Date: 2025-08-12 12:32:32
Score: 1.5
Natty:
Report link

Thanks for the thorough explanation and the detailed reproduction steps! From what you described, it sounds like the delayed ejection after subsequent 504 errors might be related to how Envoy handles host ejection cooldowns or resets the error count after hosts return online.

In Envoy’s outlier detection, the first ejection behavior often differs from subsequent ones because of internal state resets or timing intervals like baseEjectionTime and interval. The fact that more than the configured consecutiveGatewayErrors are needed for later ejections could be due to those timing nuances or how errors are aggregated.

I’d recommend checking Envoy’s GitHub issues or mailing list for similar reported behaviors to see if this is an acknowledged quirk or bug. Also, experimenting with tweaking baseEjectionTime or interval might help confirm if timing parameters affect this behavior.

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

79733175

Date: 2025-08-12 12:30:31
Score: 4
Natty:
Report link

You can check this out as well:
This might be helpful
https://community.squaredup.com/t/show-azure-devops-multi-stage-pipeline-status-on-a-dashboard/2442

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

79733174

Date: 2025-08-12 12:27:30
Score: 3
Natty:
Report link

SDDL
Singular

two other options. We picked SDDL as it’s simpler and cheaper.

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

79733173

Date: 2025-08-12 12:25:29
Score: 0.5
Natty:
Report link

SpringBoot 3:

    @Bean
    JwkSetUriJwtDecoderBuilderCustomizer customizer() {
        return builder -> builder.jwtProcessorCustomizer(customizer -> customizer.setJWSTypeVerifier(new DefaultJOSEObjectTypeVerifier<>(new JOSEObjectType("at+jwt"))));
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user3844834

79733164

Date: 2025-08-12 12:22:28
Score: 0.5
Natty:
Report link

The reason you’re getting a syntax error is that Microsoft Access SQL does not allow ORDER BY or LIMIT clauses in an UPDATE statement.
Unlike some other SQL dialects (like MySQL or PostgreSQL), Access has a more limited syntax for updates. So, when you try to use ORDER BY TblTimeSheet.StartTime DESC and LIMIT 1 in your UPDATE query, Access throws a syntax error because those keywords aren’t supported there.


What you want to do:

You want to update only the latest record (the one with the most recent StartTime) for a particular employee, setting the EndTime to the current time (Now()).


How to fix this:

You can achieve this by using a subquery inside the WHERE clause that identifies the record with the maximum StartTime for that user. Here’s how you can write the query:

sql

CopyEdit

UPDATETblTimeSheet SET EndTime = Now() WHERE EmployeeUserName = 'sam.harper' AND StartTime = ( SELECT MAX(StartTime) FROM TblTimeSheet WHERE EmployeeUserName = 'sam.harper' );


Explanation:


Updated VBA code snippet:

vb

Dim strSQL As String Dim db As DAO.Database Set db = CurrentDb strSQL = "UPDATE TblTimeSheet " & _ "SET EndTime = Now() " & _ "WHERE EmployeeUserName = 'sam.harper' " & _ "AND StartTime = (SELECT MAX(StartTime) FROM TblTimeSheet WHERE EmployeeUserName = 'sam.harper');" db.Execute strSQL, dbFailOnError


A couple of tips:


Optional: Two-step approach if you want to be extra precise

You could first fetch the primary key of the last record in VBA, then update it specifically:

vba

Dim db As DAO.Database Dim rs As DAO.Recordset Dim lastRecordID As Long Dim strSQL As String Set db = CurrentDb ' Get the ID of the latest record for this user Set rs = db.OpenRecordset("SELECT TOP 1 ID FROM TblTimeSheet WHERE EmployeeUserName = 'sam.harper' ORDER BY StartTime DESC") If Not rs.EOF Then lastRecordID = rs!ID rs.Close ' Update the EndTime of that record strSQL = "UPDATE TblTimeSheet SET EndTime = Now() WHERE ID = " & lastRecordID db.Execute strSQL, dbFailOnError Else MsgBox "No records found for this user." End If

This method avoids any ambiguity if StartTime is not unique.

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

79733156

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

Livewire 3 used named arguments now. Please read the documentation for upgrade.
this code will not work now

this.$dispatch('openModal', event.detail);

use this instead

this.$dispatch('openModal', event: event.detail);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user31260963

79733155

Date: 2025-08-12 12:14:25
Score: 2
Natty:
Report link

Doc random.seed() - Python2.7 : current time or from an operating system specific randomness source if available (see the os.urandom() function for details on availability)

So os.urandom() in most cases.

Doc os.urandom() :
On a UNIX-like system this will query /dev/urandom, and on Windows it will use CryptGenRandom()

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

79733151

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

To solve circular import errors in Python, restructure your code by moving imports inside functions, use import statements carefully, or create a separate module to avoid mutual dependencies between files.

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

79733149

Date: 2025-08-12 12:10:24
Score: 4.5
Natty: 4.5
Report link

Here's how I used swiper with angular 20 and Change Direction Based on Language
https://medium.com/@zizo.climbs/how-to-use-swiper-in-angular-20-and-change-direction-based-on-language-4483b257be54

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ahmed

79733146

Date: 2025-08-12 12:08:23
Score: 0.5
Natty:
Report link

I assumed that onCall functions could only be invoked by my app’s authenticated clients.

That's definitely not true.

the request still causes the function instance to spin up (cold start), meaning it consumes resources and could be abused for a DoS-style cost attack.

That's always the risk when providing services that are accessible from anywhere in the world. There is no 100% reliable way of eliminating this risk.

I’ve also enabled App Check, so legitimate app clients must pass verification — but the HTTPS endpoint still remains publicly reachable.

App Check doesn't shut down access to a function from the public, nor does it provide 100% accurate protection. This is even stated in the documentation:

App Check relies on the strength of its attestation providers to determine app or device authenticity. It prevents some, but not all, abuse vectors directed towards your backends. Using App Check does not guarantee the elimination of all abuse, but by integrating with App Check, you are taking an important step towards abuse protection for your backend resources.

Unfortunately, if you want to run a public app with a backend, you're going to have to accept that an attacker can incur some costs, as is the case with all public apps and services running on any cloud platform.

Does this IAM setting explain why the endpoint is still publicly accessible? If I remove allUsers from the IAM policy, will it block all external requests before they spin up the function, so only authenticated users from my app can call it?

No. If you remove allUsers, your app will not be able to invoke your callable function at all, and your client will always receive an authentication error. Your function must have allUsers in order to function correctly. GCP IAM setting are for controlling access to cloud resources using GCP service accounts, not Firebase users. Firebase users have nothing at all to do with GCP allUsers - they refer to completely different things.

If you want strongly enterprise-grade protection, you'll have to look into paying for and configuring a product such as Cloud Armor, which can further help with abuse.

See also:

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Doug Stevenson

79733143

Date: 2025-08-12 12:05:22
Score: 0.5
Natty:
Report link
<input type="text" name="userName" required  minLength={6} placeholder="User Name"
                onPaste={(e)=> e.preventDefault()}/>

This works for me.
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: fasulu

79733129

Date: 2025-08-12 11:53:19
Score: 3.5
Natty:
Report link

Please note that the file path must be: child-theme-folder/hivepress/order/view/page/order-dispute-link.php in order to overwrite the file correctly. Also, I recommend taking a look at this documentation: https://help.hivepress.io/article/155-how-to-override-template-parts

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrii Bandiak

79733124

Date: 2025-08-12 11:49:17
Score: 1.5
Natty:
Report link

You need to compile your program with Au3Stripper for this you need to download and to use SciTE4AutoIt package: https://www.autoitscript.com/site/autoit-script-editor/downloads/?new

#AutoIt3Wrapper_Run_Au3Stripper=Y
#Au3Stripper_Parameters=/MO /RSLN

dbug('hello', @ScriptLineNumber)

Func dbug($data, $lineNumber)
    ConsoleWrite($lineNumber & ': ' & $data & @CRLF)
EndFunc

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

79733121

Date: 2025-08-12 11:48:17
Score: 1
Natty:
Report link

If you want a straightforward way to convert speech to text from an MP3, especially if it’s a single voice like your own, you can skip the more complex VoIP/Asterisk setups and go with modern automatic speech recognition tools.

I actually built a speech to text browser extension that does exactly this:

You can try it here: https://chromewebstore.google.com/detail/speech-to-text/jolafoahioipbnbjpcfjfgfiililnoih

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Евгений Рябышев

79733113

Date: 2025-08-12 11:43:15
Score: 4
Natty:
Report link

this question can be closed as the site https://jmeter-plugins.org/ is available

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

79733099

Date: 2025-08-12 11:39:13
Score: 4
Natty:
Report link

Thanks for sharing! A few quick questions to troubleshoot:

These will help pinpoint the issue. Need help with a simple test example?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Whitelisted phrase (-1): Have you tried
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: AutoStar Transport Express

79733091

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

Here is the solution i use :

  1. Create custom Object normalizer.
  2. Copy the entire ObjectNormalizer from symfony vendors.
  3. Add the denormalize function from AbstractObjectNormalizer.
  4. Add new lines between foreach and if (change if to elseif).

Before :

foreach ($nestedAttributes as $property => $serializedPath) {
    
    if (null === $value = $propertyAccessor->getValue($normalizedData, $serializedPath)) {
    ...

After :

foreach ($nestedAttributes as $property => $serializedPath) {
    if ($serializedPath->getElement(0) === '@parentKey') {
        if (!isset($context['deserialization_path'])) {
            throw new \Error('Deserialized objet have no parent');
        }
        preg_match("/\[(?'key'\w*)\]$/", $context['deserialization_path'], $matches);
        if (!isset($matches['key'])) {
            throw new \Error('Deserialized objet is not emmbed in array');
        }
        $value = $matches['key'];
     } elseif (null === $value = $propertyAccessor->getValue($normalizedData, $serializedPath)) {
    ...
  1. Add SerializedPath attribute do DTO :
class ItemDTO
{
    #[SerializedPath('[@parentKey]')]
    public ?string $slug = null;
    public ?string $name = null;
    public ?string $description = null;
}

How it works ?

It's a little hack that use the SerializedPath attribute to communicate with the ObjectNormaliser with a custom special path '@parentKey'.

The new object normalizer detect this path and look in the deserialization context to find the key value.

How to improve ?

The best symfony way would be a new tag to do the job. But it needs to create multiple new files like AttributeMetadata, AttributeLoader down to ObjectNormalizer and inject them into right services.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Cedric Molines

79733088

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

PyCharm 2025.2

You can find this option in the: Main menu -> Run -> Edit Configurations -> Modify options -> Emulate terminal in output console

Here are the screenshots:

Main menu

Edit Configurations -run/Debug Configurations

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

79733087

Date: 2025-08-12 11:33:11
Score: 6.5
Natty: 4
Report link

Sorry if I pick this question... I just want to ask how I could "change" that this.mDepartmentsAll if I change completely dataset like depending from another dropdown which it sets a different dataset's contents so it would also filter with that new dataset?... thanks in advance

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): thanks in advance
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Luigino

79733086

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

You could use Lazy types

from typing import TYPE_CHECKING, Annotated

import strawberry

if TYPE_CHECKING:
    from .users import User


@strawberry.type
class Post:
    user: Annotated["User", strawberry.lazy(".users")]
from typing import TYPE_CHECKING, Annotated, List
import strawberry
if TYPE_CHECKING:
     from .posts import Post

@strawberry.type
class User:
  name: str
  posts: List[Annotated["Post", strawberry.lazy(".posts")]]

https://strawberry.rocks/docs/types/lazy

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

79733075

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

Instead of trying to use the updateVariation action described in the documents, just get the index of the flag variation you want to update and do a patch request with the index in the file path.

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

79733073

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

Probably a very late answer but we are using Spring 5.3.x with Hibernate 5.6.x.Final in production for years.

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

79733062

Date: 2025-08-12 11:15:06
Score: 0.5
Natty:
Report link

I got the same issue. You might delete a user, and create a new one.

In this case, the following command shows an error.

'''

response=$(aws sso-admin list-instances) ssoId=$(echo $response | jq '.Instances[0].IdentityStoreId' -r) ssoArn=$(echo $response | jq '.Instances[0].InstanceArn' -r) email_json=$(jq -n --arg email "$user_email" '{"Type":"Work","Value":$email}') response=$(aws identitystore create-user --identity-store-id $ssoId --user-name amplify-admin --display-name 'Amplify Admin' --name Formatted=string,FamilyName=Admin,GivenName=Amplify --emails "$email_json") userId=$(echo $response | jq '.UserId' -r) response=$(aws sso-admin create-permission-set --name amplify-policy --instance-arn=$ssoArn --session-duration PT12H) permissionSetArn=$(echo $response | jq '.PermissionSet.PermissionSetArn' -r) aws sso-admin attach-managed-policy-to-permission-set --instance-arn $ssoArn --permission-set-arn $permissionSetArn --managed-policy-arn arn:aws:iam::aws:policy/service-role/AmplifyBackendDeployFullAccess accountId=$(aws sts get-caller-identity | jq '.Account' -r) aws sso-admin create-account-assignment --instance-arn $ssoArn --target-id $accountId --target-type AWS_ACCOUNT --permission-set-arn $permissionSetArn --principal-type USER --principal-id $userId # Hit enter

'''

Due to duplicated "Permission sets"

If you delete Permission set, amplify-policy, and re-generate resources correctly. It will work well.

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

79733055

Date: 2025-08-12 11:06:04
Score: 1
Natty:
Report link

if ((1 & @@options) = 1) print 'disable_def_cnst_check is on' else print 'disable_def_cnst_check is off';

if ((2 & @@options) = 2) print 'implicit_transactions is on' else print 'implicit_transactions is off';

if ((4 & @@options) = 4) print 'cursor_close_on_commit is on' else print 'cursor_close_on_commit is off';

if ((8 & @@options) = 8) print 'ansi_warnings is on' else print 'ansi_warnings is off';

if ((16 & @@options) = 16) print 'ansi_padding is on' else print 'ansi_padding is off';

if ((32 & @@options) = 32) print 'ansi_nulls is on' else print 'ansi_nulls is off';

if ((64 & @@options) = 64) print 'arithabort is on' else print 'arithabort is off';

if ((128 & @@options) = 128) print 'arithignore is on' else print 'arithignore is off';

if ((256 & @@options) = 256) print 'quoted_identifier is on' else print 'quoted_identifier is off';

if ((512 & @@options) = 512) print 'nocount is on' else print 'nocount is off';

if ((1024 & @@options) = 1024) print 'ansi_null_dflt_on is on' else print 'ansi_null_dflt_on is off';

if ((2048 & @@options) = 2048) print 'ansi_null_dflt_off is on' else print 'ansi_null_dflt_off is off';

if ((4096 & @@options) = 4096) print 'concat_null_yields_null is on' else print 'concat_null_yields_null is off';

if ((8192 & @@options) = 8192) print 'numeric_roundabort is on' else print 'numeric_roundabort is off';

if ((16384 & @@options) = 16384) print 'xact_abort is on' else print 'xact_abort is off';

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

79733049

Date: 2025-08-12 10:59:02
Score: 6.5
Natty: 4.5
Report link

Facing the same problem in IOS
Fixed by : https://github.com/teslamotors/react-native-camera-kit/pull/731/files

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Facing the same problem
  • Low reputation (1):
Posted by: Ziad Ali

79733048

Date: 2025-08-12 10:59:02
Score: 0.5
Natty:
Report link

The following solution/workaround does not require adding a token into your repo.

Just create a new cloudflare workers/pages project, and add the github submodule repo. You can assign it to only deploy via an empty output/build folder. This results in cloudflare having access to the submodule repo and the original project where the git submodule was failing will now clone successfully.

Reasons:
  • No code block (0.5):
Posted by: Lingster

79733039

Date: 2025-08-12 10:49:59
Score: 5
Natty: 5
Report link

I also get "Recognition error: network". Is Speech Recognition API still not being supported in Edge. I have MS Egde for Business. If not, is there a similar alternative to that?

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

79733029

Date: 2025-08-12 10:42:57
Score: 1
Natty:
Report link

You are probably hit with this issue:

https://github.com/vercel/next.js/issues/79313

There seems to be some workarounds to try here:

https://claude.ai/share/8d09e55a-0cc0-4ef6-9e83-1553ccad383e

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

79733028

Date: 2025-08-12 10:41:56
Score: 1.5
Natty:
Report link

I'm seeing this only when the JsonProperty("xxx") attribute is unnecessary because, as @Alexander Petrov points out, the variable name matches the "xxx" in case too. It's a bit of a false message. It should say that it's unnecessary because the name of the variable matches the "xxx" part.

Its misleading tough. If a developer follows the warning's advice and someone else changes the name of the variable in the future (for whatever reason that doesn't matter at all), then the class/record will no longer process the JSON correctly.

Also, it looks strange to any future developer who sees that 99 out of 100 of the variables have the JsonProperty attribute.

I always favor defensive programming. I always thing of what the next person to work on my code will have to deal with.

Ironically, if you choose to suppress it, you get a new message for unnecessary suppression.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Alexander
  • Low reputation (0.5):
Posted by: Andrew

79733005

Date: 2025-08-12 10:18:51
Score: 1.5
Natty:
Report link

Recently, I faced the same problem. First, make sure cmake was installed, then use this code:

    pip install --no-build-isolation dlib
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dili timor

79733004

Date: 2025-08-12 10:17:51
Score: 2.5
Natty:
Report link

It is sufficient to call GetDC and use wglMakeCurrent with the new DC handle and old RC, however, it might be necessary to set your pixel format on the new DC.

As @BDL suggested, check the return value of wglMakeCurrent to avoid such bugs.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @BDL
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user29880284

79733000

Date: 2025-08-12 10:15:50
Score: 1.5
Natty:
Report link

Before diving into the solution, could you share how you're currently implementing the authentication flow? From your use of Process.Start, it seems you're working on a desktop application. Have you tried running the sample web app from the APS tutorials: https://github.com/autodesk-platform-services/aps-hubs-browser-dotnet

In that tutorial, there's a section that explains how the API controller handles authentication: https://get-started.aps.autodesk.com/tutorials/hubs-browser/auth#server-endpoints

This code is typically returned via a browser redirect to your redirectUri. The APS authorization server can't directly call your app—it sends a response that includes a form with JavaScript that automatically redirects the browser to your callback URL, appending the code as a query parameter.

If you're using Process.Start to open the authorization URL, make sure your app is also set up to listen for incoming requests on the callback URI. For desktop apps, this often means running a local HTTP listener (e.g., using HttpListener in .NET) that waits for the redirect and extracts the code from the query string.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (2.5): could you share how you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Pedro Nadal

79732998

Date: 2025-08-12 10:12:49
Score: 3
Natty:
Report link

enter image description hereRequired user actions must be empty

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Tiago Medici

79732996

Date: 2025-08-12 10:10:48
Score: 6.5
Natty: 5.5
Report link

This video saved mine, using ssh keygen, im on ubuntu https://www.youtube.com/watch?v=Irj-2tmV0JM

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): This video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hamza Mohammed

79732994

Date: 2025-08-12 10:09:48
Score: 1.5
Natty:
Report link

Ideally speaking, you once have the correlation of the signal with the receiver by measuring 'n' samples and then using various methodologies either root mean squares or average of peaks of 'n' samples to calculate the signal strength values.

Now, how quickly does it update? measurement frequency and measurement interval are customizable and it is technology dependent let's say you are using CDMA, or LTE etc.

Specifically for 802.11b signal strength is sought every 100 ms and at every significant event that requires updated signal strength.

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

79732989

Date: 2025-08-12 10:02:46
Score: 6.5
Natty: 5.5
Report link

which zkemkeeper you are used?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): which
  • Low reputation (1):
Posted by: Hadi Barshini

79732982

Date: 2025-08-12 09:56:44
Score: 3
Natty:
Report link

It doesn't work on:

+1

Sonoma 14.5 M3 Pro

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

79732981

Date: 2025-08-12 09:56:44
Score: 2.5
Natty:
Report link

all these steps, diddnt work for me, i have a solution without repair or reinstall.

Go to -> Services and restart "VMAuthdService" on your host.

And if you need a desktop Shortcut, use my BAT script:

@echo off
REM Batch-Datei zum Neustarten des VMware Authd Service

REM Muss mit Administratorrechten ausgeführt werden

echo Stoppe Dienst...

net stop VMAuthdService

echo Starte Dienst neu...

net start VMAuthdService

echo Fertig.

pause

IMPORTANT: Make your Bat file on your Hardisk where you want and create a shortcut on your desktop.
You need admin privilegs on your shortcut. You can set it, by right click on your shortcut, advanced settings -> run as Admin

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: Chuck J

79732971

Date: 2025-08-12 09:49:42
Score: 1.5
Natty:
Report link

You should test with realistic data before adding indexes in production.

1. Create only the necessary indexes for JOB A’s queries.
2. Benchmark JOB B’s performance in staging with those indexes to see the actual overhead.
3. If JOB B’s bulk writes slow down too much, consider:

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

79732961

Date: 2025-08-12 09:43:40
Score: 1
Natty:
Report link

Seeing as no one is able to answer this and I can't find the code to do it anywhere it looks like it's possible to apply/modify incremental policies using tabular editor if anyone gets stuck in this scenario. enter image description here

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

79732954

Date: 2025-08-12 09:39:40
Score: 2
Natty:
Report link

If you have tried to install pyspark through both pip and anaconda then you might face this problem

Try creating a new conda environment and dont use pip this time to install pyspark just install pyspark throught conda.

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

79732952

Date: 2025-08-12 09:38:39
Score: 3.5
Natty:
Report link

Delete the cache of your NetBeans version if you have fake duplicate class error

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

79732951

Date: 2025-08-12 09:37:39
Score: 1
Natty:
Report link

I found this Post since I had the Need to Mock a DbSet<X>:

https://sinairv.github.io/blog/2015/10/04/mock-entity-framework-dbset-with-nsubstitute/

Basicaly to Mock a DbSet Using Substitute you can do the following

IQueryable<X> samples = new List<X>{...}.AsQueryable();

DbSet<X> DbSetMock = Substitute.For<DbSet<X>, IQueryable<X>>();
((IQueryable<X>)mockSet).Provider.Returns(samples.Provider);
((IQueryable<X>)mockSet).Expression.Returns(samples.Expression);
((IQueryable<X>)mockSet).ElementType.Returns(samples.ElementType);
((IQueryable<X>)mockSet).GetEnumerator().Returns(samples.GetEnumerator());

IDbContext databaseMock = Substitute.For<IDbContext>();
databaseMock.X = mockSet;
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Robert

79732943

Date: 2025-08-12 09:33:38
Score: 1
Natty:
Report link

Just to exemplify Yut176's answer

filePermissions {
    user {
        read = true
        execute = true
    }
    other.execute = false
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hugo Landim

79732939

Date: 2025-08-12 09:27:36
Score: 0.5
Natty:
Report link

FastAPI != FastHTML (idiomatic), even if both are based on Starlette and built on similar arch vision.

Go for idiomatic OAuth with FastHTML: https://github.com/AnswerDotAI/fasthtml-example/tree/main/oauth_example, read the doc https://www.fastht.ml/docs/explains/oauth.html

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Luca G. Soave

79732938

Date: 2025-08-12 09:25:35
Score: 6.5
Natty: 7.5
Report link

Can we delete the app-insights attached with apim using azure cli?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can we
  • Low reputation (1):
Posted by: Manisha Poonia

79732932

Date: 2025-08-12 09:19:33
Score: 1
Natty:
Report link

Had the same problem in debug mode on emulator.
Spent a day looking for a solution.

When I installed app-release.apk, everything worked.

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