79577661

Date: 2025-04-16 16:27:48
Score: 1.5
Natty:
Report link

The answer came from a member of the Clojurian Slack community: To pass an array to an annotation, just pass the value as a vector. I.e., look in the example from this doc for annotation SupportedOptions:

javax.annotation.processing.SupportedOptions ["foo" "bar" "baz"]

Also, for anyone running into something like this, remember @amalloy's suggestion to look at the compiled interface using java -v -p.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @amalloy's
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MonkeyWithDarts

79577659

Date: 2025-04-16 16:26:47
Score: 0.5
Natty:
Report link

Yep it's possible to access public calendars without OAuth, you simply create an API Key in Google Cloud.

  1. Create a project in Google Cloud Console
  2. Enabled Google Calendar API at https://console.cloud.google.com/apis/api/calendar-json.googleapis.com
  3. Generate an API key here: https://console.cloud.google.com/apis/credentials

Then you can access public calendars with simple http calls like this

https://www.googleapis.com/calendar/v3/calendars/[PUBLIC_CALENDAR_ID]/events?key=[API_KEY]

In this case:

https://www.googleapis.com/calendar/v3/calendars/en-gb.christian%23holiday%40group.v.calendar.google.com/events?key=[API_KEY]
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: pjpscriv

79577647

Date: 2025-04-16 16:21:45
Score: 5.5
Natty:
Report link

i have another doubt here
i added css and js file there
in the index.html also i added the full path like this

but its not render the css and js script why?

<link rel="stylesheet" href="app/src/main/assets/styles.css">
<script defer="defer" src="app/src/main/assets/index.0be7dd0de89ab1726d12.js"</script>
Reasons:
  • Blacklisted phrase (0.5): why?
  • RegEx Blacklisted phrase (2): i have another doubt
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: sakthii25

79577643

Date: 2025-04-16 16:19:44
Score: 2
Natty:
Report link

Check if data annotations is ok. Then try to increase parameters of your ViT in config (num layers for ex.), maybe some experiments with path size will help.

Also it is very important to use pertained model. You should load some pretrained weights if you didn't.

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

79577634

Date: 2025-04-16 16:15:42
Score: 0.5
Natty:
Report link

This is an old question but I see this pop up a lot all over the Internet. For anyone looking for a clean and relatively safe solution, I posted a solution I created on my GitHub Gist (link below). Feel free to use it however you see fit. Also, if anyone would prefer to see the actual solution here, let me know and I'll modify this answer to include the code.

The right way to run external process in .NET (async version) (GitHub Gist)

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

79577632

Date: 2025-04-16 16:15:42
Score: 1.5
Natty:
Report link

In the Plugin Framework, plugins run inside a sandboxed <iframe> for security. By default, the sandbox does not include the allow-popups permission.

Some useful links:

If a link is working as expected in another plugin, opening a new tab, they are likely using the Plugin Bridge.

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

79577624

Date: 2025-04-16 16:08:40
Score: 0.5
Natty:
Report link

The best way in production is to use git-sync. Here's a relevant blog post by Airflow contributor and Apache PMC member Jarek Potiuk: https://medium.com/apache-airflow/shared-volumes-in-airflow-the-good-the-bad-and-the-ugly-22e9f681afca.

The crux is - DAGs are code, and code needs versioning to scale. In production, you would create a git repo containing your DAGs, just like one does for code. Meanwhile the git-sync sidecar automatically pulls and syncs your DAGs to airflow.

Another possible way to leverage the power of git is to store the repos in a volume that is used as a shared volume in airflow. This is discouraged because shared volumes bring inefficiencies, i.e., git-sync is expected to scale better.

You could in a way use both by setting persistence as well as git-sync to true (in the helm installation's values.yaml). But this gave me an error. It is an open issue: https://github.com/apache/airflow/issues/27476. If you must use this method, this post discusses what you should take care of: https://www.restack.io/docs/airflow-faq-manage-dags-files-08#clp226jb607uryv0ucjk42a78.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: kanishk

79577623

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

Firstly, historical bars from Interactive brokers will not match the total reported volume in their TraderWorkstation exactly. There are some technical and market reasons for this. But the numbers should be fairly close.

Based on my experimentation, the volume field of daily bars on US stocks does need to be multiplied by 100.

To get the number closer to the reported volume, be sure you are including the volume outside of regular trading hours.

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

79577619

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

You have to have selected the database in order for it to work. First, click on the database. Then, run the query. It should work.

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

79577611

Date: 2025-04-16 16:02:38
Score: 1
Natty:
Report link
Hi,

   I had the same problem and just solved.

   On repository folder has... "db/revs/0" with the revision files. For some reason, some files are with ".rev" extension. Just renamed then removing this extension and worked normally.

Best Regards
Reasons:
  • Blacklisted phrase (0.5): Best Regards
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: zerala

79577593

Date: 2025-04-16 15:56:35
Score: 2
Natty:
Report link

To pull from @Rakesh 's answer I use this. The original question was from 2018 so I assume you'd prefer a more dynamic approach to attaching the year.

import datetime
s = "17 Apr"
print(datetime.datetime.strptime(s+" "+str(datetime.datetime.now().year),"%d %b %Y").strftime("%d-%m-%Y"))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Rakesh
  • Low reputation (1):
Posted by: Deon Thompson

79577585

Date: 2025-04-16 15:53:35
Score: 1
Natty:
Report link

I had the same problem with some file.

First tried to commit a bunch of files - fail. Then commited one by one till I found the problematic file.
After that just:

Boom, it works!

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dima Şironin

79577580

Date: 2025-04-16 15:50:34
Score: 2
Natty:
Report link

I just use this to convert to your local time stamp.

SELECT dateadd(ss, -DATEDIFF(SS, GETDATE(), GETUTCDATE()) , dateadd(ms, [DateField] % 86400000,

dateadd(DAY, [DateField] / 86400000, '1/1/1970')))

FROM [SourceTable]

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

79577577

Date: 2025-04-16 15:50:34
Score: 3
Natty:
Report link

This is the fallback name if we cant find a parent module for your block definition.

for example, if you subclass Block and then register the block type from ipython, there is no way to discover a parent module.

How do I use custom block?

Make a proper module that you can import from, and we should discover it and place it in the sample import in the UI.

https://docs.prefect.io/v3/develop/blocks#register-custom-blocks

Reasons:
  • Blacklisted phrase (1): How do I
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Nate Nowack

79577572

Date: 2025-04-16 15:48:33
Score: 1.5
Natty:
Report link

So you're saying you're first acquiring a token, then attempting to upload a file to Esri's sample server? If so, then that might be why it's working in Postman but not via a basic jQuery AJAX request. I'm assuming in Postman you've got a configuration referencing the token acquired, but I don't see anything in your code that does a similar reference. Fill me in if I'm wrong on that.

With respect to finding the service URL of a service, if you're looking at that service or Feature Layer in ArcGIS online (aka AGOL), often you'll find a "URL" box in the lower right with options to copy or view that URL, which gets you to the REST endpoint of your specific service. I'm including a screen grab here.enter image description here

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

79577564

Date: 2025-04-16 15:44:31
Score: 4.5
Natty: 5
Report link

The issue has been solved in https://github.com/flutter/flutter/issues/166967. We need to wait for the release.

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

79577560

Date: 2025-04-16 15:43:31
Score: 0.5
Natty:
Report link

enter image description here

You're probably using an outdated version of the cmdline-tools.

Open SDK Manager in Android Studio.

Go to SDK Tools tab.

Enable "Show Package Details" at the bottom right.

Under Android SDK Command-line Tools, make sure you have the latest version installed.

If multiple versions are installed, remove older ones.

Alternatively, from terminal (if on Windows, use PowerShell or Command Prompt):

bash Copy Edit cd $ANDROID_HOME/cmdline-tools You may see a folder like latest or 3.0, 4.0, etc. Delete or replace older versions.

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

79577556

Date: 2025-04-16 15:40:30
Score: 3
Natty:
Report link

Rachel, changing height to auto (height=auto), to replace height= "43%" worked a charm for me. Mobile phone squishing of the jpg portion of my web site home page is now gone. Thanks for posting!

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

79577553

Date: 2025-04-16 15:39:29
Score: 1.5
Natty:
Report link

Found the answer. a save as dialogue box was appearing in the background that ofc I didn't see,

word.DisplayAlerts = 0  # 0 suppresses all alerts, including Save As dialogs

The above would've silenced those dialogue boxes which I forgot to include.

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

79577550

Date: 2025-04-16 15:37:28
Score: 0.5
Natty:
Report link

The problem wasn't necessarily with the configuration of the Angular app or the SWA settings. But it was simply that we are using Enterprise-grade edge for the SWA, and somehow its cache was not cleared during the deployment of an Angular app update even though it should happen.

Clearing Enterprise-grade edge cache from the Azure portal resolved the issue:
https://portal.azure.com -> Open relevant Static Web App -> Enterprise-grade edge -> Purge

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

79577545

Date: 2025-04-16 15:35:27
Score: 1
Natty:
Report link

i fixed it by adding a timer of 3 seconds after which the variable _isDragging is set to false

(you can see the changes i did on github)

Reasons:
  • Whitelisted phrase (-2): i fixed
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: vo2075

79577529

Date: 2025-04-16 15:24:24
Score: 3.5
Natty:
Report link

Send your code to ChatGPT for analysis, that's all.

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

79577525

Date: 2025-04-16 15:21:24
Score: 1.5
Natty:
Report link

First, I think your

"transforms": "extractAndReplace"

should read

"transforms": "extractAndReplace,replaceDots"

Second, I am not sure how you can access the result of your 2nd transform.

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

79577503

Date: 2025-04-16 15:11:19
Score: 2
Natty:
Report link

You need to create a custom mapping for that enum.

<configuration>
    <nameMappings>3RIIndicator=_3RIIndicator</nameMappings>
</configuration>                  
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alex Favieres

79577499

Date: 2025-04-16 15:08:19
Score: 1
Natty:
Report link

testcase supports the nested testing style idioms as rspec, including shared spec support, rspec-like context dependent variables, timecop-like time manipulation, random fixture generation with integration with the big list of naughty strings injection fixtures, and so on.

A very familiar experience to rspec in Go

https://github.com/adamluzsi/testcase

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adam

79577482

Date: 2025-04-16 15:03:17
Score: 3.5
Natty:
Report link

Version 1.99.2 had to key in "testing" in the CTRL SHIFT P window.

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

79577481

Date: 2025-04-16 15:02:16
Score: 4
Natty:
Report link

I was able to get my composer to work by enabling IPv6 in my network settings on the mac.

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

79577479

Date: 2025-04-16 15:02:16
Score: 0.5
Natty:
Report link

The mathjs library leaves the value in its original units when you toString(). To simply convert or automatically, you need to make use the to function or method like this

console.log(a.to('kgCO2eq').toString());

Reference: https://mathjs.org/docs/datatypes/units.html#usage

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

79577465

Date: 2025-04-16 14:55:13
Score: 3.5
Natty:
Report link

It is possible but not with the hosted UI. You will need to host your own sign-up page:

https://repost.aws/questions/QUMQS5teW0SNq2DCsJltB8Lg/cognito-is-it-possible-to-sign-up-with-custom-attributes-from-dropdown-list-of-pre-defined-values-and-radio-button-menus

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

79577458

Date: 2025-04-16 14:54:13
Score: 1.5
Natty:
Report link

Put Cascade.Type to just MERGE and PERSIST, then add a on delete cascade constraint to your table by your sql server

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

79577457

Date: 2025-04-16 14:53:11
Score: 4.5
Natty: 4.5
Report link

Read the story. Why is it significant that the narrator refers to her neighbor as "the child," then "Catgirl," and finally "Celia"?

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

79577449

Date: 2025-04-16 14:50:09
Score: 7 🚩
Natty:
Report link

Was it pulled from a repository ? How did you get it since it's platform agnostic don't you think there's an issue with your project need more information about the project.

Reasons:
  • RegEx Blacklisted phrase (3): did you get it
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Was it
  • Low reputation (1):
Posted by: Ayoub El Hamraoui

79577443

Date: 2025-04-16 14:48:09
Score: 1
Natty:
Report link

After adding condabin and anaconda scripts to my path, conda was working fine in ps but not in vs code terminal (ps). I ran

conda update conda

in terminal (not vs terminal) and restarted the vs. Problem solved with vscode.

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

79577435

Date: 2025-04-16 14:42:06
Score: 12.5
Natty: 9.5
Report link

Same exact problem, did you find any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ayush

79577428

Date: 2025-04-16 14:40:05
Score: 2.5
Natty:
Report link

michel duturfu solutions work for me,

inside android/settings.gradle, change id "com.android.application" to version "8.7.1" apply false,

in gradle-wraper.properties, change distributionUrl to https://services.gradle.org/distributions/gradle-8.9-all.zip.

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

79577427

Date: 2025-04-16 14:40:05
Score: 1.5
Natty:
Report link

Just a quick note — if you’re working with historical stock prices, it’s super important to adjust for splits and dividends. Otherwise the data can be misleading, especially over longer periods.

This schema doesn’t include that, so anyone using it might want to handle those adjustments separately.

Or, if you want to skip that step, historicaldata.net provides US stock data (daily + 1-min), already adjusted for splits and dividends. Could save some hassle.

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

79577425

Date: 2025-04-16 14:39:05
Score: 0.5
Natty:
Report link

While Firebase Storage security rules can read from Cloud Firestore, they cannot read from the Realtime Database. So what you're trying to do is not a supported feature.

Also see my answer here: Creating Firebase Storage Security Rules Based on Firebase Database Conditions

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

79577420

Date: 2025-04-16 14:37:04
Score: 2
Natty:
Report link

you need to import 'dart:developer'
import 'dart/developer';

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

79577419

Date: 2025-04-16 14:37:04
Score: 3
Natty:
Report link

I just attended the PW classes . It was really interesting and very interrective class . It was really fascinating!

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

79577394

Date: 2025-04-16 14:26:00
Score: 3
Natty:
Report link

You can try docuWeaver—it’s built for use cases like this. It lets you auto-generate documents from custom objects like Property using merge tags, and with a simple Flow, you can automate the whole process. The generated docs show up under the Related tab and can be viewed or downloaded anytime. No code, quick setup, and works great with templates you design and can export this documents either in Docx or PDF format.

Reasons:
  • Blacklisted phrase (1): this document
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Miller

79577393

Date: 2025-04-16 14:26:00
Score: 3
Natty:
Report link

I switched to Expanders as suggested and it solved my problem and works just as well or better than TreeViews.

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

79577392

Date: 2025-04-16 14:25:00
Score: 3
Natty:
Report link

Found the answer to the "Unable to parse expression" error. Apparently, for reasons unknown to me, the dataflow must not have spaces in the name. I switched my data flow to all snake case and it ran perfectly.

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

79577391

Date: 2025-04-16 14:25:00
Score: 1
Natty:
Report link

As the migration guide says(v2 to v3):

Freezed no longer generates .map/.when extensions and their derivatives for freezed classes used for pattern matching. Instead, use Dart's built-in pattern matching syntax.

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

79577370

Date: 2025-04-16 14:14:56
Score: 3
Natty:
Report link

The same values appearing could be the issue of the tablix used in report design. Share the report design so we can outrule that possibility as well

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

79577364

Date: 2025-04-16 14:12:56
Score: 1
Natty:
Report link

The issue was slightly different in my case. Mouse wasn't working at all. Tried these solutions and few others, nothing worked until i finally came across this blog
https://github.com/alacritty/alacritty/issues/2931

In short, trying TERM=xterm-256color vi -u NORC <file> worked for me. So i exported this variable in my ~/.zshrc file

Reasons:
  • Blacklisted phrase (1): this blog
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mr.robot

79577354

Date: 2025-04-16 14:07:54
Score: 0.5
Natty:
Report link

This issue happens because non-JVM platforms like wasmJs cannot use type reflection to instantiate ViewModels via the viewModel() function without an explicit initializer.

✅ Fix

Instead of relying on reflection, explicitly create your ViewModel and pass it into your Composable function manually.

✅ Working fix:

fun main {
ComposeViewport(viewportContainerId = "composeApplication") {

    val viewModel: MainViewModel = MainViewModel() // ✅ Create instance manually

    App(viewModel) // ✅ Pass it in

}
}

📚 Source

JetBrains Docs:

https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-viewmodel.html#using-viewmodel-in-common-code:

\>"On non-JVM platforms, objects cannot be instantiated using type reflection. So in common > code you cannot call the viewModel() function without parameters."

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

79577342

Date: 2025-04-16 14:03:52
Score: 1
Natty:
Report link

You can use code --wait to wait for the user to finish editing the file.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John Dru

79577340

Date: 2025-04-16 14:02:52
Score: 1
Natty:
Report link

Here's a Typescript version of @Heniker's answer with perhaps better naming.

function pushToExecQueue<T>(fn: (...args: any[]) => Promise<T>): (...args: any[]) => Promise<T> {
  let inprogressPromise = <Promise<T>>Promise.resolve();
  return (...args) => {
    inprogressPromise = inprogressPromise.then(() => fn(...args));
    return inprogressPromise;
  }
}

And perhaps a somewhat cleaner/clearer way of using it is

pushToExecQueue(myAsyncFunction)("Hi", "my second parameter", etc);
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Heniker's
  • Low reputation (0.5):
Posted by: Nathan Dolan

79577324

Date: 2025-04-16 13:53:49
Score: 4
Natty: 4
Report link

I would understand if this happens in February.

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

79577316

Date: 2025-04-16 13:48:47
Score: 0.5
Natty:
Report link

No, it is not supported. Methods always mean side effects and we don't want you to run side effects in a computed.

I hope that sounds reasonable.

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

79577302

Date: 2025-04-16 13:40:45
Score: 2.5
Natty:
Report link

You can actually publish function apps without storage account using ARM template, but its not recommended and i think my function app is eating memory because of this (storage of files in RAM?)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: sjanisz

79577296

Date: 2025-04-16 13:35:43
Score: 1
Natty:
Report link
  1. Open your VS Code workspace

  2. In the left sidebar, look for a .vscode folder.

  3. Inside .vscode, locate or create a file named settings.json.

  4. Add the following configuration:

    {
        "github.copilot.enable": {
            "*": false
        },
    }
    
  5. Save the file. VS Code will apply the setting immediately.

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

79577293

Date: 2025-04-16 13:33:42
Score: 4
Natty:
Report link

Fixed this by updating to the latest version of langchain and pinecone.

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

79577292

Date: 2025-04-16 13:33:42
Score: 1
Natty:
Report link

It caused by PEP 695 with the new syntax introduced with it. So there is no way to not specify T: (int, float) in Subclass

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

79577286

Date: 2025-04-16 13:30:41
Score: 1
Natty:
Report link

If you're encountering the error "Cannot read Server Sent Events with TextDecoder on a POST request," it's likely because Server-Sent Events (SSE) only work with HTTP GET requests, not POST. SSE is designed to create a one-way channel from the server to the client, and it requires the use of GET for the connection to remain open and stream data.

To fix this issue:

Use a GET request instead of POST when setting up your EventSource.

If you need to send data to the server before opening the stream, do it through a separate POST request, then initiate the SSE with GET.

Bonus tip for Fintechzoom developers: If you're building real-time financial dashboards or alerts on platforms like Fintechzoom, SSE is great for streaming stock updates or crypto prices efficiently. Just ensure your API uses GET for these data streams.

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

79577282

Date: 2025-04-16 13:28:40
Score: 1.5
Natty:
Report link

If you are using prompt template of langchain to build prompt, You will face this error. To fix in such case, send prompt as simple string.

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

79577273

Date: 2025-04-16 13:24:39
Score: 2
Natty:
Report link

If you are using Vaadin 24.7, make sure that in your application the annotated service is available in Spring: browser callables are components, but Spring does not load components from other packages if not instructed to do so.

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

79577269

Date: 2025-04-16 13:23:39
Score: 1.5
Natty:
Report link

Had the same problem.

const universGrid = new window.prestashop.component.Grid('TdpUnivers');
const gridExtensions = window.prestashop.component.GridExtensions;

universGrid.addExtension(new gridExtensions.ReloadListExtension());

This actually works in 8.2.0

Hopes it can helps

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Clément

79577264

Date: 2025-04-16 13:19:37
Score: 2.5
Natty:
Report link

I find that for push notifications on Sunmi devices without Google Services, consider using a third-party service like Pushy (https://pushy.me/). It offers a Flutter SDK and supports Android beyond just FCM, potentially working on Sunmi devices. Thorough testing on your specific Sunmi models is crucial to ensure reliability.

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

79577256

Date: 2025-04-16 13:16:36
Score: 2.5
Natty:
Report link

This solved my problem https://github.com/expo/expo/issues/26175

Use sudo on Linux

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

79577254

Date: 2025-04-16 13:15:36
Score: 1.5
Natty:
Report link

Please consider using our CheerpJ Applet Runner extension for Chrome (free for non-commercial use). It is based on CheerpJ, a technology that allows to run unmodified Java applets and applications in the browser in HTML5/JavaScript/WebAssembly.

Full disclosure, I am CTO of Leaning Technologies and lead developer of CheerpJ

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

79577251

Date: 2025-04-16 13:09:34
Score: 2
Natty:
Report link

I found the answer: An admin needs to approve the terms of service. Not just any user.

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

79577250

Date: 2025-04-16 13:08:33
Score: 1
Natty:
Report link

You can use the background task in the FastApi and return an job_id for the long processing task with 202 status code, for more information you can read this link.

Also you can write another endpoint in terms of returning job status and also its result. Also it depends on the your code design and also your architecture.

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1.5): You can use
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mehrdad Sayad

79577248

Date: 2025-04-16 13:06:32
Score: 1.5
Natty:
Report link

Setting Spring version to 4.2.1 worked for me !

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Julien Bouland

79577245

Date: 2025-04-16 13:01:31
Score: 2.5
Natty:
Report link

To view jar files content, you could add Archive Browser plugin to your android studio

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

79577244

Date: 2025-04-16 13:00:31
Score: 0.5
Natty:
Report link

You're comparing the sale_month, which is a number (from EXTRACT(MONTH FROM sale_date)) to a string ('April'). That will not work - which is likely why you're getting no rows.

Replace 'April' with the numerical value for April, which is 4. i.e.

WHERE m.sale_month = 4;

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

79577240

Date: 2025-04-16 12:57:30
Score: 2
Natty:
Report link

The question refers to link sharing not for Contact links. The URL you shared points to a feature request not to an actual feature.

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

79577220

Date: 2025-04-16 12:48:27
Score: 4
Natty:
Report link

Use the Community Visualisations- metric funnel https://lookerstudio.google.com/u/0/reporting/1Iv4MphSjGXrHrBuQY65Zp6eAJHFvrgEZ/page/Sxi5

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

79577219

Date: 2025-04-16 12:48:27
Score: 1.5
Natty:
Report link

if you are using bind try it:

YourRichTextBox.DataBindings.Add("Text", YourObjetc, "YourText", true, DataSourceUpdateMode.Never);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nicolas Inácio

79577217

Date: 2025-04-16 12:47:25
Score: 9.5 🚩
Natty: 6
Report link

how did you solve it? I also encountered this problem. I used the contract to go to cpi guard's mintV2. The guard configuration is []

Reasons:
  • Blacklisted phrase (1): how did you solve it
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how did you solve it
  • Low reputation (1):
Posted by: yunbest yi

79577214

Date: 2025-04-16 12:47:25
Score: 0.5
Natty:
Report link

SQL Server 2005 and later all support sys.tables

select * from tempdb.sys.tables

note: You can access all Global Temporary Tables (prefixed with ##), but only your own session's Local Temporary Tables (prefixed with #). Remember, stored procedures use separate sessions.

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

79577210

Date: 2025-04-16 12:45:24
Score: 1.5
Natty:
Report link

It depends if you have experience with OOP or MVC frameworks or not. If not, I recommend you to start with OOP fundamentals and have a good resource tutorial, you can check laracasts they are the recommended training partner. Also there are good youtube tutorials on lot of channels which you are explore. Once you gain the basic understanding you can migrate your project.

Sharing few resources to you.

https://www.youtube.com/watch?v=1NjOWtQ7S2o&list=PL3VM-unCzF8hy47mt9-chowaHNjfkuEVz

https://www.youtube.com/watch?v=ImtZ5yENzgE&pp=ygUQbGFyYXZlbCB0dXRvcmlhbA%3D%3D

Reasons:
  • Blacklisted phrase (1): youtube.com
  • No code block (0.5):
Posted by: 5eeker

79577209

Date: 2025-04-16 12:45:24
Score: 0.5
Natty:
Report link

Zip file [...] already contains entry 'res/drawable/notification_bg.xml', cannot overwrite

This helped me:

packagingOptions {
        exclude 'AndroidManifest.xml'
        exclude 'resources.arsc'
        resources.excludes.add("res/drawable/*")
        resources.excludes.add("res/layout/*")
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Krzysztof Wojdak

79577206

Date: 2025-04-16 12:43:23
Score: 5
Natty:
Report link

Можно установить требуемый пакет

dnf install redhat-rpm-config
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: User Name

79577200

Date: 2025-04-16 12:41:22
Score: 0.5
Natty:
Report link

You can use a blend, create a table for filtered for each type of waste ( upto 4) and use an outer join to connect them. you have not provided enough information for me to provide an example.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Max_Stone

79577190

Date: 2025-04-16 12:33:19
Score: 2.5
Natty:
Report link
SELECT * FROM table_name ORDER BY id DESC LIMIT 1;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kishan tiwari

79577180

Date: 2025-04-16 12:31:18
Score: 1.5
Natty:
Report link

If you define batch_size before initializing your model, such as:

batch_size = hp.Int('batch_size', min_value=1, max_value=10, step=16)
model = Sequential()

then it works.

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

79577179

Date: 2025-04-16 12:30:18
Score: 3
Natty:
Report link

We experience the same issue off and on. Usually renaming the store procedure that the report is running fixes the issue. However, it's really annoying and would like to know what the cause is.

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

79577176

Date: 2025-04-16 12:28:17
Score: 2
Natty:
Report link

You're reading data too fast, and the serial input is not guaranteed to end cleanly with \n before your code tries to process it, and that’s why you are getting incomplete or "corrupted" lines.

1. Use a dedicated thread for serial reading

Tkinter is single-threaded. If you read from a serial in the same thread as the GUI, the GUI slows down (and vice versa), especially when you move the window.

Run the serial reading in a separate thread, and put the valid data into a queue.Queue() which the GUI can safely read from.

import threading
import queue

data_queue = queue.Queue()

def serial_read_thread():
    read_Line = ReadLine(ser)
    while True:
        try:
            line = read_Line.readline().decode('utf-8').strip()
            parts = [x for x in line.split(",") if x]
            if len(parts) >= 21:
                data_queue.put(parts)
            else:
                print("⚠️ Invalid line, skipped:", parts)
        except Exception as e:
            print(f"Read error: {e}")

Start this thread once at the beginning:

t = threading.Thread(target=serial_read_thread, daemon=True)

t.start()

2. In your Tkinter loop, check the queue

Use after() in Tkinter to periodically fetch from the queue and update the UI:

def update_gui_from_serial():
    try:
        while not data_queue.empty():
            data = data_queue.get_nowait()
            print(data)
    except queue.Empty:
        pass
    root.after(50, update_gui_from_serial)  

Please let me know if this works and if you need any further help! :)

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Najem

79577171

Date: 2025-04-16 12:27:17
Score: 0.5
Natty:
Report link

You can use QSignalSpy from the QTest module:

QNetworkRequest re;
// ... 
QNetworkReply * reply = m_netManager->get(re); 
QSignalSpy spy(reply, &QNetworkReply::finished);
bool ok = spy.wait(std::chrono::seconds{2});

see https://doc.qt.io/qt-6/qsignalspy.html#QSignalSpy-1

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Frieder Delor

79577170

Date: 2025-04-16 12:26:16
Score: 10.5
Natty: 7.5
Report link

how did u resolve it finally ?? i'm stuck in the same problem.

Reasons:
  • RegEx Blacklisted phrase (1.5): i'm stuck
  • RegEx Blacklisted phrase (3): did u resolve it finally
  • RegEx Blacklisted phrase (1.5): resolve it finally ??
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how did
  • Low reputation (1):
Posted by: I Anuj

79577168

Date: 2025-04-16 12:25:15
Score: 1.5
Natty:
Report link

There is a design pattern published for this. I haven't implemented it myself yet so I can't speak on the nuance but as advertised it does scim provisioning of users via Okta. Same concept could conceptually be applied to other tech stacks.

https://github.com/aws-samples/amazon-connect-user-provision-with-okta

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

79577164

Date: 2025-04-16 12:23:14
Score: 5
Natty: 5
Report link

Try flutter_background_service
https://pub.dev/packages/flutter_background_service/example

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Akshitha S

79577159

Date: 2025-04-16 12:20:13
Score: 1.5
Natty:
Report link

This is probably the best example that I have found. Its not the exact tech stack you are looking for but provides good guidance on how to do it; you'll have to take the concepts and make it work with your tooling of choice.

https://github.com/aws-samples/amazon-connect-gitlab-cicd-terraform

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

79577158

Date: 2025-04-16 12:19:12
Score: 2.5
Natty:
Report link

It is really complex.

I'm using these selections:

1)Eclipse IDE for C/C++ Developers (includes Incubating components),Version: 2025-03 (4.35.0),Build id: 20250306-0812

2)MSYS2 (msys2-x86_64-20250221)

3)install MinGW as suggestion:

local/gcc-libs 13.3.0-1
    Runtime libraries shipped by GCC
local/mingw-w64-ucrt-x86_64-gcc 14.2.0-3 (mingw-w64-ucrt-x86_64-toolchain)
    GNU Compiler Collection (C,C++,OpenMP) for MinGW-w64
local/mingw-w64-ucrt-x86_64-gcc-libs 14.2.0-3
    GNU Compiler Collection (libraries) for MinGW-w64
local/mingw-w64-x86_64-gcc 14.2.0-3 (mingw-w64-x86_64-toolchain)
    GNU Compiler Collection (C,C++,OpenMP) for MinGW-w64
local/mingw-w64-x86_64-gcc-libs 14.2.0-3
    GNU Compiler Collection (libraries) for MinGW-w64

(I don't know if I need to select ucrt or x86_64 version)

4)install wxWidgets in MSYS2:

local/mingw-w64-ucrt-x86_64-wxwidgets3.2-common 3.2.7-1
    Static libraries and headers for wxWidgets 3.2 (mingw-w64)
local/mingw-w64-ucrt-x86_64-wxwidgets3.2-common-libs 3.2.7-1
    wxBase shared libraries for wxwidgets 3.2 (mingw-w64)
local/mingw-w64-ucrt-x86_64-wxwidgets3.2-msw 3.2.7-1
    A C++ library that lets developers create applications for Windows, Linux and UNIX (mingw-w64)
local/mingw-w64-ucrt-x86_64-wxwidgets3.2-msw-libs 3.2.7-1
    wxMSW shared libraries for wxwidgets 3.2 (mingw-w64)

I can create "hello world" application and run it with Eclipse(C++ Managed Build).

But, when I turn to wxWidgets, blocked at the first line:

#include <wx/wx.h>

'wx/wx.h' file not found [pp_file_not_found]

The directory definition is right,and the file exists.

But I did not configure the wxWidgets(in Eclipse) indeed after installed in MSYS2,for I don't know what to do.

The other lines like "wx/...." will trigger the same error if I replaced "#include <wx/wx.h>" with absolute path.

I have searched web ,I saw there are many configuration need to finish in Eclipse if installing wxWidgets directly, should I do the same work after installed them in MSYS2?

Thanks for help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Xiao Jack

79577156

Date: 2025-04-16 12:18:12
Score: 0.5
Natty:
Report link

Set the reraise=True on the retry. This will make it raise the last exception it captured instead of the RetryException.

@retry(stop=stop_after_attempt(6), wait=wait_fixed(5), reraise=True)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lucrib

79577146

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

Polling messages from Amazon SQS seems simple — until it’s not. You need to continuously fetch messages, process them concurrently, delete the successful ones, and retry failures with appropriate delays. Getting this right, especially at scale, means dealing with multithreading, visibility timeouts, and reliability — often with verbose or heavyweight tooling.

Libraries like Spring’s SQS support exist, but they come with trade-offs: vendor lock-in, complex dependency graphs, and upgrade pains that stall your agility.

That’s exactly why I built java-sqs-listener — a small, focused library designed for reliability without the bloat.

👉 View the GitHub repo

📦 Check it out on Maven Central

📂 Explore the Spring Boot Example

Disclaimer: I’m the author of this library.

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Code Bodhi

79577144

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

They way is done now is quite confusing, on a single repo it is not evident to find how you can push tags, I would expect to have an option at least to push tags automatically. On multi-repo the menu is gone and you're left in the dark on how to get your tags to the remote. Microsoft could clean up their act a bit on this.

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

79577133

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

The problem in my case was, that I had a "choice"-type column and tried to send a value to it that wasn't a valid choice.

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

79577130

Date: 2025-04-16 12:09:08
Score: 3
Natty:
Report link

See Chris' link. All of the other documentations say that there is an Event tab. Use the Compile Tab. The button is on the right. Project MB3 - Properties - Compile, Build Events

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

79577128

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

if you change the part where you are testing the time over 60 minutes to the following it will handle using different add time parameters

IF %timeminute% GEQ 60 (

set /a timeminute=%timeminute% - 60

set /a timehour=%timehour% + 1

IF %timeminute% lss 10 set timeminute=0!timeminute!

)

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

79577123

Date: 2025-04-16 12:06:07
Score: 1
Natty:
Report link

The InkWell doesn't have margin/padding. the Card on the other hand does have a default margin

Card(
  margin: EdgeInsets.zero,
  child: Container(),
);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shlomo Cardoso

79577114

Date: 2025-04-16 12:01:05
Score: 2.5
Natty:
Report link

turns out this is a safety issue (software compatible issue). in clickhouse, there's an option to
set output_format_json_quote_64bit_integers = 0
and it will work correctly

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

79577112

Date: 2025-04-16 12:00:04
Score: 4
Natty:
Report link

Oh, okay. My version of django doesn't support that format.

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

79577108

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

To move an Azure App Service to another existing App Service Plan, follow these steps:

  1. Ensure both plans are in the same resource group and region.

  2. Disable VNET integration if configured.

  3. Navigate to "App Services" in the Azure portal and select your app.

  4. Under "App Service Plan," select "Change App Service plan" and choose the target plan.

  5. Confirm and move the app.

For more details, refer to the official documentation.

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

79577102

Date: 2025-04-16 11:55:02
Score: 0.5
Natty:
Report link

You may try this way :

Install "pipx" if not already installed:

sudo apt install pipx

Then install the package:

pipx install keyboard
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kanai Mandal

79577101

Date: 2025-04-16 11:55:02
Score: 2.5
Natty:
Report link

You can extract from Mac terminal using

tar -xzvf .jar

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Nasif Noorudeen

79577096

Date: 2025-04-16 11:53:00
Score: 9
Natty: 9
Report link

I faced a similar problem

Can you tell me if you managed to solve it?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you tell me
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Golikov Artem

79577093

Date: 2025-04-16 11:50:59
Score: 1.5
Natty:
Report link

Bruno has a feature for this: https://docs.usebruno.com/auth/oauth2-2.0/client-credentials

You can enter the Access Token URL and your Client ID and Secret and how the token should be used. Also you can check the "Automatically fetch token if not found" tick to do this automatically before your actual request if needed.

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

79577080

Date: 2025-04-16 11:41:57
Score: 1.5
Natty:
Report link

You're almost there! To enable multi-turn search, you need to include a conversation object and maintain a conversation_id across queries. The official docs are sparse, but the key is managing that context in SearchRequest. Hope Google updates their docs soon!

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