79275484

Date: 2024-12-12 14:34:27
Score: 2.5
Natty:
Report link

Something like this?

df %>% 
  group_by(N2000) %>%
  mutate(area = ifelse(N2000== "Yes",SurfaceN2000, Total_Surface )) %>%
  summarise(surface= sum(area, na.rm = T))

# A tibble: 2 × 2
  N2000 surface
  <chr>   <dbl>
1 No       16  
2 Yes       5.5
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Luigi

79275482

Date: 2024-12-12 14:34:27
Score: 0.5
Natty:
Report link

I am using Kingswaysoft, so problem come from the parameter "Use Homogeneous Batch Operation Messages".

More explanation from Kingswaysoft:

While the feature provides some incredible performance improvement, it also comes with some constraints that should be taken into consideration when deciding whether and how to use it.

The most important issue with the new batch operation is, that the new batch message has a different error handling behavior. To be more specific, there is no partial batch process available as we do in the traditional ExecuteMultiple message. In other words, when you submit a batch (CreateMultiple, UpdateMultiple, or DeleteMultiple), if there is one record failing in the batch due to any reason (such as data type or data length/size overflow errors), then the entire batch will fail. There isn't a ContinueOnError option like we do in the ExecuteMultiple message. If you have the trust that your input data is always valid for writing to the target entity, then you are encouraged to leverage the new feature.

Source: More info here

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

79275477

Date: 2024-12-12 14:33:26
Score: 3
Natty:
Report link

For anyone reading this issue, replacing paths is not needed (this actually leads to the same errors) since migration to SonarSource/sonarqube-scan-action

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

79275475

Date: 2024-12-12 14:32:26
Score: 2
Natty:
Report link

The current design of the OpenModelica GUI requires that the models are valid. This is needed for the diagrams.

Right now there is no workaround. Please follow https://github.com/OpenModelica/OpenModelica/issues/13039

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

79275474

Date: 2024-12-12 14:32:26
Score: 1
Natty:
Report link

enable OpenWire protocol in broker.xml eg:

<acceptor name="openwire-acceptor">tcp://localhost:61616?protocols=OPENWIRE</acceptor>

add implementation dependency (for spring boot 3 here)

   implementation 'org.apache.activemq:artemis-jakarta-openwire-protocol'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Krzysztof Bardzinski

79275467

Date: 2024-12-12 14:30:25
Score: 3.5
Natty:
Report link

Have a look at this u can use a api to fetch data

https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties/runReport

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

79275464

Date: 2024-12-12 14:28:25
Score: 1
Natty:
Report link

Your macOS is blocking the file because it was downloaded from the internet or created by an unrecognized source.

For this file only, use the Context Menu to Open:

  1. Right-click (or Control-click) on the file.
  2. Select Open from the context menu. This may prompt a message asking if you're sure you want to open it. Confirm that you do.

For all files (in case you decide to go this way in the future),

  1. Go to System Preferences > Security & Privacy.
  2. In the General tab, check for a message saying the file was blocked. If so, you may see an option to allow it.
  3. Click Allow Anyway to permit the file to open.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Silver Spade

79275463

Date: 2024-12-12 14:27:25
Score: 2
Natty:
Report link

When you put the participant on hold also mute them using the twilio rest api. Then unmute them when you take them off hold. This should prevent the conference music from being heard on the recording.

See twilio logs on how to mute: https://www.twilio.com/docs/voice/api/conference-participant-resource#update-a-participant-resource

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: maxosh22

79275459

Date: 2024-12-12 14:26:23
Score: 4.5
Natty:
Report link

I have the same issue when I have to set a variable from the result. So, to fix it I have to CAST the result to VARCHAR(300) and the result starts to work.

For example:

Original:

Select
   MyId
   MyName
From
   MyTable

Fix:

Select
   MyId
   CAST(MyName as AS NVARCHAR(300)) AS MyName
From
   MyTable
Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Aldo U.

79275456

Date: 2024-12-12 14:24:22
Score: 1
Natty:
Report link

The templates field.html and fields.html got adjusted today, so they can also handle ChoiceField and ModelChoiceField properly by passing choices parameter:

https://github.com/pennersr/django-allauth/commit/1eac57caaab22d40b1df99b272b9f34c795212cc

Than it can be used like this:

class CustomUserCreationForm(forms.ModelForm):
    salutation = forms.ChoiceField(widget=Select(attrs={'placeholder': 'Salutation'}), choices=CustomUser.SALUTATION)
    country = forms.ModelChoiceField(widget=Select(attrs={'placeholder': 'Country'}), queryset=Country.objects.all())
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: CodeResearcher

79275450

Date: 2024-12-12 14:22:22
Score: 1.5
Natty:
Report link
  1. Extract value from HTTP response using JSON Extractor configured like this:

    enter image description here

  2. Extract value from the database using JDBC PostProcessor like this:

    enter image description here

  3. Compare the values using Response Assertion like this:

    enter image description here

  4. Enjoy

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

79275448

Date: 2024-12-12 14:21:22
Score: 1.5
Natty:
Report link

Answer

First, create a table automatically inferring the schema from staged files.

create table mytable using template (
    select array_agg(object_construct(*))
    from table(
        infer_schema(
            location => '@my_stage',
            file_format => 'my_format'
        )
    )
);

Now, use COPY INTO <table> command to load the data.

copy into mytable
from @my_stage
file_format = (format_name = 'parquet_format');

Reading material

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

79275447

Date: 2024-12-12 14:21:21
Score: 5.5
Natty: 4
Report link

hey can someone help me i am not able to get commnets data from instagram

this is my code files 1) @socialRouter.get("/insta/connect/{state}") async def connect_instagram(state: str): try: # Define Instagram-specific scopes scopes = [ "instagram_business_basic", "instagram_business_manage_messages", "instagram_business_manage_comments", "instagram_business_content_publish" ]

    # Use the ngrok URL for redirect
    redirect_uri =NGROK_URI_INSTA
    
    params = {
        "client_id": INSTAGRAM_CLIENT_ID,
        "redirect_uri": redirect_uri,
        "state": state,
        "scope": ",".join(scopes),
        "response_type": "code",
        "enable_fb_login": "0",
        "force_authentication": "1"
    }
    
    auth_url = f"https://www.instagram.com/oauth/authorize?{urllib.parse.urlencode(params)}"
    return {"redirect_url": auth_url}

except Exception as e:
    raise HTTPException(status_code=400, detail=f"Error getting Instagram authorization URL: {str(e)}")

@socialRouter.get('/instagram/posts/analytics/{userId}') async def getInstagramPostsAnalytics(userId: str): try: # Get the user's Instagram account details from MongoDB social_account = await database.get_collection('socialaccounts').find_one({ "userid": userId, "accounts.alias": "insta" })

    if not social_account:
        raise HTTPException(status_code=404, detail="Instagram account not found")
        
    # Find the Instagram account in the accounts array
    instagram_account = next(
        (acc for acc in social_account['accounts'] if acc['alias'] == 'insta'), 
        None
    )
    
    if not instagram_account or not instagram_account.get('linked'):
        raise HTTPException(
            status_code=400, 
            detail="Instagram account not connected"
        )

    access_token = instagram_account['accessToken']
    instagram_user_id = instagram_account['uid']

    async with httpx.AsyncClient() as client:
        # Get user's media
        media_response = await client.get(
            f"https://graph.instagram.com/v21.0/{instagram_user_id}/media",
            params={
                "access_token": access_token,
                "fields": "id,caption,media_type,media_url,thumbnail_url,permalink,timestamp,like_count,comments_count",
                "limit": 50  # Instagram API limit
            }
        )

        if media_response.status_code != 200:
            error_data = media_response.json()
            print(f"Instagram API Error: {error_data}")
            raise HTTPException(
                status_code=media_response.status_code,
                detail=f"Failed to fetch Instagram posts: {error_data.get('error', {}).get('message', 'Unknown error')}"
            )

        posts_data = media_response.json().get('data', [])
        analytics_data = []

        # Process each post
        for post in posts_data:
            try:
                # Get comments for each post
                comments_response = await client.get(
                    f"https://graph.instagram.com/v21.0/{post['id']}/comments",
                    params={
                        "access_token": access_token,
                        "fields": "id,text,timestamp,username,replies{id,text,timestamp,username}",
                        "limit": 50
                    }
                )
                
                comments_data = comments_response.json().get('data', []) if comments_response.status_code == 200 else []

                # Parse timestamp
                created_time = datetime.strptime(
                    post.get('timestamp'),
                    '%Y-%m-%dT%H:%M:%S+0000'
                ) if post.get('timestamp') else None

                post_analytics = {
                    "post_id": post.get('id'),
                    "caption": post.get('caption', ''),
                    "media_type": post.get('media_type'),
                    "media_url": post.get('media_url'),
                    "thumbnail_url": post.get('thumbnail_url'),
                    "permalink": post.get('permalink'),
                    "created_time": created_time.isoformat() if created_time else None,
                    "likes_count": post.get('like_count', 0),
                    "comments_count": post.get('comments_count', 0),
                    "comments": []
                }

                # Process comments
                for comment in comments_data:
                    try:
                        comment_time = datetime.strptime(
                            comment.get('timestamp'),
                            '%Y-%m-%dT%H:%M:%S+0000'
                        ) if comment.get('timestamp') else None

                        comment_data = {
                            "comment_id": comment.get('id'),
                            "text": comment.get('text'),
                            "username": comment.get('username'),
                            "created_time": comment_time.isoformat() if comment_time else None,
                            "replies": []
                        }

                        # Process replies if any
                        replies = comment.get('replies', {}).get('data', [])
                        for reply in replies:
                            reply_time = datetime.strptime(
                                reply.get('timestamp'),
                                '%Y-%m-%dT%H:%M:%S+0000'
                            ) if reply.get('timestamp') else None

                            reply_data = {
                                "reply_id": reply.get('id'),
                                "text": reply.get('text'),
                                "username": reply.get('username'),
                                "created_time": reply_time.isoformat() if reply_time else None
                            }
                            comment_data["replies"].append(reply_data)

                        post_analytics["comments"].append(comment_data)

                    except Exception as comment_error:
                        print(f"Error processing comment: {str(comment_error)}")
                        continue

                analytics_data.append(post_analytics)

            except Exception as post_error:
                print(f"Error processing post: {str(post_error)}")
                continue

        # Sort posts by created_time
        analytics_data.sort(
            key=lambda x: datetime.fromisoformat(x['created_time']) if x['created_time'] else datetime.min,
            reverse=True
        )

        return {
            "instagram_user_id": instagram_user_id,
            "username": instagram_account['uname'],
            "posts": analytics_data,
            "total_posts": len(analytics_data)
        }

except HTTPException as he:
    raise he
except Exception as e:
    print(f"Unexpected error: {str(e)}")
    raise HTTPException(
        status_code=500,
        detail=f"Error fetching Instagram post analytics: {str(e)}"
    )
  1. this is the postman output when i checked the api

{ "instagram_user_id": "9126911540692667", "username": "vaasuu994", "posts": [ { "post_id": "18071977783652771", "caption": "this is new post at 8 pm", "media_type": "IMAGE", "media_url": "https://scontent.cdninstagram.com/v/t51.2885-15/470059027_1631783381100932_412873310478335983_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=18de74&_nc_ohc=rbWwpxGAYSMQ7kNvgHhm609&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&edm=ANo9K5cEAAAA&oh=00_AYD96YiFDLNhIxVvRbOjtVp1FuuIqQEYFjb5-so2DG3nJw&oe=6760A953", "thumbnail_url": null, "permalink": "https://www.instagram.com/p/DDewPN6se4F/", "created_time": "2024-12-12T13:47:40", "likes_count": 1, "comments_count": 1, "comments": [] }, { "post_id": "18067118218776225", "caption": "this is the test 123", "media_type": "IMAGE", "media_url": "https://scontent.cdninstagram.com/v/t51.2885-15/469914946_560366433569419_5961729207973594249_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=18de74&_nc_ohc=FV3F4QZVXaYQ7kNvgFMLr28&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&edm=ANo9K5cEAAAA&oh=00_AYCerTY0mj-BN01CEzGlKyLpr5cLaJY0SOPqed7j7lY3GA&oe=6760B0C3", "thumbnail_url": null, "permalink": "https://www.instagram.com/p/DDd5Bb0hj3x/", "created_time": "2024-12-12T05:45:12", "likes_count": 1, "comments_count": 2, "comments": [] } ], "total_posts": 2 }

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): i am not able to
  • RegEx Blacklisted phrase (3): can someone help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Vasu Chourasia

79275442

Date: 2024-12-12 14:20:20
Score: 2
Natty:
Report link

Calculators typically use fixed-point arithmetic or limited precision floating-point representation, which avoids the accumulation of errors seen in more complex systems like computers. While they don't store decimals in the same way as computers, their simplicity and limited functionality mean they can accurately handle basic operations like adding 0.1 repeatedly. Unlike full computers, they don't perform advanced floating-point calculations. For precise time calculations, I recommend using Calculadora Horas.

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

79275427

Date: 2024-12-12 14:16:19
Score: 1
Natty:
Report link

If I get it right. You can create one tooltip for a table and then listen for some events like hover and change content of tooltip dynamically. The same approach for cells via events and listeners. The "cellTap" event.

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

79275408

Date: 2024-12-12 14:10:18
Score: 3.5
Natty:
Report link

Your question has two distinct parts, and the second one is more tricky/complex as it depends on the architecture you want to implement. Please provide more design info, so we can assist you better.

Is there a way to overcome the limitation of adding multiple phone numbers to a single WhatsApp Business Account?

Yes, you need to Verify Your Business. Once verified, you can add more business numbers. Follow Meta's instructions here: Meta Business Verification

How can I support 70 tenants, each with a unique phone number and WhatsApp bot, using the WhatsApp Business Cloud API?

This depends on the architecture and programming language you’re using. Here’s a scalable approach to handle this scenario in a multi-tenant setup:

Message Gateway:

import redis

redis_client = redis.StrictRedis()

def enqueue_message(message):
    tenant_id = message["metadata"]["phone_number_id"]  # Unique for each WhatsApp number
    queue_name = f"queue:{tenant_id}"
    redis_client.rpush(queue_name, message)

Worker:

import time

def processor_1(tenant_id, message):
    print(f"First Processor {tenant_id}: {message}")

def processor_2(tenant_id, message):
    print(f"Second Processor {tenant_id}: {message}")

def worker(tenant_id):
    queue_name = f"queue:{tenant_id}"
    while True:
        message = redis_client.lpop(queue_name)
        if message:
            if tenant_id == "foo": 
                processor_1(tenant_id, message)
            else:
                processor_2(tenant_id, message)
        else:
            time.sleep(1)  # No messages, wait and retry

This is a simplified example. For a more comprehensive implementation (and I run in production), you can refer to this example:

Whatsapp Message Gateway + Multiple workers Example

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (2.5): Please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Sergio Gao

79275396

Date: 2024-12-12 14:07:17
Score: 3.5
Natty:
Report link

Remote Access Descriptor (RAD) entries in Oracle Platforms Security Services (OPSS). - when we create RAD in the EM console, where exactly it stored ? in which file and which location in weblogic ? as we have 250 user and i wanted to have backup of that file so something goes wring then can be restored. so

correct table in OPSS where RAD entry is stored..is this stored in DB ? can we take the backup of that one ?

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

79275391

Date: 2024-12-12 14:06:17
Score: 1
Natty:
Report link

Implement this method:

    private void InvokeButtonClick(Button button) 
    { 
        var clickEvent = button.GetType().GetMethod("OnClick", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance); 
        clickEvent.Invoke(button, new object[] { EventArgs.Empty }); 
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RamalhoFael

79275386

Date: 2024-12-12 14:05:17
Score: 3
Natty:
Report link

Maybe you can try establishing a logic based on this event, calculating the delta between the remaining and the total.:

docmentaion

Link to the docs: https://platform.openai.com/docs/api-reference/realtime-server-events/rate_limits

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

79275380

Date: 2024-12-12 14:03:16
Score: 1.5
Natty:
Report link

A byte is eight bits(binary digits, true false, on off, 1 0) ). We have 256 outcomes in a byte. 2 to the power of eight equals 256. The smallest file usable consists of 4 bytes = 2561024 bits = 1 K. There are many hidden files in the root of your computers directories, and the size of most of them are typically 1024 b or 20048 In the file management environment things have speeded up. During file transmitions it's easy to observe the size of the files being transmitted, and again, they are 1024 gran plus 2048

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

79275377

Date: 2024-12-12 14:00:15
Score: 2.5
Natty:
Report link

I can't be much help with changing the regex, but I believe the {1,3} {4} checks are so that any text of length 1-3 will be counted, and then if it's length 4 or longer it's only counted if it isn't starting with <!-- so that it doesn't catch the ID in your flashcards.

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

79275376

Date: 2024-12-12 14:00:15
Score: 3.5
Natty:
Report link

Since my application is just started, i will convert it to Laravel, as i see Next.js is overhyped with lots of limitations.

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

79275368

Date: 2024-12-12 13:57:13
Score: 7 🚩
Natty: 4.5
Report link

For people involving the above error, please check this post out

How to install pre-built Pillow wheel with libraqm DLLs on Windows?

Reasons:
  • Blacklisted phrase (1): please check this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jaffer Al-Delphi

79275367

Date: 2024-12-12 13:57:13
Score: 3.5
Natty:
Report link

You need to downgrade the version of PHP. maybe try the PHP 7.4

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

79275350

Date: 2024-12-12 13:49:11
Score: 3.5
Natty:
Report link

Put the entire formula in a Table function like - Table({Value: LookUp( )})

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

79275348

Date: 2024-12-12 13:49:11
Score: 3
Natty:
Report link

Use the IN6_ADDR_EQUAL function from ws2ipdef.h in Windows.

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

79275347

Date: 2024-12-12 13:49:11
Score: 2.5
Natty:
Report link

To change the highlight color for matches, choose the Tools menu, select Options, and then choose Environment, and select Fonts and Colors. In the Show settings for list, select Text Editor, and then in the Display items list, select Find Match Highlight.

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

79275346

Date: 2024-12-12 13:49:11
Score: 1
Natty:
Report link

A workaround (for testing etc.), would be to go to the Google Play's app settings on the device and clear the data (clearing the cache is not enough), and launch it again. After it re-logins with your account, go back to your app and initiate the in app review flow again. The Review dialog should appear on screen now.

Good luck!

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

79275342

Date: 2024-12-12 13:48:10
Score: 4.5
Natty:
Report link

At this time, I think you should use Tkinter instead. Figma to PyQt isn't available with the free version, but Figma to Tkinter have a free one.

Link install: https://github.com/ParthJadhav/Tkinter-Designer

Guide: https://www.youtube.com/watch?v=Qd-jJjduWeQ

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

79275335

Date: 2024-12-12 13:46:09
Score: 1.5
Natty:
Report link

I had same issue in Brave browser. Switch the browser to another and solved in my case. It seems a bug in Brave browser.

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

79275334

Date: 2024-12-12 13:45:09
Score: 2.5
Natty:
Report link

For Java 23 here it can be fixed with,

  1. Having the latest maven-compiler-version (it's version 3.13.0 at the time of writing this article)
  2. Setup maven.compiler.proc property with full value.

https://dzone.com/articles/using-lombok-library-witk-jdk-23

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Dasun wijesundara

79275333

Date: 2024-12-12 13:45:09
Score: 3.5
Natty:
Report link

Really helped me a lot . Tried to debug with chatgpt but it wasn't working.

element:"list" works

Reasons:
  • Blacklisted phrase (1): helped me a lot
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Uday Pratap Chauhan

79275331

Date: 2024-12-12 13:44:09
Score: 1
Natty:
Report link

A workaround (for testing etc.), would be to go to the Google Play's app settings on the device and clear the data (clearing the cache is not enough), and launch it again. After it re-logins with your account, go back to your app and initiate the in app review flow again. The Review dialog should appear on screen now.

Good luck!

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

79275329

Date: 2024-12-12 13:43:09
Score: 3.5
Natty:
Report link

I was having the same issue. This option has solved my problem.

enter image description here

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

79275327

Date: 2024-12-12 13:43:09
Score: 2
Natty:
Report link

Normally the "/" path is for the 1st loaded page so you will need one with "/" path. On another hand it might be the problem of multiple Routes so try merging them as fellow engineers said. Good luck💢

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ali Mohammad Mcdad

79275325

Date: 2024-12-12 13:43:08
Score: 4
Natty:
Report link
datetime.datetime.today().date()
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mark Bakon

79275317

Date: 2024-12-12 13:39:06
Score: 4.5
Natty: 4
Report link

akad.Ghostwriter für jede Fachrichtung

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vậy Sao

79275308

Date: 2024-12-12 13:36:05
Score: 1
Natty:
Report link

Not sure is is the same cause, but for me intellij was trying to render that project on a monitor which is no longer connected.

Right clicking on the white window in task bar and selecting "maximise" restored the window.

If you don't want the window maximised you can instead select "move", but then you need to move the window to the monitor you want with your arrow keys.

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

79275298

Date: 2024-12-12 13:34:04
Score: 1
Natty:
Report link

Use Python 3.9.0 With tensorflow==2.15.1 It worked for me.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aritra Deb

79275296

Date: 2024-12-12 13:34:04
Score: 1
Natty:
Report link

For fellow Arch users, make sure your clock is synchronized, in case you're using systems, you can enable synchronization via:

timedatectl --set-ntp true

https://wiki.archlinux.org/title/Systemd-timesyncd

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

79275275

Date: 2024-12-12 13:29:03
Score: 2
Natty:
Report link

For those of you that don't want to use javascript and want to use the capabilities of ASP.Net:

use target="_blank" in MapAreaAttributes

It appears in code as MapAreaAttributes='target="_blank"'

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

79275266

Date: 2024-12-12 13:26:02
Score: 3.5
Natty:
Report link

If you are only seeing this on Insider, that indicates it is likely a bug with VSCode and not something you can easily fix yourself.

https://youtu.be/OZWkwAYuEvU?si=79ZAkSGdHfebq4Ml

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Don't Know Nothing

79275243

Date: 2024-12-12 13:17:00
Score: 1
Natty:
Report link

This just works for me, and then I can do whatever I want with the logs. e.g. calculating metrics:

  pipeline_stages:
  - decolorize:
  - regex:
      expression: 'REQUEST FINISHED:.*-\s(?P<latency>\d+)ms$'
      action: keep
  - metrics:
      insly_request_latency_ms:
        type: Histogram
        description: "Histogram of request latencies (ms)"
        source: latency
        config:
          buckets: [100, 250, 500, 1000, 5000, 10000, 30000, 60000]

https://grafana.com/docs/loki/latest/send-data/promtail/stages/decolorize/

Reasons:
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (1): I want
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Florin Marin

79275231

Date: 2024-12-12 13:12:59
Score: 1
Natty:
Report link

I had the same issue, struggled to remove the colors but in the end found this in the docs:

  pipeline_stages:
  - decolorize:

https://grafana.com/docs/loki/latest/send-data/promtail/stages/decolorize/

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Florin Marin

79275226

Date: 2024-12-12 13:11:59
Score: 3.5
Natty:
Report link

[email protected] HD male se uska ID login hai mere ko hack karna hai

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Pankaj paswan

79275225

Date: 2024-12-12 13:10:58
Score: 4
Natty: 4
Report link

Bro it is really easy don't confuse by other answers just press (insert key) on keyboard

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

79275221

Date: 2024-12-12 13:08:56
Score: 5.5
Natty:
Report link

Have the same problem. One certificate works fine but another does not. The problem if a certificate password contains some special characters. If password is simple - works fine.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Oleksandr

79275220

Date: 2024-12-12 13:08:56
Score: 1
Natty:
Report link

So, you need to add "end" attribute like:

 <NavLink
      end
      role="button"
      to="/organization/"
      className="flex flex-row justify-start gap-2 items-center"
    >
      <MdDashboard /> Dashboard
    </NavLink>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Asadulloh Pro

79275218

Date: 2024-12-12 13:07:56
Score: 1
Natty:
Report link

Follow below Steps:- 1: Ensure that the correct Cucumber dependencies are added to your project. 2: Ensure that your build tool (Maven/Gradle) has downloaded the required libraries and added them to the classpath 3. If you are using additional libraries (e.g., Gherkin), ensure they are compatible with the Cucumber version 4. Sometimes, stale or corrupted files in the target or build directory can cause issues 5. If the issue occurs at runtime, ensure the library is bundled correctly or accessible in the environment where the application is running 6: Verify IDE Configuration: If you're using an IDE like IntelliJ IDEA or Eclipse:

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

79275215

Date: 2024-12-12 13:07:56
Score: 2.5
Natty:
Report link

Just for reference, I had some contact with 2sxc and they said it was an old dll which was still in the bin folder. So it looks like this was not deleted after and upgrade. In my case I had to delete the ToSic.EAV.Tokens.dll file from the bin folder and then everything worked again.

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

79275213

Date: 2024-12-12 13:07:56
Score: 1
Natty:
Report link

It seems like a platform-specific issue when deploying your API. Here’s a quick checklist to resolve it:

1.Application Pool Settings: Ensure the correct .NET version is configured in IIS and the pool identity has proper permissions.

2.Dependencies: Double-check for missing runtime or native dependencies using tools like Dependency Walker or ProcMon.

3)Publishing: Make sure you’ve published correctly (e.g., self-contained deployment if needed) and that the server runtime matches your app.

4.Permissions: Verify IIS_IUSRS or the app pool identity has read/write access to the necessary folders.

5.Event Viewer: Check for logged errors for more details idk.

or its a Web.config... confirm proper configuration, especially for processPath and runtime settings.

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

79275209

Date: 2024-12-12 13:06:55
Score: 4
Natty:
Report link

Did u think about using self-signed certification for authentication instead of client secret? And after u may configure automatic token refreshing.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (1):
Posted by: Vicki Garret

79275200

Date: 2024-12-12 13:02:54
Score: 5.5
Natty:
Report link

you can check this video by zach:

Here

Reasons:
  • Blacklisted phrase (1): check this video
  • Blacklisted phrase (1): this video
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aicha OUADAH

79275199

Date: 2024-12-12 13:02:53
Score: 5.5
Natty: 5.5
Report link

have you check your payload when submitting the form? Is the content in the payload?

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

79275192

Date: 2024-12-12 12:57:52
Score: 3.5
Natty:
Report link

Pass the url parameter variable to the UseEffect Dependency Array and check.

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

79275187

Date: 2024-12-12 12:57:51
Score: 4
Natty:
Report link

I've found the answer myself, in the following video below:

https://www.youtube.com/watch?v=PYAHuOvjGc8

Around minute 28 is where he shows the registration with WPForms and ACF.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dale

79275186

Date: 2024-12-12 12:56:51
Score: 1.5
Natty:
Report link

Use like this :

struct Word {
    var wordId: String = UUID().uuidString
    private(set) var term: String = ""
    
    init (term: String) {
        self.term = term
    }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pankaj Kumawat

79275184

Date: 2024-12-12 12:56:51
Score: 1.5
Natty:
Report link

{"/n"} <--- for new line

{" "} <--- for space

for example

<Text>Hello my name is{" "} John</Text> <--- for spacing

<Text>Hello my name is {"/n"} John</Text> <--- for new line

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

79275168

Date: 2024-12-12 12:51:50
Score: 3
Natty:
Report link

From a comment by Turing85:

Looks like yum was replaced with microdnf

This does work for me.

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

79275167

Date: 2024-12-12 12:51:49
Score: 4.5
Natty:
Report link

If you need the controller immediately use Get.put() instead of Get.lazyPut().

like Get.lazyPut(() => ProductController()); into Get.put(ProductController());

if still getting same issue than edit question and add some code so it's easy to understand you problem

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting same issue
  • Low reputation (1):
Posted by: Nandini

79275164

Date: 2024-12-12 12:50:49
Score: 1
Natty:
Report link

Simplest way to make M into a P:

ch = 'M'
 
# Using chr()+ord()
# prints P
x = chr(ord(ch) + 3)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Orwa Ogwari

79275154

Date: 2024-12-12 12:48:49
Score: 2.5
Natty:
Report link

I accidentally deleted @main from

@main
struct MyApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @main
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user1801745

79275151

Date: 2024-12-12 12:46:48
Score: 1.5
Natty:
Report link

I have realized that I had to use (in my case) the "squash commits". There's a bot that after each merged PR deletes the original branch, and add it's own commit, with a different hash. Using those on the cherry worked fine. Thanks for the comments.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: pmiranda

79275147

Date: 2024-12-12 12:45:48
Score: 2.5
Natty:
Report link

my answer from Luciana Jungbluth, for dr jeans class P8, presenting with Luna Romero, Avai Rios, Angie Pajaria. Height 5’3, Height 5’4, Height 5’2

My dad helped by helping me write the 1st paragraph.

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

79275144

Date: 2024-12-12 12:45:48
Score: 1.5
Natty:
Report link

Thanks to this StackOverflow answer:

Apache Error Log - an unknown filter was not added: includes

It led me to the Settings dialog, Server tab, where I had to check "include_module" and restart Apache. Once that was done, SSI worked!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): StackOverflow
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: Scott C Wilson

79275142

Date: 2024-12-12 12:44:47
Score: 2.5
Natty:
Report link

I forgot there's a custom error handler in place and it needs to be configured to echo the errors to the browser. I knew I was forgetting something. So many ways to do things in PHP.

Thanks @IMSoP

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

79275137

Date: 2024-12-12 12:42:47
Score: 1
Natty:
Report link

line 6, in while cap.isOpened(): NameError: name 'cap' is not defined. Did you mean: 'map'?

Should be:

cap = cv2.VideoCapture(0) # <==  Add this

while cap.isOpened():
    success, image = cap.read()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: toyota Supra

79275136

Date: 2024-12-12 12:41:47
Score: 1
Natty:
Report link

I solved the problem by downgrading joblib to version 1.3.0. It was mentioned in the documentation of scikit-learn that this version is the minimum requirement. It seems that Memory was removed from the recent version.

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

79275120

Date: 2024-12-12 12:37:46
Score: 1.5
Natty:
Report link

if (type === "insta") { const instaMessage = Check this out: ${share_url}; const encodedMessage = encodeURIComponent(instaMessage); const instagramUrl = https://www.instagram.com/create/story/?caption=${encodedMessage}; window.open(instagramUrl, "Instagram", newLocal); } i want to share_url post in instragram

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Subham Shaw

79275107

Date: 2024-12-12 12:32:45
Score: 2
Natty:
Report link

I would like to put mine in AWS Secrets manager, but by using this IAM below:

Access key ID Secret access key AKIA4VDBMA2N2RLXZ5GV XNOB4D4msi8H+hGvcWGMw2vO3bkWtx5OQR0s5uOw

You may use this key in your CDK to complete

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

79275094

Date: 2024-12-12 12:29:44
Score: 1
Natty:
Report link

clients.conf uncommented

#  You can now specify one secret for a network of clients.
#  When a client request comes in, the BEST match is chosen.
#  i.e. The entry from the smallest possible network.
#
#client private-network-1 {
#  ipaddr = 10.1.1.0/24
#  secret = sharedSecret
#}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Роман Дузеев

79275093

Date: 2024-12-12 12:29:44
Score: 3
Natty:
Report link

Found the issue !

My Postman HTTP version in the settings was set to Auto, which I guess uses HTTP 2.

When I hard select HTTP 2 it indeed comes back without the port, but when I put it on HTTP 1.x the port is included... Go figure...

enter image description here

enter image description here

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

79275088

Date: 2024-12-12 12:28:44
Score: 1
Natty:
Report link

I faced the same problem and found a solution. You don´t need to have a child. You can use association to. The trick is that the association must be in bouth cds. I want an association ZI_B in my view ZI_A: ..association [0..] to ZI_MLDB_B as... B and then you have to also in the view ZI_B: association [0..] to ZI_MLDB_A as A...

of course ZI_B must be exposed

Jarda

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jarda Hrbacek

79275084

Date: 2024-12-12 12:26:43
Score: 3
Natty:
Report link

Maybe your filter cannot find any result. Use mongo compass to connect to your database and check your query is giving the results properly

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

79275082

Date: 2024-12-12 12:24:43
Score: 2
Natty:
Report link

Just update the whatsapp-web.js library to this version: 1.26.1-alpha.3

npm install [email protected]

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

79275078

Date: 2024-12-12 12:23:42
Score: 4
Natty:
Report link

are you sure, that mesa is already installed in your current python environment? Try pip list in your console.

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

79275075

Date: 2024-12-12 12:23:42
Score: 1
Natty:
Report link
const formData = reactive({foo: 'bar'});

function reset() {
  for (const key in formData) {
    delete formData[key];
  }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alper Aydingül

79275070

Date: 2024-12-12 12:20:41
Score: 1.5
Natty:
Report link

Я попробовал подключить С++ 20 и прописывал ту команду но ошибки все равно имеюсться , по началу С++ 17 мне оставило немного ошибок а С++ 20 всего 1 и это (( Ошибка C4996 'getenv': This function or variable may be unsafe. Consider using _dupenv_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. Server4000 C:\vcpkg-master\vcpkg-master\installed\x64-windows\include\uwebsockets\HttpParser.h 51
)) так вот незнаю что теперь делать(

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

79275060

Date: 2024-12-12 12:18:41
Score: 2
Natty:
Report link

If you're looking to involve a cybersecurity company for assistance with detecting and mitigating issues related to system detection (e.g., distinguishing between Windows 10 and 11), here’s how you can approach it:

  1. Reach Out to a Cybersecurity Company Contact a cybersecurity firm: Inform them about your need to detect system versions in browsers like Firefox, and ask if they can provide a tailored solution to address potential security concerns or improve your detection methods. You might need their help for: Implementing security measures for preventing unauthorized access or tampering with browser detection scripts. Ensuring that your browser or web app interacts securely with systems that can potentially reveal OS details.
  2. What to Ask the Cybersecurity Company Can they help identify sophisticated methods to detect OS versions or any related vulnerabilities in browsers? Is there any risk related to collecting system information such as OS versions, and what safeguards would need to be in place? Help with advanced browser fingerprinting: Explore whether they can assist in creating more robust methods of identifying user environments, using advanced techniques like machine learning or server-side logic.
  3. Security Concerns Discuss the privacy risks and data protection laws (e.g., GDPR) related to gathering OS information. A cybersecurity firm will help you align with best practices while gathering any form of system or user details. For OS detection: They may help design a secure and ethical strategy for your system, ensuring minimal risks of security breaches or unauthorized data access. Would you like help drafting a message to a cybersecurity company for this? Let me know, and I can assist with that!
Reasons:
  • Blacklisted phrase (1): Is there any
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Shobhita Ratheesh

79275058

Date: 2024-12-12 12:18:41
Score: 1
Natty:
Report link

For those that may be interested, I wrote my own implementation that does not rely on scipy.spatial at all (although scipy.optimize is used to compute the Chebyshev center if requested), which is both faster and provides extra functionalities. However, it only supports 2D space. The module is publicly available on Github.

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: duburcqa

79275056

Date: 2024-12-12 12:18:41
Score: 1
Natty:
Report link
df$date <- dmy(df$date)

Filter data for 1 week windows;

filtered_data <- df %>%
  group_by(Hospital_number) %>%
  filter(row_number(date) == 1 | 
  date - lag(date) > days(7)) %>%
  ungroup()

for week 2, change "lag(date) > days(14)

Similarly for month based.

Let me know if this solves the problem.

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

79275039

Date: 2024-12-12 12:11:39
Score: 2.5
Natty:
Report link

CLI Just add grapheme data like pyinstaller -F "Hello World.py" --collect-all grapheme

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

79275038

Date: 2024-12-12 12:11:39
Score: 2
Natty:
Report link

Don't worry, Trust me this is the perfect solution(with older version support you will get Java Projects Option)

100% working

step 1: click on Extension tab from where you install extensions.

step 2: install "Extension Pack for Java". if already installed go for next step.

step 3: Inside the "Extension Pack for Java", there is another extension come with this which is "Project Manager for Java". which is automatically installed. just click on setting icon beside it. and click on "install specific version"

step 4: choose second or third version which is stable. install it. after that restart extension kind of option will come. click on that.

step 5: reload the project or restart the VSCODE IDE.

step 6: Like this comment.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rakesh Gudekar

79275037

Date: 2024-12-12 12:11:39
Score: 3
Natty:
Report link

I couldn't choose woxxom's answer as the answer but removing the await fixed the problem and even when the service worker goes to sleep it wakes back up when it receives a message. Here's some more information in the chrome extension docs on the lifecycle of service workers.

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

79275032

Date: 2024-12-12 12:08:37
Score: 11 🚩
Natty: 6.5
Report link

I have the same problem, have you solved it? I've been trying a lot lately.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dean Oswald

79275029

Date: 2024-12-12 12:08:37
Score: 0.5
Natty:
Report link

You can try this formula:

=LET(x; SORT(FILTER(A2:F7;C2:C7 <> "No Progress");3;TRUE); y; BYROW(CHOOSECOLS(x;3); LAMBDA(r;SPLIT(r;" "))); CHOOSECOLS(CHOOSEROWS(SORT(HSTACK(x;y);8;FALSE);{1;2;3});{1;3}))

Sample Output:

Output

Reference:

Filter

Sort

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alma_Matters

79275028

Date: 2024-12-12 12:07:36
Score: 1.5
Natty:
Report link
UIScrollView.appearance().bounces = false

Use this in QuizView on onAppear(perform: {}) method to stop bounces, maybe it's work for you.

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

79275020

Date: 2024-12-12 12:06:36
Score: 2
Natty:
Report link

So after struggling for 5 days and banging my head on the table, I finally solved the issue by this Release APK Not Updating With JavaScript Code

It was related to cache, the build was created from the old code and wasn't taking effect of the latest changes.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Wahas Ali Mughal

79275019

Date: 2024-12-12 12:05:36
Score: 2
Natty:
Report link

The requirements of your project will determine how much test data you generate. Don't create too much data to keep it manageable, but make sure you have enough to cover all test situations, including edge cases. For accurate testing, concentrate on pertinent and actual facts. By examining your requirements and offering professional advice, Qualitest can assist you in determining the appropriate quantity of test data, guaranteeing successful and efficient test data management for your program.

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

79275005

Date: 2024-12-12 12:02:34
Score: 6 🚩
Natty: 5
Report link

how did you get access to:


i did all the verification, and i have the advanced access but in the "Permissions and functions" i cant really see those...

Reasons:
  • RegEx Blacklisted phrase (3): did you get
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): how did you
  • Low reputation (1):
Posted by: gdonnoh

79274999

Date: 2024-12-12 12:00:33
Score: 3.5
Natty:
Report link

The error message seems clear: master clear (MCLR, pin 1) needs to be connected to 5V.

If you want to keep MCLR disconnected, consult PIC's datasheet to see how to configure this option in FUSE bits. Additionally, confirm settings for using the internal crystal also in datasheet (I think high speed (HS) option is only for external crystal).

Proteus provides supply voltage to PIC implicitly. But @Mike is is correct about inserting a resistor between LED and the pin chosen to drive it.

Saludos!

Reasons:
  • Blacklisted phrase (1.5): Saludos
  • No code block (0.5):
  • User mentioned (1): @Mike
  • Low reputation (0.5):
Posted by: Nelson

79274990

Date: 2024-12-12 11:56:32
Score: 2.5
Natty:
Report link

To install superset: create a virtual environment. Do pip install apache-superset. Now pull the git repository CD to superset. Now run db upgrade command.

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

79274983

Date: 2024-12-12 11:51:32
Score: 1.5
Natty:
Report link

As of v3.0 Wiremock supports path templating with urlPathTemplate

https://wiremock.org/docs/request-matching/#path-templates

{
      "request": {
        "urlPathTemplate": "/contacts/{contactId}/addresses/{addressId}"
        "method" : "GET",
    
      },
      "response" : {
        "status" : 200
      }
    }

You can then reference it directly in the response template. Example: {{request.path.contactId}}

https://wiremock.org/docs/response-templating/#the-request-model

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

79274982

Date: 2024-12-12 11:50:31
Score: 1.5
Natty:
Report link

Another thing you can check directly in Log Analytics: Is the function really never invoked, or do the runs just not finish? In my case, the trigger itself called the function as expected, but the function somehow crashed during its run, without an error. At one point, the logs just stop. Those invocations didn't show at all in the invocations menu. On checking the service plan, I found that the resource was probably too memory-constrained, so I switched to a more expensive service plan.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Florian Wicher

79274972

Date: 2024-12-12 11:47:30
Score: 3.5
Natty:
Report link

0

I need to develop a simple webapp with a login system, users and data saved to each one of those users. Data bases, only HTML, JavaScrip and JSON utilised

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: new developer

79274969

Date: 2024-12-12 11:45:30
Score: 3.5
Natty:
Report link

i use this code but it return Error fetching window.TaskRouterWorker: TypeError: c.default.create is not a function this error give me this error solution

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

79274966

Date: 2024-12-12 11:45:30
Score: 1
Natty:
Report link

Well I am having the same problem , which I got resolved when I checked my .gitconfig file

I accidentally added a few lines in that file, so removing those works for me If you are getting same issue delete the file and folder

Then uninstall and again install (or remove if there is anything extra in your .gitconfig file)

This should work!

Reasons:
  • Whitelisted phrase (-2): This should work
  • Whitelisted phrase (-1): works for me
  • No code block (0.5):
  • Me too answer (2.5): I am having the same problem
  • Me too answer (0): getting same issue
  • Low reputation (1):
Posted by: Rachit Saxena

79274962

Date: 2024-12-12 11:44:29
Score: 6.5 🚩
Natty: 5
Report link

If i need add head variable into the headMapper, how can i do it? 【HttpRequestExecutingMessageHandler】 don't have the getHeaderMap(), when i setHeaderMap(),it doesn't work.enter image description here

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): can i do
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: WuJun

79274960

Date: 2024-12-12 11:43:28
Score: 1
Natty:
Report link

Try to check the receipt validation in sandbox environment rather than storkit.

(Make sure for in-App purchases your App should have signed App agreement, then only you can fetch products in sanbox and Production environment)

Docs for your reference

Paid Agreement for in-App purchases https://developer.apple.com/help/app-store-connect/manage-agreements/sign-and-update-agreements/

sandbox Testing

https://developer.apple.com/documentation/storekit/testing-in-app-purchases-with-sandbox

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

79274958

Date: 2024-12-12 11:43:28
Score: 5.5
Natty:
Report link

Can't you just add a @MainActor annotation to the block?

.onPreferenceChange(HeightKey.self) { @MainActor height in
  self.height = height
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @MainActor
  • Starts with a question (0.5): Can't you
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Miguel Cabeça