79692744

Date: 2025-07-07 11:01:29
Score: 0.5
Natty:
Report link

You can try setting omitFiltered to true, using eg.

$ npx cypress run  --browser chrome --env 'TAGS=@quicktest,omitFiltered=true'

If you can provide a reproducible example, then I might be able to investigate the reason for the slow countdown.

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

79692740

Date: 2025-07-07 10:58:28
Score: 0.5
Natty:
Report link

Let me try to answer your questions.

  1. Forcing an auto sign-in for a given account: CredentialManager (and its predecessor One Tap APIs on which it relies) does not provide a method to auto sign-in if more than one account on the device has the sign-in grants (I.e. user had signed-in using those accounts), and this is by design, In your case, you mentioned that it is causing troubles for you for a background sync with Google drive. I am not sure why for a sync with Google Drive, you would need to sign the user in each time. Signing in is an authentication process and that on its own is not going to enable you gain access to the user's Drive storage; you would need an Access Token, so I suppose after authentication of the user, you're calling the preferred Authorization APIs with the appropriate scopes to obtain an access token. If you want continuous background access, the standard approach is to get an Auth Code and then exchange that for a refresh token so whenever your access token expires, you can refresh that. This usually requires (in the sense of a very strong recommendation) a back-end on your side to keep the refresh token safe. An alternate approach that you can use on Android is to keep the email account of the user after a successful sign-in, call the Authorization APIs as mentioned above and then in subsequent attempts, call the same Authorization API but pass the account and you will get a Access Token (possibly a refreshed one if the old one is expired) without any UI or user interaction, as long as the user hasn't revoked the Drive access.

  2. CredentialManager#clearCredentialState() behaves the same way as the old signOut().

  3. Could you explain the flow and the error you get in that scenario? In general, revoking access to an app by user amounts to sign out + removing the previously granted permissions/grants. After such action, user should still be able to sign into the app as a new user, i.e. they should see the consent page to share email, profile and name with the app. Note that there is a local cache on the Android device that holds ID Tokens that are issued during a successful sign-in for the period that they are still valid (about an hour if I am not mistaken). When you go to the above-mentioned settings page to remove an apps permission, that state doesn't get reflected on the device: an immediate call may return the cached ID Token but this shouldn't cause a failure in sign-in. So please provide more info on the exact steps, the exact error that you (as a developer) and a user sees in that flow; with that extra information, I might then be able to help.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Whitelisted phrase (-1): In your case
  • RegEx Blacklisted phrase (2.5): Could you explain
  • RegEx Blacklisted phrase (2.5): please provide
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Ali Naddaf

79692737

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

Thank you all for commenting on my post. I will be accepting the comment made by @Sylwester as the answer.

Functional programming doesn't have Type -> Nothing and Nothing -> Type is basically a constant since the return value will always be the same. Nothing -> Nothing would be the same, but with "Nothing" as the value. In other languages sending in the same (or nothing) and getting different results and sending in parameters and get the same nothing result makes sense due to side effects (IO, mutation, ...) however since FP does not have this there shouldn't be such functions.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Sylwester
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: liampace

79692732

Date: 2025-07-07 10:53:27
Score: 1.5
Natty:
Report link

inside the for each loop , create a stored procedure activity and pass these item values as a parameter to the procedure.

you can do insert statements inside the stored procedure to write to a table.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hijesh V L

79692728

Date: 2025-07-07 10:50:25
Score: 1.5
Natty:
Report link

Is there a specific reason you would like to have two different approaches for the exact same error?

I have three suggestions.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @ExceptionHandler
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: julsku

79692727

Date: 2025-07-07 10:50:25
Score: 1.5
Natty:
Report link
set GOPATH="C:\code" I write "set GOPATH="

This command works in linux system. You are in windows system now.

Could find solution here:

Setting `GOPATH` for each vscode project

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

79692721

Date: 2025-07-07 10:45:24
Score: 0.5
Natty:
Report link

If you want to catch all unknown routes (404 pages) in Nuxt and either show a custom message or redirect, you should create a special catch-all page.

the directory ----> /pages/[...all].vue

This file acts as a final fallback for any route that does not match any of the existing pages.

Example code that will redirect users upon landing on the unknown route. Note for this, the route method is in the onMounted function; hence, it's triggered when the page mounts.

<script setup lang="ts">
import { useRouter } from 'vue-router'

const router = useRouter()

onMounted(() => {
  router.replace('/')
})
</script>

<template>
  <div></div>
</template>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Wanjie

79692719

Date: 2025-07-07 10:45:24
Score: 2.5
Natty:
Report link

Which version of superset are you using? The easiest way to do so is using CSS. There is a preset link as well which you can refer to for fixing this particular issue as well.

For changing the CSS, click on edit dashboard and then navigate to the 3 dots to the top right part. Clicking on it will bring a drop down menu which you can then use edit the CSS by clicking the "Edit CSS" option. If you wish, you can save this css as a template to be used across other dashboards as well.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: Devanjan Banerjee

79692718

Date: 2025-07-07 10:45:24
Score: 0.5
Natty:
Report link

I would answer your question differently, OP. There is no specific rule in the [Swift programming language guide](https://docs.swift.org/swift-book/documentation/the-swift-programming-language/generics) or the [reference](https://docs.swift.org/swift-book/documentation/the-swift-programming-language/genericparametersandarguments) that says you shouldn't specialise a generic parameter's name when calling a generic function. Rather, there is a supporting example in the Swift programming language guide about generics, which implements the swapTwoInts function. And we can imply from the example that we don't need to specialise the generic argument's parameter name when calling a generic function. See [Type Parameters](https://docs.swift.org/swift-book/documentation/the-swift-programming-language/generics#Type-Parameters):
"...the type parameter is replaced with an actual type whenever the function is called."

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

79692696

Date: 2025-07-07 10:31:20
Score: 6.5
Natty:
Report link

Could you please provide more info about the problem you are trying to solve?

I don't see why you would need to change the product image on the fly at the front end...

Maybe there is a more streamlined and less hacky method than can achieve the result you want.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please provide
  • RegEx Blacklisted phrase (1.5): solve?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Giannis BeeDigital

79692687

Date: 2025-07-07 10:23:18
Score: 1
Natty:
Report link

For it to run on all operating systems I would use the following:

import os
path = os.path.join(os.path.dirname(__file__), "plots.py")
os.system(f"py {plots.py}")

However


import os

os.system('py ./plots.py')

Seems to be the easiest solution on Ubuntu.

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

79692675

Date: 2025-07-07 10:15:15
Score: 1.5
Natty:
Report link

In my case it was fixed by

<div dangerouslySetInnerHTML={{ __html: article.content }} />
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bambier

79692671

Date: 2025-07-07 10:13:15
Score: 2.5
Natty:
Report link

The answer was provided by wjandrea in the comments: the regex parameter in str.replace() was not specified in my code. In Pandas 2.0.0 the default for this parameter was changed from True to False, causing the code to fail. Specifying regex = True fixed this.

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

79692663

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

See https://support.newrelic.com/s/hubtopic/aAX8W0000008aNCWAY/relic-solution-single-php-script-docker-containers for getting it up and running:

  1. Start the daemon in external startup mode before we run any PHP script. If we are in agent startup mode we’d need a second dummy PHP script to start the daemon before step 2.

  2. Call a dummy PHP script to force the app to connect to New Relic servers. This request won’t be reported to New Relic and is lost.

  3. (OPTIONAL) Give some time after our script runs so that it can report to New Relic. The Agent only reports data captured once a minute so a 30second PHP script container won’t report data. If you have used the API to stop/start/stop transactions within your script then this may not be necessary as transactions will report once a minute even before your PHP script finishes.

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

79692658

Date: 2025-07-07 10:02:11
Score: 3
Natty:
Report link

Welcome to WGU Student Portal your one-stop hub for educational resources and academic support. Explore our platform to unlock your potential and achieve academic success.

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

79692649

Date: 2025-07-07 09:55:09
Score: 0.5
Natty:
Report link

Try using this pattern:

^[a-zA-Z-—’'` ]{1,250}$

Key part: a-zA-Z

Reason: as stated by Dmitrii Bychenko, A-z pattern includes additional ASCII characters, you need an explicit a-z + A-Z.

Test:

John // match
John[ // no match
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: biggujo

79692641

Date: 2025-07-07 09:52:08
Score: 0.5
Natty:
Report link

I am fairly confident that the persistence issued is caused by Hibernate dirty checking. As we're using base entity class with AuditingEntityListener and @DynamicUpdate along with @CreatedDate and @LastModifiedDate annotations on date fields, it seems that it is not consistent when Hibernate tries to detect what to update and might skip it in some scenarios (MonetaryAmount is composite type). Currently when manually modifying lastModifiedDate field on that event handler, the issue has not occurred as this seems to mark the entity as dirty every time.

One more reason not to use Hibernate.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @DynamicUpdate
  • User mentioned (0): @CreatedDate
  • User mentioned (0): @LastModifiedDate
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Vaelyr

79692633

Date: 2025-07-07 09:44:06
Score: 2
Natty:
Report link

The problem can cause function calls to be misdirected, and has lead to many wasted hours debugging the wrong issue.

This sample code reproduced the problem in 17.13.0 but not in 17.14.2.

The problem is resolved by updating Visual Studio 2022 to the latest version.

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

79692631

Date: 2025-07-07 09:43:06
Score: 2
Natty:
Report link

x86 assembly works on Intel and AMD CPUs that use the x86 architecture, including:

Most modern Intel and AMD desktop/laptop CPUs support x86/x64.
Not used on ARM-based CPUs (like most smartphones or Apple M1/M2 chips).

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

79692626

Date: 2025-07-07 09:42:05
Score: 0.5
Natty:
Report link

Try putting the [Key] data annotation in your ValidationRule model:

public class ValidationRule
{
    [Key] // Try this
    public string Code { get; set; }
    // ...
}
Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alexander Svilarov

79692614

Date: 2025-07-07 09:33:03
Score: 2
Natty:
Report link

This is caused by

This error can be ignored completely

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

79692612

Date: 2025-07-07 09:29:02
Score: 2.5
Natty:
Report link

This problem keeps unsolved for 3 years now. What a rubblish RN ecosystem!

I've decided to turn to Flutter anyway.

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

79692610

Date: 2025-07-07 09:28:01
Score: 1
Natty:
Report link

Yes, it fine, Better you can use regular expressions Match headers with optional content following

headerpattern = r"\*\*(H\d): (.*?)\*\*"

headers = re.findall(header_pattern, test)

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Arpan Gautam

79692606

Date: 2025-07-07 09:27:01
Score: 1.5
Natty:
Report link

Check out these two things:

  1. Check your network_os setting;

  2. Set network_os: community.network.ce under hosts or group_vars.

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

79692600

Date: 2025-07-07 09:24:59
Score: 7.5
Natty: 6.5
Report link

Any ARCore code snippets? Does anyone know

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Romeo Roshan

79692583

Date: 2025-07-07 09:16:56
Score: 4
Natty:
Report link

%runfile H:/pythonfiles/hist23.py --wdir
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
File h:\pythonfiles\hist23.py:12
     10 from matplotlib import pyplot as plt
     11 img=img_as_float(io.imread("H:/pythonfiles/BSE_Google_noisy.jpg"))
---> 12 sigma_est = np.mean(estimate_sigma(img, multichannel=True))
     13 denoise = denoise_nl_means(img, h=1.15 * sigma_est, fast_mode=False, patch_size=5,patch_distance=3,multichannel=True)
     14 denoise_ubyte=img_as_ubyte(denoise)

TypeError: estimate_sigma() got an unexpected keyword argument 'multichannel'
please help me 
I am working on spyder 6
Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chenchamma Gorantla

79692578

Date: 2025-07-07 09:14:55
Score: 3.5
Natty:
Report link

What ended up happening was that the database field types were not set in the Java classes according to the database types. As it was part of a dependency I had no clue what was going on. So if you have come across this kind of issue, know that there is some error in field type correspondence.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: coriuser

79692567

Date: 2025-07-07 09:06:53
Score: 1
Natty:
Report link

I've used this version from awesome_notifications to solve the issue:
please use it. it could solve your issue:

awesome_notifications: ^0.9.3+1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: abdallah eslah

79692566

Date: 2025-07-07 09:05:53
Score: 1.5
Natty:
Report link

Unknown Kotlin JVM target: 21" when I update Android Studio to a new version. Such that I updated to the new IDE "Nharwal" and got this issue.

Your Gradle JDK should be set to jbr-17 (JetBrains Runtime 17.0.14).

enter image description here

Update your Kotlin plugin version in the top-level build.gradle file.

enter image description here

Make sure that in your gradle.properties file, the property BuildConfig is set to true.

android.defaults.buildfeatures.buildconfig=true
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Priti1789

79692565

Date: 2025-07-07 09:05:53
Score: 1
Natty:
Report link

I've used this version from awesome_notifications to solve the issue:
please use it. it could solve your issue

awesome_notifications: ^0.9.3+1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: abdallah eslah

79692559

Date: 2025-07-07 09:00:51
Score: 4
Natty: 5
Report link

https://github.com/selevo/WebUsbSerialTerminal

Work on android chrome (semi-working. There are some bugs.)

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

79692532

Date: 2025-07-07 08:36:43
Score: 1.5
Natty:
Report link

The choice between React Native (RN) and Flutter depends on factors such as popularity, industry adoption, and long-term viability. React Native is more established and widely adopted in the industry, with more job openings and strong React.js ecosystem overlap. It is used by big companies like Meta and is popular for MVP development. Flutter, released in 2017, is growing rapidly and is used by companies like Google, Alibaba, BMW, eBay, Toyota, and ByteDance. React Native has higher demand in Western markets and is easier to transition from React.js. Flutter, on the other hand, is growing rapidly, especially in Asia and Latin America, and has Google's backing, making it a potential competitor.

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

79692518

Date: 2025-07-07 08:24:39
Score: 2
Natty:
Report link

fdfa
The storage directory is used as temporary file store for various Laravel services such as sessions, cache, compiled view templates. This directory must be writable by the web server. This directory is maintained by Laravel and you need not tinker with it.

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

79692508

Date: 2025-07-07 08:21:38
Score: 3.5
Natty:
Report link

Microsoft fixed this issue in VS version 17.14.5

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

79692505

Date: 2025-07-07 08:19:38
Score: 0.5
Natty:
Report link

Your XPath is syntactically incorrect. It is missing the closing apostrophe between me and ].

However, your syntax of that in the program code you provided does not match you error message. Your error message suggests there is an apostrophe between it and s in your code.

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

79692503

Date: 2025-07-07 08:18:37
Score: 1.5
Natty:
Report link

For me the problem was that extension_dir in the php.ini file was set to the wrong directory.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: مردين

79692497

Date: 2025-07-07 08:14:36
Score: 3
Natty:
Report link

One of frameworks have invalid signatures.
codesign --verify --verbose lib
lib: invalid signature (code or signature have been modified)
In architecture: arm64

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

79692492

Date: 2025-07-07 08:09:35
Score: 1.5
Natty:
Report link

I had the same issue and the only think that eventually fixed it was flutter clean

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

79692465

Date: 2025-07-07 07:51:29
Score: 1
Natty:
Report link

Are you making your web server in Python through which framework? I'll assume you are using Flask. So the basic setup is to install the dependencies. In my case I'll install pip install flask netifaces. You should tweak my code to make it work with your web server app. I hope this works and fit your needs.

from flask import Flask
import netifaces
import socket

app = Flask(__name__)

# a) search for the best ip to show
def get_best_ip():
    candidates = []

    for iface in netifaces.interfaces():
        addrs = netifaces.ifaddresses(iface)
        if netifaces.AF_INET in addrs:
            for addr in addrs[netifaces.AF_INET]:
                ip = addr['addr']
                if ip.startswith('127.') or ip.startswith('169.254.'):
                    continue  # skip loopback and link-local
                candidates.append(ip)

    # prefer private LAN IPs
    for ip in candidates:
        if ip.startswith('192.168.') or ip.startswith('10.') or ip.startswith('172.'):
            return ip

    if candidates:
        return candidates[0]

    return 'localhost' # localhost fallback

# b) the app itself
@app.route('/')
def index():
    return '''
    <h1>hello</h1>
    <p>replace this code with ur actual website</p>
    <p>try accessing this page from another device on the same Wi-Fi using the IP address shown in your terminal</p>
    '''

# c) start server + show IP
if __name__ == '__main__':
    port = 8080
    ip = get_best_ip()
    print("Web interface available at:")
    print(f"http://{ip}:{port}")
    print("You can open the link above on any device on the same network.")
    print("You can only open the link below on this device.")
    print("http://127.0.0.1:8080")
    app.run(host='0.0.0.0', port=port)
Reasons:
  • Blacklisted phrase (1): the link below
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Albair

79692456

Date: 2025-07-07 07:41:27
Score: 2.5
Natty:
Report link

Version 138.0.7204.50 (Official Build) (64-bit) has issue while working with selenium looks like. I has similar issue with Sitespeed.io and after updating version to Version 138.0.7204.97 fixed the issue.

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

79692451

Date: 2025-07-07 07:37:26
Score: 2
Natty:
Report link

In one of my projects, configured with CMake, I can see that the reulting build.ninja has lines like this (emphasis mine):

build CMakeFiles/package.util: CUSTOM_COMMAND all
  COMMAND = cd /home/abertulli/<project_root>/<build_directory> && /usr/bin/cpack --config ./CPackConfig.cmake
  DESC = Run CPack packaging tool...    ## <-- NOTE HERE
  pool = console
  restat = 1

Pheraps this does what you'd like?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Alessandro Bertulli

79692427

Date: 2025-07-07 07:12:19
Score: 0.5
Natty:
Report link

You don't need to rely on data for the TP/SL. You can query reqExecutions and get the actual fill price. Use that to send the bracket. Alternatively, listen to the orderStatus callbacks and use lastFillPrice to then send the TP/SL.

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

79692420

Date: 2025-07-07 07:07:18
Score: 3.5
Natty:
Report link

Refer following link for more CardTitle styles

https://callstack.github.io/react-native-paper/docs/components/Card/CardTitle

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

79692417

Date: 2025-07-07 07:04:17
Score: 1.5
Natty:
Report link

Here is my answer:

var ls = List('R','G','B')
var res=scala.collection.mutable.ListBuffer[String]()
for {i<-ls; j<-ls; k<-ls}
{

  if (i!=j && j!=k && k!=i) {
    var x=s"$i$j$k" // string concat
    res+=x
  }
}
println(res.toList)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: shyam sundar

79692408

Date: 2025-07-07 06:54:14
Score: 2
Natty:
Report link

Confirmed known issue for Postgres v17.*. Will be fixed later in the year

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

79692407

Date: 2025-07-07 06:53:14
Score: 2.5
Natty:
Report link

If I remember correctly, tqdm does not yet support Python 3.13. You may also have multiple Python versions set as environment variables. Verify that the correct Python version is selected before running the script from the cmd, or use a Miniconda environment to ensure compatibility.

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

79692398

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

Faced the same problem today. What fixed it for me was

php artisan optimize:clear
composer dump-autoload
php artisan optimize
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Adwiv

79692397

Date: 2025-07-07 06:41:11
Score: 2
Natty:
Report link
<ol type="a">
  <li>soup</li>
  <li>soup</li>
  <li>soup</li>
  <li>soup</li>
  <li>soup</li>
  <li>soup</li>
  <li>soup</li>
</ol>

enter image description here

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

79692382

Date: 2025-07-07 06:20:06
Score: 2.5
Natty:
Report link

You need to allow the application to control your computer.

enter image description here

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

79692372

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

The mistake is [.]+ in your expected_regex. It expects a set of dots not any character.

Try use

local expected_regex="^[a-zA-Z0-9]{40}[\t\ ]+refs/tags/[^/]+$"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergey Belenkov

79692371

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

Yes, by using Android’s secret code format (*#*#code#*#*) and a BroadcastReceiver registered for the SECRET_CODE intent, you can open your app’s activity when that code is dialed. Normal dial codes can’t do this.

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

79692367

Date: 2025-07-07 06:09:03
Score: 2
Natty:
Report link

After removing node_modules. It works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: deepak raghuwanshi

79692363

Date: 2025-07-07 06:07:02
Score: 2.5
Natty:
Report link

So i found this open issue regarding this bug - https://github.com/react-navigation/react-navigation/issues/12511

Although someone offers a solution in the comments it doesnt work for me and after experimenting and inspecting the source code i figured it has to do with the drawer translating it's location.

To fix the unwanted behavior i used: drawerType: "back" in the drawer's screenOptions like this:

import { createDrawerNavigator } from '@react-navigation/drawer';
import Index from './index';
import Test from './test';

const Drawer = createDrawerNavigator();


export default function RootLayout() {  

  return (
    <Drawer.Navigator screenOptions={{drawerPosition:'right', drawerType: 'back'}}>
      <Drawer.Screen name="index" component={Index} />
      <Drawer.Screen name="test" component={Test} />
    </Drawer.Navigator>
  );
}

This way we avoid changing the drawer's location.. I'll add this info to the issue & hope it will be fixed asap. Hope this helps someone, Goodluck !

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Whitelisted phrase (-1): Hope this helps
  • RegEx Blacklisted phrase (2): doesnt work for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tosh

79692353

Date: 2025-07-07 05:55:59
Score: 0.5
Natty:
Report link

Adding non-TTL rows into a table that is mostly TTL-ed does harm the compaction process and causes disk size to grow.

Here is the summarized reason:

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

79692349

Date: 2025-07-07 05:46:58
Score: 2.5
Natty:
Report link

Im bick aditing for 80$ doler this for time

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Arun Rajak

79692340

Date: 2025-07-07 05:29:53
Score: 1.5
Natty:
Report link

Generic way to circular shift 'N' times, can be done use the streaming operator.

wire [7:0] in;
wire [7:0] out;

parameter N = 2;//num_of_shifts

assign out = {<<N{in}};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: balaji

79692332

Date: 2025-07-07 05:09:49
Score: 3
Natty:
Report link

Problem was race condition where insert was taking 3 to 4 seconds and before that update command was triggered. I changed toe flow by enforcing insertion in db first and then going for actor creation of the specific type.

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

79692325

Date: 2025-07-07 04:54:45
Score: 6.5
Natty:
Report link

enter image description here here is the screenshot

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ARSA GAMING

79692313

Date: 2025-07-07 04:37:41
Score: 1
Natty:
Report link

The same issue with 2025 version. Terminals switching doesn't work anymore. So the bug became constant without any possibility to avoid.

Either you clolse terminal through "x" button inside IDE or close IDE completely. The process is still running.

It was the same a few years ago as I remember and nothing was fixed. Don't know why. It's frustrating since you have to go to the task manager and find that node process which is still running and kill it manually. Otherwise you'll receive an error that port is already in use when you try to run another application if you have many nodejs projects which use the same port.

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

79692312

Date: 2025-07-07 04:35:40
Score: 1
Natty:
Report link

Javascript isn't a good tool for security, simply because any web user can see your javascript via the 'sources' tab of their developer console, and hack the code from there (that button you disabled can be enabled, for example).
Leaving aside the whole security issue - if you want to enable/disable a function like this, you could do it with an asynchronous call to the server, that changed the value of allowedUpdate for you. But if you aren't already familiar with async functions, then the full answer is probably too long to post here.

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

79692311

Date: 2025-07-07 04:34:40
Score: 3.5
Natty:
Report link

They have to go to the your application for the your application for the your application for the your application for the your application for the your

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

79692298

Date: 2025-07-07 04:13:35
Score: 0.5
Natty:
Report link

got the answer, browser-use seems to update its script to call LLM

import asyncio
import os
from browser_use.llm import ChatGoogle
from browser_use import Agent
from dotenv import load_dotenv

# Read GOOGLE_API_KEY into env
load_dotenv()

# Initialize the model
llm = ChatGoogle(model='gemini-2.0-flash-exp', api_key=os.getenv('API_KEY'))

# Create agent with the model
async  def test():
    agent = Agent("navigate to https://staff-tmgm-cn-4-qa.lbcrmsit.com/ and get the title", llm, use_vision=True)
    result = await agent.run()
    print(result)

asyncio.run(test())
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Will Zhang

79692293

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

If someone got this error for the old android project, go and download the fetch2 and fetch2 core aar files from the release page.

com.github.florent37:shapeofview:1.4.7

Add both aar files to libs.

YourProject/
├── app/
│   ├── libs/
│   │   └── your-library.aar

After that add the aar to the build.gradle(app)

implementation files('libs/fetch2-3.2.2.aar')
implementation files('libs/fetch2core-3.2.2.aar')

After Sync Now the error may gone. 🍻

Thanks to https://github.com/helloimfrog.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: San Ko Ko

79692283

Date: 2025-07-07 03:50:30
Score: 2.5
Natty:
Report link

Solved here with recompile of apache binaries to remove restriction (use with caution!)

https://superuser.com/a/1909135/412080

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

79692282

Date: 2025-07-07 03:48:29
Score: 0.5
Natty:
Report link

If you want to do this, then you have to use those commands

php artisan make:model Admin\Services\Post -m; php artisan make:controller Admin\Services\PostController

Or you can do it by separately

php artisan make:model Admin\Services\Post -m
php artisan make:controller Admin\Services\PostController 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Abdullah Al Shahed

79692269

Date: 2025-07-07 03:27:24
Score: 0.5
Natty:
Report link

When preparing an app for App Store submission, you should ensure that Xcode is using a Distribution provisioning profile, specifically of type App Store. The errors you're encountering:

Xcode couldn't find any iOS App Development provisioning profiles matching '[bundle id]' Failed to create provisioning profile. There are no devices registered in your account...

The error suggests your project is using a Development or Ad Hoc provisioning profile, which requires at least one physical device to be registered. Since no device is registered, Xcode can’t create the profile.

However, for App Store submission, you should be using a Distribution > App Store profile — this type doesn't require any devices and is the correct one for archiving.

Avoid using Development or Ad Hoc profiles when archiving; they’re meant for testing, not App Store release.

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: meme

79692268

Date: 2025-07-07 03:26:23
Score: 2
Natty:
Report link

You only need to add --add-opens java.base/java.lang=ALL-UNNAMED to the environment variable HADOOP_OPTS to resolve the issue in your Hadoop 3.4.1 and JDK 17 environment.

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

79692264

Date: 2025-07-07 03:18:21
Score: 8
Natty:
Report link

TENGO EL MISMO ERROR SDK 35 NO FUNCIONA EN ANDROID STUDIO

Reasons:
  • Blacklisted phrase (2): TENGO
  • RegEx Blacklisted phrase (2.5): MISMO
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ANDRIUX CR

79692262

Date: 2025-07-07 03:08:19
Score: 0.5
Natty:
Report link

I was getting this error when I was running Python 3.13 but the Azure Function was running as 3.12. The following fixed it for me:


deactivate
rm -rf .venv
python3.12 -m venv .venv
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tim Aitken

79692248

Date: 2025-07-07 02:16:06
Score: 4
Natty:
Report link

try @JsonInclude(JsonInclude.Include.NON_NULL)

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 瑟瑟发抖的菜鸟

79692245

Date: 2025-07-07 02:11:05
Score: 0.5
Natty:
Report link

Android SDK 35 is required AGP 8.6.0 or newer you have to update in settings.gradle file
source

plugins {
    id "dev.flutter.flutter-plugin-loader" version "1.0.0"
    id "com.android.application" version "8.6.0" apply false // This line
    id "com.google.gms.google-services" version "4.3.15" apply false
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lightn1ng

79692239

Date: 2025-07-07 01:54:02
Score: 1
Natty:
Report link

Your code is correct but it only monitor current opened files only not History of you files and to monitor this you have to run this script continuously (depends on your need)

If you want history also of your executable files(.exe) then window stores that data in registry so track down that to extract all data of your desired exe files

And for PDFs and FileExplorer files you have Recent files option so track that all

And extract all metadata of those files to get history of your FILES as well with .exe files

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

79692238

Date: 2025-07-07 01:48:01
Score: 1
Natty:
Report link
os.environ['PYOPENGL_PLATFORM'] = 'egl'
os.environ['EGL_PLATFORM'] = 'surfaceless'

then

egl_display = EGL.eglGetDisplay(EGL.EGL_DEFAULT_DISPLAY)
major, minor =egl.EGLint(), egl.EGLint()
result = EGL.eglInitialize(egl_display, pointer(major), pointer(minor))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: annsar

79692237

Date: 2025-07-07 01:47:00
Score: 1.5
Natty:
Report link

To avoid overflow in addition operations, if all operands are positive integers and the ranges are known, during computation you can attempt to use uint32_t or uint64_t to prevent overflow

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

79692230

Date: 2025-07-07 01:35:57
Score: 2.5
Natty:
Report link

Please check this answer

Could not load file or assembly 'System.Memory, Version=4.0.1.' in Visual Studio 2015

Normally those kind of issues need to be solved adding a coverage of a range of versions, check which on you have on the config.

<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
Reasons:
  • Blacklisted phrase (1): Please check this
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Juan Acosta

79692219

Date: 2025-07-07 01:09:51
Score: 12.5
Natty: 8
Report link

were you able to get any solution for this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): were you able
  • RegEx Blacklisted phrase (2): any solution for this?
  • 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: user30979482

79692199

Date: 2025-07-07 00:23:42
Score: 1.5
Natty:
Report link

Add #import "RCTAppDelegate.h" to your Objective-C bridging header file, this solved the problem for me

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

79692197

Date: 2025-07-07 00:16:39
Score: 7.5
Natty: 6.5
Report link

What would be the best practices for NB15 dataset multiclass imbalance of the class? In a hybrid CNN+RNN model? @Michael Grogan?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Michael
  • Single line (0.5):
  • Starts with a question (0.5): What would
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: YEASIN IBNE KADIR

79692189

Date: 2025-07-07 00:00:19
Score: 4.5
Natty: 5
Report link

Just see this commnet. It fixes this for me: https://github.com/kevinhwang91/nvim-ufo/issues/92#issuecomment-2241150524

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

79692185

Date: 2025-07-06 23:53:16
Score: 4
Natty:
Report link

Use https://online.reaconverter.com/convert/cmp-to-png, it converts that image format to mainstream image formats such as PNG or JPG very well.

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

79692180

Date: 2025-07-06 23:49:15
Score: 3.5
Natty:
Report link

Terima kasih informasi nya. Artikel nya sangat bagus

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

79692175

Date: 2025-07-06 23:40:13
Score: 4
Natty:
Report link

Terima kasih artikel nya sangat bagus

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

79692174

Date: 2025-07-06 23:36:12
Score: 0.5
Natty:
Report link

The ClipboardManager interface was deprecated in favor of Clipboard interface.

  1. Change all import androidx.compose.ui.platform.LocalClipboardManager to import androidx.compose.ui.platform.LocalClipboard and LocalClipboardManager to LocalClipboard

  2. Make the caller function suspend or use rememberCoroutineScope().launch { ... }

  3. If you were using function setText(AnnotatedString(text)), then you can replace it with setClipEntry(ClipEntry(ClipData.newPlainText(text, text)))

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

79692170

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

I also can't believe that it worked but it did! I closed xcode and then turned off the wireless on my iphone, watch and computer. I opened xcode and then turned on wireless on all three devices. thank you for sharing this fix!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James D

79692168

Date: 2025-07-06 23:32:06
Score: 6
Natty:
Report link

My question is: Is the Datadog Exporter capable of sending data to the Datadog Agent, rather than directly to Datadog? Can you please help me?

No it's not. This might be something planned in future considering there are metrics, logs and traces that can be sent. The exporter allows you to connect directly to Datadog's intake endpoint based on the site and key parameters/fields. If you need to use the agent, then you can simply use Datadog's own distribution of the Otel collector (DDOT - which is the agent with an Otel collector processor)

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can you please help me
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Oluwaseye Ayinla

79692167

Date: 2025-07-06 23:29:05
Score: 4.5
Natty: 5
Report link

Just see this commnet. It fixes my issue too: https://github.com/kevinhwang91/nvim-ufo/issues/92#issuecomment-2241150524

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

79692149

Date: 2025-07-06 22:54:57
Score: 1
Natty:
Report link

The error "error": "There was a problem proxying the request" is a very generic and indicates some issue with Tyk proxying the request. It's typically a wrong target URL specified or some network routing issue e.g. DNS, firewall or another proxy. You typically want to verify that the target URL is reachable. If you deployed Tyk in a container then simply shell into it and test with a curl. You would find that you can't reach the target URL which the gateway also cannot reach. More info here

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

79692147

Date: 2025-07-06 22:52:56
Score: 1
Natty:
Report link

I had the same need recently. There's actually a nice IntelliJ plugin that does the job, it lets you search across multiple GitLab repos, even if they’re not part of the same project.

https://plugins.jetbrains.com/plugin/26095-gitlab-multi-repo-search

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

79692141

Date: 2025-07-06 22:39:54
Score: 0.5
Natty:
Report link

It turns out that the new calls were added in a new beta version of the core library, which Android Studio will not normally recommend using. Manually specifying

implementation 'androidx.core:core:1.17.0-beta01'

fixed this problem.

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

79692140

Date: 2025-07-06 22:36:53
Score: 2
Natty:
Report link

Had the same error message despite having the right IAM role attached to the instance (AmazonSSMManagedInstanceCore).

Stoping the instance and rebooting solve the issue for me.

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

79692139

Date: 2025-07-06 22:36:53
Score: 4
Natty:
Report link

This is expected behavior of Python.

you should use an relative import as you suggested with the fix. Can you elaborate as to why you cannot edit the auto-generated code? I find it odd that it would generate non-functional code. You should also include a __init__.py file in each module (folder)

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you elaborate
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: farrell987

79692124

Date: 2025-07-06 22:02:45
Score: 1.5
Natty:
Report link
.container {
    border: 2px solid green;
}
.container-inside {
    border-color : red;
}

<div class="container">
    <div class="container container-inside"></div>
</div>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Udezue Oluomachi Chimaobi

79692123

Date: 2025-07-06 21:55:44
Score: 1
Natty:
Report link

i had to cast the value to string to make it works, it said that value.split was not a function :

@Transform(({ value }) => String(value).split(','))
"class-transformer": "^0.5.1",
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Antoine Poussier

79692117

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

You need to add box-sizing: border-box to your .input-box class:

See the documentation here for some visual examples: https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing

<!DOCTYPE html>
<html>
  <head>
    <title>
      Practice 
    </title>
    <style>
      .parent{
        display: flex;
        flex-direction: row;
      }

      .child-1{
        flex: 1;
      }

      .input-box{
        width: 100%;
        box-sizing: border-box;
      }

      .child-2{
        width: 100px;
      }
    </style>
  </head>
  <body>
    <div class="parent">
      <div class="child-1">
        <input class="input-box" placeholder="Search">
      </div>
      <div class="child-2">
        <button style="opacity: 0.8;">Click me</button>
      </div>
    </div>
  </body>
</html>

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

79692114

Date: 2025-07-06 21:38:40
Score: 3.5
Natty:
Report link

make sure the terraform version is 1.11.4 as the latest version of terraform fails to install azapi

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

79692113

Date: 2025-07-06 21:38:40
Score: 0.5
Natty:
Report link

If you have problem with message_content then probably you forgot Message Content Intent

Message Content Intent

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

79692110

Date: 2025-07-06 21:31:39
Score: 0.5
Natty:
Report link

I have an algorithm to suggest, not tested yet, but seems to work on paper:

Here, a polygon is a set of edges and vertices (or nodes) all with the same id.
Each node can be marked as "visited", all are "non visited" by default.
Each Edge can have a value (integer), 0 by default.

Subtlety: Consider only the convex envelope of each polygon.

Note that the complexity is roughly quadratic, as you have to compare (a bit less than) each node with each other, then go through each edge once. The last step can be parallelized (the first one too but you may visit twice the same node).

Tell me if you have any trouble implementing it, or if you see any flaws.

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

79692105

Date: 2025-07-06 21:16:35
Score: 3
Natty:
Report link

I'm still trying to figure this out as well.

I have user_pb2 and user_pb2_grpc objects that aren't being resolved.

I have from . import user_pb2, user_pb2_grpc and I've also installed the grpcio library, still no luck

Reasons:
  • Blacklisted phrase (1): no luck
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: c0pp3rdru1d

79692091

Date: 2025-07-06 20:46:28
Score: 2.5
Natty:
Report link

I had the same issue and the only thing that worked was doing 'flutter clean'

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

79692085

Date: 2025-07-06 20:41:26
Score: 3
Natty:
Report link

(I am writing this here since I just created my first account just to comment on Jurgen's answer but i need 2 reputation to do that.)

Having worked with Rascal for a course at my university (which I am pretty sure Jurgen is also a professor at), I feel the urge to ask (related to the snippet taken from Jurgen's answer): what is the point of being able to see the actual error only by using the try catch? Why not just display it as an error directly? What is the point of having to take 10 steps just to find what exactly is wrong instead of just displaying it?

My second question is: even if there is a need for taking all the steps to achieve something simple, why not put it in a universal document, or some kind of FAQ, instead of people having through go through Github issues and Stack Overflow answers? Something to at least make it easier to find these things?

"It seems we have a constructor to work with. So what is going on? I stepped through the code of implode in Java to find out that the real reason was hidden by a bug in the backtracking part of implode. That's now fixed (see next continuous release on the update site).

The current, better, error message is:

rascal>try { implode(#AST::Build, x); } catch IllegalArgument (t, m) : println("<m> : <t>");
Cannot find a constructor for IdeFolder with name options and arity 3 for syntax type 'Options' : set(${TARGET_NAME}_IDE_FOLDER "test")

"

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user30978643