79439163

Date: 2025-02-14 11:15:58
Score: 1.5
Natty:
Report link

I had to go to File | Project Structure... | Modules and hit the + to add my current project as a module. After this the I could successfully run the code.

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

79439156

Date: 2025-02-14 11:12:57
Score: 0.5
Natty:
Report link

Rather late than never.

I was getting the same error. This error can be misleading, In my case I am using postgres, so in my docker-compose.yml file I added an extra letter S on the image: postgress. So when docker tried to pull this image it could not find it, it resulted in the "volume sharing" error but as we can see the issue was the spelling postgress, this must be postgres (single letter S at the end)

Don't just look at the Error List window on visual studio, also inspect the Outout window, it might contain the actual cause of the volume sharing error, see below:

Erro in Output Window

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

79439155

Date: 2025-02-14 11:11:57
Score: 0.5
Natty:
Report link

from: https://wordpress.org/support/topic/moving-sold-items-to-bottom-of-page-automatically/

class iWC_Orderby_Stock_Status {
    public function __construct() {
        if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
            add_filter('posts_clauses', array($this, 'order_by_stock_status'), 2000);
        }
    }

    public function order_by_stock_status($args) {
        global $wpdb;

        if (is_woocommerce() && (is_shop() || is_product_category() || is_product_tag())) {
            // Include posts with '_stock_status' meta key in the SQL query
            $args['join'] .= " LEFT JOIN {$wpdb->postmeta} istockstatus ON {$wpdb->posts}.ID = istockstatus.post_id AND istockstatus.meta_key = '_stock_status'";

            // Order by '_stock_status' in ascending order ('instock' comes before 'outofstock')
            $args['orderby'] = "istockstatus.meta_value ASC, " . $args['orderby'];
        }

        return $args;
    }
}

new iWC_Orderby_Stock_Status;
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: glocsw

79439153

Date: 2025-02-14 11:09:57
Score: 0.5
Natty:
Report link

For auto copy and replace file, add this to PostBuild command.

In my case is net8.0

xcopy $(OutDir)\runtimes\win\lib\net8.0\System.Management.dll $(OutDir)\System.Management.dll /y
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tqk2811

79439152

Date: 2025-02-14 11:09:57
Score: 0.5
Natty:
Report link

When working with autogen.ChatResult, the response object contains multiple attributes, and the actual chat history is stored in a dictionary format. To extract and display relevant information, follow these steps:

You need to access the dict attribute to convert the response into a dictionary and then extract the chat history.

def extract_chat_response(response):

# Convert response to dictionary
response_dict = response.__dict__

# Extract chat history
chat_history = response_dict.get("output", {}).get("chat_history", [])

# Display the assistant's response
if len(chat_history) > 1:
    st.chat_message("assistant").write(chat_history[1]["content"])

# Iterate through chat history and display responses until "TERMINATE" is found
for i in range(2, len(chat_history)):
    if "TERMINATE" not in chat_history[i]["content"]:
        st.chat_message("assistant").write(chat_history[i]["content"])
    else:
        break  # Stop iterating if "TERMINATE" is found
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Thomas James

79439145

Date: 2025-02-14 11:04:55
Score: 4.5
Natty:
Report link

Use @csrf token in after every tag start

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @csrf
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mahmud Software

79439142

Date: 2025-02-14 11:02:52
Score: 7 🚩
Natty:
Report link

have you installed this feature? https://camel.apache.org/blog/2025/01/camel-karaf-release-4.9.0/

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

79439133

Date: 2025-02-14 10:59:51
Score: 4.5
Natty:
Report link

Ask SADAKO today at CyberValentime$$! See http://CzeKaj.com.pl/FileMON/

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

79439131

Date: 2025-02-14 10:58:48
Score: 7.5 🚩
Natty: 5
Report link

Example given by Siddharth Rout is marvelous. Can someone tell how to use the same coding for the same result on an Excel Sheet instead of User Form?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can someone tell how
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Al Momin Ali Danyal

79439128

Date: 2025-02-14 10:57:48
Score: 1.5
Natty:
Report link

So, after trying out a few things I actually ended up with a solution to my specific problem. As pointed out by @JRR, the pipeline argument does not work with LidR LAS objects as specify it directly in the function but it just does not work. However, you can still use different transformation pipelines, they just need to be the default option with st_transform. So when calling sf::st_transform(las, crs = 25832), it uses the method that is at the first place when looking at the options through options <- sf_proj_pipelines(source_crs = "EPSG:31468", target_crs = "EPSG:25832"). In my case it is a transformation that makes use of an NTv2 file, which can only be accessed through the connection to the network with sf_proj_network(enable = T), however I tested a few times and the only way I could use it with the Lascatalog processing engine was to actually put the file itself in the directory of st_proj_search_paths().

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

79439126

Date: 2025-02-14 10:57:47
Score: 5.5
Natty: 4.5
Report link

I'm about to go on the same journey in the next months... I wonder how you solution looks after all this years... did you face any limitations with your Design? did it solve the problems you were facing? any learnings you could share? Best regards, Danilo!

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Danilo Dutra

79439120

Date: 2025-02-14 10:56:47
Score: 1
Natty:
Report link

I used editable and completed options of matStep but they didn't work for me, so I've decided to simply use ngIf

  <mat-step *ngIf="myCondition === true">
  </mat-step>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hamid

79439118

Date: 2025-02-14 10:55:47
Score: 3.5
Natty:
Report link

I put a delay until the element with that name exists. and used FindElements instead of FindElement.

But now I am getting below error: System.NullReferenceException: Object reference not set to an instance of an object.

but same works fine when I run the code locally in my machine

Reasons:
  • RegEx Blacklisted phrase (1): I am getting below error
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Omkar Patil

79439114

Date: 2025-02-14 10:53:46
Score: 2.5
Natty:
Report link

Please also update the Java version to the latest JVM version so that the release build is generated with the latest package, reducing the chances of a crash in any flutter versions.

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

79439109

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

I was wondering the same and I see that it is an old thread but I'll still reply if anyone needs help regarding this.

I was setting up Google Calendar API for myself as well (Obsidian integrations and stuff) and wondered the same thing. If you'd like to add & use Sensitive Scopes in your 'project' without Google's approval (or setting up websites etc.). Simply:

  1. Head to Google Auth Platform -> Audience -> Set it to Testing.
  2. Under 'Test Users' add your own Google email.

Also, after setting this up, I believe you can use https://developers.google.com/oauthplayground/ as well but tokens need to be refreshed (can be easily set-up by using your own Oauth credentials (⚙️ Gear on the top-right corner).

It worked like this for me with Google Calendar's sensitive scopes.

Reasons:
  • Blacklisted phrase (2): was wondering
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Thaddeus

79439098

Date: 2025-02-14 10:49:45
Score: 1
Natty:
Report link

Bars is a built in function in mql5 that returns an integer. So you should use Bars() for instance you could use:

if( Bars(_Symbol,PERIOD_CURRENT) < 3 )

if you want to define a variable with its name you could define it by lower case for instance :

int bars ;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahdi Ahmadifard

79439097

Date: 2025-02-14 10:49:45
Score: 1
Natty:
Report link

You can get the value writing %tSheetObject['results']['user']%. If it doesn't work, please check if tSheetObject is created correctly. It should be something like {'foo':'aaa', 'results':{'bar': 'bbb', 'user': 'John'}}.

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

79439076

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

Since PHP 8.4 there are abstract properties now: https://www.php.net/manual/en/language.oop5.abstract.php

As of PHP 8.4, an abstract class may declare an abstract property, either public or protected. A protected abstract property may be satisfied by a property that is readable/writeable from either protected or public scope.
An abstract property may be satisfied either by a standard property or by a property with defined hooks, corresponding to the required operation.

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

79439073

Date: 2025-02-14 10:39:43
Score: 1.5
Natty:
Report link

there was an issue some time ago (dont know if still applies, but worth trying) where they discovered puppeteer defaults to 96dpi instead of 72dpi when converting from px to inches. the easy solution at that time was to scale the px dimensions previous to 'print' the page. here you can read the issue: https://github.com/puppeteer/puppeteer/issues/3357

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

79439072

Date: 2025-02-14 10:38:43
Score: 1.5
Natty:
Report link

There's even better solution to this now:

redemption { association :redemption, units: sub }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user1428567

79439060

Date: 2025-02-14 10:35:42
Score: 1
Natty:
Report link

You can create Azure DevOps Pull requests using Azure CLI. I use this in the terminal window of vs code and documented in this blog post https://www.blueboxes.co.uk/creating-command-line-azure-devops-pull-requests

There is also an Azure Repos Extension for Visual Studio Code that provides a UI though I have not used it.

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: John

79439053

Date: 2025-02-14 10:32:41
Score: 3.5
Natty:
Report link

youre stupid and im not i can do this easy virgin

-80 year program

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: 80 year programmer

79439043

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

It should be noted though that many top Coq experts recommend to not use dependent vectors. You will likely get along quite a while with a lot of effort but most likely you will have to remove all usage of Vector.t from your project before the end of it. You will save a lot of time if you do this right away. See e.g. this post by Adam Chlipala (author of http://adam.chlipala.net/cpdt/):

https://sympa.inria.fr/sympa/arc/coq-club/2017-12/msg00087.html

or the discussion here:

https://github.com/coq/stdlib/issues/54

The better approach is to use plain lists and proofs that the lists have the size you want.

Reasons:
  • No code block (0.5):
Posted by: M Soegtrop

79439024

Date: 2025-02-14 10:20:39
Score: 2
Natty:
Report link

Not sure I understand your question,

does (a),(b) and (c) protect against Y errors or do I have to implement something to protect Y errors?

what are (a), (b) and (c) here?

Using the type Y error correction circuit as a basis, design and implement a circuit to correct generic errors of a qubit.

Is this what your code is trying to achieve? Where are you getting the ``type Y error correction circuit'' from (e.g. a reference would be helpful)

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

79439023

Date: 2025-02-14 10:20:39
Score: 3.5
Natty:
Report link

/dev is reserved somehow by docker itself. That's why I can't use it as my workdir. I hope it is really so and I'm not misunderstanding something.

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

79439006

Date: 2025-02-14 10:10:36
Score: 1.5
Natty:
Report link
  1. Delivery has failed to these recipients or groups: ™️monzturr ™️Eminem ([email protected]) The recipient's mailbox is full and can't accept messages now. Please try resending your message later, or contact the recipient
    directly.

       Diagnostic information for administrators:
       Generating server: LV8PR16MB5984.namprd16.prod.outlook.com
       [email protected]    Remote server returned '554 5.2.2 mailbox full; STOREDRV.Deliver.Exception:QuotaExceededException.MapiExceptionShutoffQuotaExceeded;
    

    Failed to process message due to a permanent exception with message [BeginDiagnosticData]The process failed to get the correct
    properties. 1.84300:01000000, 1.84300:01000000, 1.84300:01000000, 1.84300:02000000, 1.84300:9F000000, 1.84300:A1000000, 1.84300:01000000, 1.84300:08000000, 0.117068:08000000, 1.79180:02000000, 1.79180:9F000000, 1.79180:FA000000, 0.73100:342E6E61, 5.95292:67000000446F526F70730000, 8.111356:9552F9FE86593ECC1F1F572B2F8F6BAC1F1F572B, 0.38698:A6536B31, 1.41134:86000000, 1.41134:86000000, 1.41134:86000000, 1.41134:86000000, 7.36354:0100000000000121A6536B31, 1.41134:86000000, 7.36354:01000000000001218F5F19C9, 0.34102:A6536B31, 5.29818:0000000030303036303030302D383866622D663832392D303030302D303030303030303030303030002D3662, 5.55446:00000000333A30002D616435, 7.29828:5DAB00C00300000035323234, 7.29832:000000C00300000000000000, 4.45884:DD040000, 4.29880:DD040000, 4.59420:DD040000, 7.40840:0100000000000121A4000000, 8.45434:00000600FB8829F8000000000000000000000000, 1.46798:04000000, 5.10786:0000000031352E32302E383434352E3031323A534A32505231364D42353931343A62356435653430312D366265322D343032392D616435392D6164353965326566386165383A3135353232343A2E4E455420382E302E313200010480, 7.51330:F4A8C8F6DB4CDD080F010480, 0.39570:00000000, 1.64146:02000000, 1.33010:02000000, 2.54258:00000000, 0.58802:07000000, 1.33010:02000000, 2.54258:00000000, 0.58802:00000000, 1.64146:9F000000, 1.33010:9F000000, 2.54258:DD040000, 1.33010:9F000000, 2.54258:DD040000, 0.79500:12000000, 1.79180:A1000000, 1.79180:08000000, 0.100684:13000000, 4.70028:DD040000, 1.52466:01000000, 0.60402:59000000, 1.52466:01000000[EndDiagnosticData] [Stage: CreateMessage]' Original message headers: Received: from SA1P222CA0182.NAMP222.PROD.OUTLOOK.COM (2603:10b6:806:3c4::20) by LV8PR16MB5984.namprd16.prod.outlook.com (2603:10b6:408:1f0::12) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.8445.13; Fri, 14 Feb 2025 09:42:56 +0000 Received: from SA2PEPF00003F61.namprd04.prod.outlook.com (2603:10b6:806:3c4:cafe::d3) by SA1P222CA0182.outlook.office365.com (2603:10b6:806:3c4::20) with Microsoft SMTP Server (version=TLS1_3, cipher=TLS_AES_256_GCM_SHA384) id 15.20.8445.16 via Frontend Transport; Fri, 14 Feb 2025 09:42:56 +0000 Authentication-Results: spf=pass (sender IP is 209.85.218.53) smtp.mailfrom=gmail.com; dkim=pass (signature was verified) header.d=gmail.com;dmarc=pass action=none header.from=gmail.com;compauth=pass reason=100 Received-SPF: Pass (protection.outlook.com: domain of gmail.com designates 209.85.218.53 as permitted sender) receiver=protection.outlook.com; client-ip=209.85.218.53; helo=mail-ej1-f53.google.com; pr=C Received: from mail-ej1-f53.google.com (209.85.218.53) by SA2PEPF00003F61.mail.protection.outlook.com (10.167.248.36) with Microsoft SMTP Server (version=TLS1_3, cipher=TLS_AES_256_GCM_SHA384) id 15.20.8445.10 via Frontend Transport; Fri, 14 Feb 2025 09:42:55 +0000 X-IncomingTopHeaderMarker: OriginalChecksum:7BC473A9EAFB2B9B44705D020346B2967B055A1E1F1D16E90927EEA2689EFDCB;UpperCasedChecksum:20924DBCC05BB381E545CB0555CD284675EFBAF70DE5B51500B20AB8759DF812;SizeAsReceived:2766;Count:15 Received: by mail-ej1-f53.google.com with SMTP id a640c23a62f3a-ab7ca64da5dso350870566b.0 for [email protected]; Fri, 14 Feb 2025 01:42:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1739526175; x=1740130975; darn=hotmail.com; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=PqcSZ3KniwUUwv4pfNQV0gEot55+/E1LtHNzDrpEUFo=; b=BHLIhqBNTj+RzQB4Rt/qEWTz5kKaC4vA/vipA0gXHnrOXqclPJgLvxtbzSo1tHIiiu OO0e4UoQbOzbzoMLnLMmd0fb1dV4PKY2CgH/hiMQbbwFH/fLSE0Lr/uE/zifqnqABrRX zLuBq4O7J+PWzlS6jhOCbH02SDEW4gHbwk9Eo5f4tWjCs5+yiZTk/S7ieO6E5LZqvTuh t4FiswstkGsSaI+oVHw1NMyDO6ySuBgtf//BwSvubwlguMmllLMJCNiuvuRmG9EbUKAs yg/47khgujKR8SYQOmnHqMEBJKi6SRZkQ/llKns3YPrUxEvvJdI2Zwf/f14SxRkk9UkF kHYA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1739526175; x=1740130975; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=PqcSZ3KniwUUwv4pfNQV0gEot55+/E1LtHNzDrpEUFo=; b=noS1PghQFz01Qi1vyD0EIF25/6SM/bq/YwLV5oopRRfx9myV9TVexeb6PLD4IsuObC huSfP6GZ0O34ZmiCgwCF39Cr/JSx2NR8F54VbNtprrdJqsPlJDeEC9kOWxNZrXcp9NBt ZpDxeMA4VqbsnmULL8vvjYU7Vss3N0E5QHushuRcgH8xK4B8lgDCc5eRb//MaVvnKzPA h43zgceroSdFjRz7Saz73Y3AnJFm33DBos6WivTA1dCLH2KDMO/uMmZziHOdCWgyG3KA rfrZM8zF6FnrS7zB2pvZlmLPyHN60wyGjmzG+pxFRRUVa0AgaOcFJ3cxqLN7w9xXYvA/ oFwQ== X-Gm-Message-State: AOJu0Yybwrp0iDmAl0Kee6XTwENWeJDiw5DV/DGQB5tHACevnm7tEdSh

    SH6Prgzk1BrLdjLSRci5c4eARnqteHVoIaPBurJU2bUlOhyd70Ayqx8HWAJzuKvh6M+LAg5KN87
    N0+JYiiDHn/gHjuDkBOF2161mtK2p0ztb    X-Gm-Gg: ASbGncvw3GrwYzr2hwj3vmF+pNaB0VlvPT50v8XUkMFzKANTS5qmb8TOoVu1uqCp17o
    
    ERx4BL5S25VqHMfsL9qBv3PhbI7Eu3kbc/g5mpMxd0BmWBqWp9keVfvC1TzHO/xW2oxRS/rwOuX
    D7oAIBzSVyf5KlWM6R8H45J8Jt/dSERBs=    X-Google-Smtp-Source: AGHT+IGTwnw7G9uVmaHRWrobt/1CKLaKZltshilbG2WJzHfvdKz1wmovJwy5YPkZ+7SS41bPJ5MWdOgdVkLAl1Tw33c=
    

    X-Received: by 2002:a17:907:60d1:b0:ab6:d4ce:568c with SMTP id a640c23a62f3a-aba51480fe2mr711613066b.13.1739526175179; Fri, 14 Feb 2025 01:42:55 -0800 (PST) MIME-Version: 1.0 From: Marshall Mathers [email protected] Date: Fri, 14 Feb 2025 01:42:43 -0800 X-Gm-Features: AWEUYZkkHYtV_VBzf95-bCoQ_sS_Tjw5EL5blbMXgYThty-mQ5uE5wkIRrZgBTc
    Message-ID: CABXxOXqaHVCixD+xDtaKDy2iNGYgkwcpHcO-pf1F+pAVMs+-EQ@mail.gmail.com Subject: =?UTF-8?B?wq5b4oK/IDExNCwyNjcuMjg3MjUwXcKu?= To: =?UTF-8?B?4oSi77iPbW9uenR1cnIg4oSi77iPRW1pbmVt?= [email protected] Content-Type: multipart/alternative; boundary="000000000000bfcbd4062e16ffaa"
    X-IncomingHeaderCount: 15 Return-Path: [email protected]
    X-EOPAttributedMessage: 0 X-EOPTenantAttributedMessage: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa:0 X-MS-PublicTrafficType: Email X-MS-TrafficTypeDiagnostic: SA2PEPF00003F61:EE_|LV8PR16MB5984:EE_ X-MS-UserLastLogonTime: 12/9/2020 12:50:26 AM X-MS-Office365-Filtering-Correlation-Id: b883287a-cf60-4e5a-527f-08dd4cdbf5b1 X-MS-Exchange-EOPDirect: true X-Sender-IP: 209.85.218.53 X-SID-PRA: [email protected] X-SID-Result: PASS
    X-Microsoft-Antispam:

    BCL:0;ARA:1444111002|461199028|970799057|2100799027|9020799016|21080799006|1380799030|1360799030|1370799030|440099028|3412199025|14115499003;
    

    X-Microsoft-Antispam-Message-Info:

    =?us-ascii?Q?+uRF3rKB1wnhklmz5sV/FclOJ49dZRC9+gPA4EmfUXXI64vMQ2a0nd4hOvru?=
    =?us-ascii?Q?v5uCB9dAyscyNyM64V28O8ovxc1nlCrpQjyu20LgHRbG5LEjrkC9OusTDW1j?=
    =?us-ascii?Q?M12KS7qe6oh6KaAgZ20+zvOkuqxHgNn/klrpTCDaCs7VDw4uiifT9AcK33iC?=
    =?us-ascii?Q?yWEUQ2D1xo92WhX1XJJPQWmhetECazRTvm8+afrM2UHp2wm3Q7gdW/mhhyAx?=
    =?us-ascii?Q?oOzJKtNLjrRCQ4OOzOXtSCzdZbCvJR+LIOOFu2gavIMr91gF01ufSydMjm8E?=
    =?us-ascii?Q?rbINABFRl+0yo/C0gUBESRTeOZrFh5xL5LVdKFor+w4iUq81ugG0K8VLszIp?=
    =?us-ascii?Q?mPyWa9VoqqW4+iQ6pFvjlC1m8FPBMoMwmqn6mR1C6+mUzPzM+Rd3t/+rDcsA?=
    =?us-ascii?Q?oHhQZHD79tLfR5id7Sqs5Tq742+/j1rIe+pqKZJsSj7HY2IrsYMaOykn/ZOz?=
    =?us-ascii?Q?oslO2IQMsv4JH9ADCT1f2fMUhk1OxuMKi+js3PzbYSMtw/Otnt0iUFd7xkQx?=
    =?us-ascii?Q?nRfoOlb2DmxGvPHsDNokZ0CQcK2PciOngECTxowAP62csUP48nRJ7TyWfuGc?=
    =?us-ascii?Q?S8S2geuBFCIKq63K2Bvn8wyC2JM1ZtYmsRXLJTGafe9rpo8sKWbZIoEnrKSX?=
    =?us-ascii?Q?wuA8Gd1M3PXKsha+Zdw7SUUzbI7vt3ekcnHRJ2iIKu7us5JlKUcSMu6rJ2Vp?=
    =?us-ascii?Q?XEs4iJeXwNr3rpy0FH944fa9GnWGTZcjp785naOlrGkNR75qhG5ij9zzKf+y?=
    =?us-ascii?Q?K56Ks28kaMvAv1T5FT7u2fyIUQCGXmw4lGH4uE0BxUguQCTlNufcERC3TZIk?=
    =?us-ascii?Q?36wU6GVcNkWaD4C2e78X8eoXy/LmJ+ZQILA51xoYEjhPJm2RTarhDijtzWwt?=
    =?us-ascii?Q?uh5g4po3tCHt8VvRffT4+CXR5wLKY0PEdq37QDuD8pqemoDMdiu4So2CV9F5?=
    =?us-ascii?Q?oTNfWe0QUd1b54oABh3ETexFk5ZdZ9oRqJjepDcybRI1zS4hD+nQWvIK6myt?=
    =?us-ascii?Q?EfDx6rE9b0qlQiszzJmPq2uFWwBmNVpkXnfOvp2INWHsfxCh80g14bRM7XPY?=
    =?us-ascii?Q?0Ls2Sasj65FQpvDl3a4SrB1C152Cd99C88Rj+lRhdXIYg/P6zv4RDLziJ+bP?=
    =?us-ascii?Q?5SsqwTjAp7+TcogyVvHv8JNppUuGasCABcXPYElb81Iqm4kCGiwN2QT4YKX+?=
    =?us-ascii?Q?5OvO59miGV5hJbHn3RKltFj2aqxllbjCY5IrV8AqJNJe8yIzwbXWp6/pibWU?=
    =?us-ascii?Q?mYSK2vlFPHralzfHfmDtnjOsrlogSRywCLbm77HOt+f9y36+VGO9ZdcxZnEZ?=
    =?us-ascii?Q?v/uobcWm2bJN68p/Vw0w88NlqBgJk1h1tNKHK+F4dytmsyKU+CBY4Xri8mCo?=
    =?us-ascii?Q?f+mCiQVMhNIFMlIPPJoTu6pJ3llDNs0trfV0guQs8A1wcNHH9tN59v2L8w1V?=
    =?us-ascii?Q?7ZeYdvDoR8CHprts8QauhBi5kvqL5m0c1AYM+9R790udiQ6Vu16di//cqYst?=
    =?us-ascii?Q?yVg5Flew2NdZ1ScwYXYfa5ohUkdrTlhzO0+RYnbMghzsWC8ZsyLzbqdqCrIP?=
    =?us-ascii?Q?vhcJkjkZXOvvPgj4BPPh9HeEjprvhVenzFcOP2IVh94H6ae0+p9Zsib2Ffgn?=
    =?us-ascii?Q?V1MGYKhrEWGdMD079Ojhzqk=3D?=    X-MS-Exchange-CrossTenant-OriginalArrivalTime: 14 Feb 2025
    

    09:42:55.9753 (UTC) X-MS-Exchange-CrossTenant-Network-Message-Id: b883287a-cf60-4e5a-527f-08dd4cdbf5b1
    X-MS-Exchange-CrossTenant-Id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa
    X-MS-Exchange-CrossTenant-AuthSource: SA2PEPF00003F61.namprd04.prod.outlook.com X-MS-Exchange-CrossTenant-AuthAs: Anonymous
    X-MS-Exchange-CrossTenant-FromEntityHeader: Internet
    X-MS-Exchange-CrossTenant-RMS-PersistedConsumerOrg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-Transport-CrossTenantHeadersStamped: LV8PR16MB5984

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): 00000000000
  • Filler text (0): 00000000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000
  • Filler text (0): 000000000000000000000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 000000000000
  • Filler text (0): aaaaaaaaaaaa
  • Filler text (0): aaaaaaaaaaaa
  • Filler text (0): 00000000
  • Filler text (0): 000000000000
  • Low reputation (1):
Posted by: Eminem

79439001

Date: 2025-02-14 10:07:36
Score: 2
Natty:
Report link

i think you should scale down the input shape from 227,227,3 to 32,32,3(because of cifar images shape). Also try reducing the size of kernels from (11,11) to (3,3) and stride to 1. y doing so you are preventing the details from getting missed out.Also you need to reduce th neurons of fc layers from 4096 to 1028.These are the basic steps you can do to get the model work. Even then there are a lot of steps involved to get your model reach decent accuracy.

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

79438996

Date: 2025-02-14 10:07:36
Score: 1.5
Natty:
Report link

If you want to set a time for automatically connecting and disconnecting the charger on an Android device, here are a few possible solutions:

  1. Using a Smart Plug If you want to physically control when your charger supplies power, use a smart plug with a timer feature. You can schedule when the plug turns on or off, controlling the charging period.

  2. Using an Automation App (Tasker / MacroDroid) Apps like Tasker or MacroDroid can automate charging actions, such as sending notifications when charging reaches a certain percentage or even turning off charging if your device supports automation through root access or special permissions.

Tasker Example: Trigger: When the charger is plugged in. Action: Set a timer (e.g., 2 hours). Action after Timer Ends: Disable charging (if root access is available) or send a reminder to unplug.

  1. Using Battery Protection Features (OEM-Specific) Some manufacturers (like Samsung, OnePlus, and Xiaomi) offer battery protection settings:

Adaptive Charging (Pixel, OnePlus, Samsung): Adjusts charging speed and stops at 80-90% to prevent overcharging. Scheduled Charging (Some OEMs): Allows charging at specific times for battery health.

Upgrade Your Electronics with pinekart!

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

79438993

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

The command you are executing to start your tests is using POSIX shell syntax for setting the environment variable PWDEBUG, but you seem to be executing it in a PowerShell.

The PowerShell syntax is a bit different. Try executing the following command instead:

$Env:PWDEBUG = 1; pytest -s test_saucedemo.py

See the question PowerShell: Setting an environment variable for a single command only.

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

79438990

Date: 2025-02-14 10:05:35
Score: 1.5
Natty:
Report link

You don't have a struct node, you have an unnamed struct.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Sergej Christoforov

79438974

Date: 2025-02-14 10:01:34
Score: 4
Natty:
Report link

.environment(._lineHeightMultiple, lineHeightMultiple)

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: medovar

79438967

Date: 2025-02-14 09:58:33
Score: 1.5
Natty:
Report link

Answered in comments: putting entire lambda in parentheses solves the issue.

INSTANTIATE_TEST_SUITE_P(
    instance, suite, cases,
    ([](const testing::TestParamInfo<param>& info) {
        const auto [a, b] = info.param;
        return std::string(a) + "_to_" + std::to_string(b);
    })
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dominik Kaszewski

79438965

Date: 2025-02-14 09:57:33
Score: 2
Natty:
Report link
  1. HDfs is not persistent but azure ADLS is. which means if i will shut down the hdfs i will loose the data because storage and compute is tighltly coupled in hdfs.
  2. in HDFS we can not access data from one cluster to another
  3. data is stored as block in HDFS and data is stored as objects in Azure
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ankur Napa

79438964

Date: 2025-02-14 09:57:33
Score: 1
Natty:
Report link

You can do this by setting up PDO mapping in your EtherCAT config tool (like TwinCAT, Acontis, or whatever master you’re using).

Basically, in your setup:

SubDeviceA → Write output at bit 0 / Read input from bit 8 (datagram 0). SubDeviceB → Same but on datagram 1. You just need to manually assign bit offsets in the process image inside the config tool. Most of the time, you don’t need to mess with the ENI file unless your master doesn’t support bit-level mapping.

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

79438962

Date: 2025-02-14 09:56:33
Score: 2.5
Natty:
Report link

I don't think there is a way to achieve that (I tested on Dbt 1.8). My suggestion is to create an intermediate (replication) model downstream to apply tests.

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

79438956

Date: 2025-02-14 09:54:32
Score: 5
Natty:
Report link

thx guys I already debugging by myself. and I already fixed it

Reasons:
  • Blacklisted phrase (1): thx
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christianus Yanuar

79438953

Date: 2025-02-14 09:52:31
Score: 0.5
Natty:
Report link

Since VS Code 1.97, you can reposition the command palette and quick picks by dragging and dropping. It will remember the position between reloads. The Customize Layout picker also provides some presets.

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

79438950

Date: 2025-02-14 09:51:31
Score: 0.5
Natty:
Report link

On our gitlab instance (currently running GitLab Community Edition v17.5.5) we have a ci pipeline which works quite well setting dynamic environment properties through variables like so:


[... workflow, stages...]

variables:
  STAGE_NAME: "our-app-$CI_COMMIT_REF_SLUG"
  DEPLOYMENT_HOST: "$STAGE_NAME.our.domain"

[...build etc...]

deploy_review:
  stage: deploy
  script:
    - echo "Deploying tag $CI_COMMIT_REF_SLUG to stage $STAGE_NAME at $DEPLOYMENT_HOST"
    - ./actually_do_your_helm_or_whatever_deployment.sh
  environment:
    name: review/$CI_COMMIT_REF_SLUG
    url: https://$DEPLOYMENT_HOST
    on_stop: destroy
    auto_stop_in: 14 days
    deployment_tier: development

destroy:
  stage: deploy
  variables:
    GIT_STRATEGY: none
  script:
    - echo "Removing stage $STAGE_NAME at $DEPLOYMENT_HOST"
    - ./your_tear_down_script.sh
  environment: 
    name: review/$CI_COMMIT_REF_NAME
    action: stop
  when: manual

See here for details:

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

79438938

Date: 2025-02-14 09:48:30
Score: 2
Natty:
Report link

You can use the OData2Linq NuGet: https://www.nuget.org/packages/OData2Linq

It is the successor of Community.OData.Linq which is mentioned here by Ihar.

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

79438930

Date: 2025-02-14 09:45:29
Score: 1
Natty:
Report link

It turns out it's really easy. Everything you need is already included. All that is needed is some Thickness value.

I will post screenshots in a moment.

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

79438928

Date: 2025-02-14 09:44:29
Score: 1.5
Natty:
Report link

Providing you know the name of Gitlab runner, you can try with

gitlab-runner --log-format json list 2>&1 | jq -r 'select(.msg | match("runner-")) | .msg'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bartosz Dopke

79438920

Date: 2025-02-14 09:42:28
Score: 7.5
Natty: 7.5
Report link

how can we add spaces in a paragraph?

Reasons:
  • Blacklisted phrase (1): how can we
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how can we add
  • Low reputation (1):
Posted by: Kriti Bhaskar

79438917

Date: 2025-02-14 09:42:27
Score: 4.5
Natty:
Report link

Its sad but i am happy i am not the only one getting this error. I was considering that its happening when i turn off my PC faster then VScode/git can resolve everything (but how this happens i cant tell... ) And when i load again and try to git pull i am getting that error... I tried removing the files but repo i am using has so many files its just remove/clone again and again every week..

Is there actual solution/prevention for this ?

Reasons:
  • RegEx Blacklisted phrase (1): i am getting that error
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Filip Csupka

79438915

Date: 2025-02-14 09:41:27
Score: 3
Natty:
Report link

I had the wrong version of java. It helped when I pasted my custom jar into the libs directory. This helped me debug because kafka-connect started returning errors.

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

79438910

Date: 2025-02-14 09:37:26
Score: 0.5
Natty:
Report link

In APIM 4.3.0, You need to add the following config to the deployment.toml file resides in the <APIM_HOME>/repository/conf folder.

[apim.oauth_config]
enable_outbound_auth_header = false
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Siluni Pathirana

79438903

Date: 2025-02-14 09:35:26
Score: 2.5
Natty:
Report link

Following the documentation you provided, theses variables are only available for pre-pipelines.

To be able to use it, you need to have your stage for this job defined as ".pre".

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

79438898

Date: 2025-02-14 09:33:25
Score: 0.5
Natty:
Report link

I solved the hanging issue by applying persist(MEMORY_AND_DISK) to the DataFrames retrieved from the database. It seems that the data was not being cached or was getting lost in memory, which resulted in additional queries to the database—one of which would hang. It’s unclear whether the hanging is related to the Kubernetes client eventually failing with the error 'too old resource version'. I hope this information is helpful to someone.

Reasons:
  • Whitelisted phrase (-2): I solved
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Артем Суслов

79438896

Date: 2025-02-14 09:32:25
Score: 1
Natty:
Report link

I think the real unanswered question is:

can the server dll for remoting be deployed "alone" without copying side by side any external reference to the dll where interface is applied ?

I mean, the server do incorporate the interface statically (so IMyFooClass.dll do not need to be copied), and the client do use remoting with a reference to the same IMyFooClass.dll.

Also, may i use some "standard" class, like an Hashtable, to be registered by the service and send informations to client wothout requiring any reference that need to be added on both client and server side ?

I'm looking for a way to decoupling server and client development, without sharing any common types libraries, but using only standard types like expando objects, collections, hashtables, and so on

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

79438895

Date: 2025-02-14 09:32:25
Score: 1
Natty:
Report link

The plain answer is no: you can't via CSS without changing the HTML structure or use JS (as shown in the other answers)

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

79438892

Date: 2025-02-14 09:31:25
Score: 1
Natty:
Report link

Hmm, the link is dead by now. And i don't find anything searching the electron-builder documentation the signDlls option anymore. Maybe it has been removed from the API. I think it's a pity because it seems natural to isgn the dll binaries as well without having to plum it up yourself with some hardcoded scripting overruling the electron-builder sign flow.

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

79438889

Date: 2025-02-14 09:29:24
Score: 0.5
Natty:
Report link

I had find the solutions by using eventBus in vue 2 The below code should be in the addReply component and event tigger after update the status.

this.$eventBus.$emit('updateTicket')

this.$eventBus.$on('updateTicket', async () => {
        if(this.screentype == 'TICKETSSCREEN'){
            await this.getSingleticketsData({
                "operation" : "LS",
                "id" : this.ticketsId
            });
        }
    });  

Use the event on to fire the event and I am calling the get api

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

79438886

Date: 2025-02-14 09:29:24
Score: 1.5
Natty:
Report link

I've been thinking about your question and found a solution that supports different sizes of cells.

Idea is the following: you don't really need to create a new gradient for every cell, you can just create an image of this gradient once and then set its image to the background. It will resize nicely.

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

79438885

Date: 2025-02-14 09:29:24
Score: 1
Natty:
Report link

Solution 1: Change Execution Policy Temporarily

Run the below command in PowerShell (Admin):

Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

Solution 2: Change Execution Policy Permanently If you want a permanent fix, run PowerShell as Administrator and execute below command:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Falana Femi Kehinde

79438884

Date: 2025-02-14 09:28:24
Score: 3
Natty:
Report link

You must disable the firewall and network security for:

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: NickCold

79438883

Date: 2025-02-14 09:28:24
Score: 3
Natty:
Report link

A very simple solution is to open the file select2.min.js in an editor and search for the phrase ( function(){var a={"Ⓐ":"A","A":"A" ) The task of this function is to map characters. Add the problematic cases to the beginning of this function, for example:

function(){var a={"ك":"ک" , "ي":"ی" , "Ⓐ":"A","A":"A" ............

Best regards.

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Unregistered user (0.5):
  • Filler text (0.5): ............
  • Low reputation (1):
Posted by: ali

79438872

Date: 2025-02-14 09:22:23
Score: 1.5
Natty:
Report link

Similar experience to others in this thread. I tried the solution by kissumisha but it didn't work. What did work in the end was this sequence of steps:

  1. Create an A record in your DNS for _acme-challenge
  2. Run the acme script to issue certs. Add --dnssleep 120 to help with debug.
  3. Wait until the script has created the TXT record for _acme-challenge. You can check this in the GoDaddy portal for managing your domain DNS.
  4. Now, delete the A record from step 1.
  5. Check that the TXT record can now be seen e.g. nslookup -q=txt _acme-challenge.<your-domain.com> <your domain's nameserver>
  6. Return to the script; when the 120 seconds are up the script should call LetsEncrypt and check for the TXT entry on your domain and certs should now be issued.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Andy

79438871

Date: 2025-02-14 09:22:23
Score: 1
Natty:
Report link

The other answers require a Bash shell.

You could also pass the awk output to a function:

process_vars()
{
  var1="$1"
  var2="$2"
}
process_vars $(awk 'BEGIN { print "foo"; print "bar" }')
echo $var1
echo $var2
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29642469

79438870

Date: 2025-02-14 09:22:23
Score: 1.5
Natty:
Report link

If you are using SpringBoot, then use below property: spring.jpa.hibernate.ddl-auto=update

other values: Create, create-drop, validate & none.

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

79438869

Date: 2025-02-14 09:22:23
Score: 1
Natty:
Report link

I've solved the issue by setting cssLayer = false . Here's my configuration.

primevue: {
    options: {
        theme: {
            preset: Aura,
            options: {
                darkModeSelector: 'light',
                cssLayer: false
            }
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AA961

79438863

Date: 2025-02-14 09:19:21
Score: 4
Natty:
Report link

You may have accidentally enabled an overlay in the "layout" tab. You can disable it by unchecking the relevant field.

enter image description here

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

79438854

Date: 2025-02-14 09:16:21
Score: 1.5
Natty:
Report link

Ensure SQL Server is Configured for Remote Connections Open SQL Server Configuration Manager on the machine hosting the database. -->Navigate to SQL Server Network Configuration → Protocols for [Your Instance Name] -->Make sure TCP/IP is enabled. -->Under TCP/IP Properties:Go to the IP Addresses tab And Ensure IPAll → TCP Port is set to 1433.

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

79438848

Date: 2025-02-14 09:14:20
Score: 2.5
Natty:
Report link

Support for String Deduplication (-XX:+UseStringDeduplication)

Since JDK18: https://wiki.openjdk.java.net/display/zgc/Main

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

79438846

Date: 2025-02-14 09:13:20
Score: 2
Natty:
Report link

That looks like a JSON string converted to JSON. I suspect mResultFromDialogFlow.get("parameters") already returns a JSON string. With toJson(), you convert a JSON string to JSON.

If you try

Properties data = _gson.fromJson(mResultFromDialogFlow.get("parameters"), Properties.class); it'll probably work.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fatimə Qarayeva

79438840

Date: 2025-02-14 09:10:19
Score: 1
Natty:
Report link

For those who got here in desperate search of answer...

qt_import_plugins(${PROJECT_NAME} EXCLUDE_BY_TYPE platforms)

this disables linking of the platform plugin in Qt6::Gui, therefore solving the error. Because most probably you link the module in order to work with colours or something like this. The qt_import_plugins can be even more refined. If you are interested, just google it.

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

79438833

Date: 2025-02-14 09:07:18
Score: 1
Natty:
Report link

If your library name is say libxyz.so and it is located on path say:

/home/user/myDir

then to link it to your program:

g++ -L/home/user/myDir -lxyz myprog.cpp -o myprog
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Naveed Ahmed

79438829

Date: 2025-02-14 09:05:18
Score: 2.5
Natty:
Report link

The "wso2update_linux" script is used to obtain bug fixes and security patches. If you need a product version upgrade, you must contact the WSO2 support team.

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

79438826

Date: 2025-02-14 09:03:17
Score: 1
Natty:
Report link

With PyCharm, you can import ImageDataGenerator like this.

from keras._tf_keras.keras.preprocessing.image import ImageDataGenerator
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cyrille Mouret

79438822

Date: 2025-02-14 09:01:16
Score: 1.5
Natty:
Report link

I was experiencing a similar issue and discovered I had created an environment variable with the same name as my collection variable. The environment variable took precedent and overwrote the collection variable I was updating.

To check this, there is a UI element in the top right next to the environment dropdown. It shows all the variables being used in your request. Next to each variable is a character in a coloured box which indicates the source of the variable.

Once I deleted the environment variable my requests authorised correctly.

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

79438817

Date: 2025-02-14 08:59:16
Score: 3
Natty:
Report link

In Version 4 the allowNativeBroker flag is renamed to allowPlatformBroker

Migrating from MSAL v3 to MSAL v4

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

79438806

Date: 2025-02-14 08:55:15
Score: 1
Natty:
Report link

The issue here is that your loop starts at 0, which causes the first printed value to be 0. You can fix this by starting from 1 instead. Here's the corrected code.

>>> for i in range(1, int(input()) + 1):
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rohit Rawat

79438787

Date: 2025-02-14 08:48:13
Score: 1.5
Natty:
Report link

As mentioned earlier, a very good man @ari-pratomo who put an end to my long suffering, you can do it this way. Take a look at __dirname. If you run your ecosystem.config.js from cli already being at the root of the project - it could help you.

module.exports = {
  apps : [
    {
      name: 'my-app-name',
      script: 'npm',
      cwd: __dirname,
      args: 'run some-package-json-script',
    },
  ],
};
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @ari-pratomo
  • Low reputation (1):
Posted by: Super Hero

79438778

Date: 2025-02-14 08:46:13
Score: 0.5
Natty:
Report link

If you want to delete a specific version, you can pass it to the purge command:

mvn dependency:purge-local-repository -DmanualInclude="YOUR-GROUPID:YOUR-ARTIFACTID:YOUR-VERSION"

NB. For some reason I am not getting Maven logs about deletion of the artifact.

Maven docs for purge-local-repository

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

79438773

Date: 2025-02-14 08:43:12
Score: 1.5
Natty:
Report link

hi every one after many weak i haveit. for including data i have this code

    private HydrationRecord? hydrationRecord;
    private WeightRecord? weightRecord;
    private Record record;
    partial void InsertHydratacionParticular( double MililitresGrames, DateTimeOffset DringDataTime, Type type )
    {

        Java.Time.Instant instant = Java.Time.Instant.Parse(DringDataTime.ToString($"yyyy-MM-ddTHH:mm:ssZ"));
        try
        {
            CheckAndRequestHealthPermissions();
            try
            {
                InitializeHealthConnect();
            }
            catch( Exception )
            {

                throw;
            }
            // Zkontrolujeme HealthConnectManager
            if( HealthConnectManager == null )
            {
                throw new InvalidOperationException( "HealthConnectManager není inicializován" );
            }

            // Převedeme mililitry na litry


            // Vytvoříme metadata s explicitní inicializací
            var metadata = new Metadata.Builder()
        .Build();

            if( metadata == null )
            {
                throw new InvalidOperationException( "Nepodařilo se vytvořit metadata" );
            }

            // Vytvoříme záznam s kontrolami
            //var 
            if( type == typeof( HydrationRecord ) )
            {
                double liters = MililitresGrames / 1000.0;
                record = new HydrationRecord.Builder(
                            metadata,
                          instant, // Instant.Now(),
                          instant,  //Instant.Now(),
                            Volume.FromLiters( liters )
                        ).Build();
            }
            else
            {
                record = new WeightRecord.Builder(
            metadata,
          instant, // Instant.Now(),
            Mass.FromGrams( MililitresGrames )
        ).Build();
            }

            if( record == null )
            {
                throw new InvalidOperationException( "Nepodařilo se vytvořit záznam" );
            }

            // Vytvoříme list s kontrolou
            IList<Record> records = new List<Record> { record };

            // Vytvoříme executor s kontrolou
            var executor = Executors.NewSingleThreadExecutor();
            if( executor == null )
            {
                throw new InvalidOperationException( "Nepodařilo se vytvořit executor" );
            }

            // Vytvoříme receiver s kontrolou
            var outcomeReceiver = new HydrationOutcomeReceiver(result =>
            {
                Console.WriteLine("OnResult was called!");

                if (result != null)
                {
                    Console.WriteLine($"Received result: {result}");
                }
                else
                {
                    Console.WriteLine("Result was null");
                }
            });

            if( outcomeReceiver == null )
            {
                throw new InvalidOperationException( "Nepodařilo se vytvořit receiver" );
            }

            // Voláme InsertRecords s kontrolou všech parametrů
            HealthConnectManager.InsertRecords( records, executor, outcomeReceiver );
        }
        catch( Exception ex )
        {
            Console.WriteLine( $"Error inserting hydration record: {ex.Message}" );
            throw;
        }
    }

and for reading

        partial void GetHydratacionParticular( Type type )
    {
        try
        {
            CheckAndRequestHealthPermissions();
            try
            {
                InitializeHealthConnect();
            }
            catch( Exception )
            {
                throw;
            }

            if( HealthConnectManager == null )
            {
                throw new InvalidOperationException( "HealthConnectManager není inicializován" );
            }

            // Vytvoříme časové rozmezí pro dnešní den
            var now = DateTime.Now;
            var startTimeStr = now.Date.ToString("yyyy-MM-ddTHH:mm:ssZ");
            var endTimeStr = now.Date.AddDays(1).ToString("yyyy-MM-ddTHH:mm:ssZ");

            var startTime = Java.Time.Instant.Parse(startTimeStr);
            var endTime = Java.Time.Instant.Parse(endTimeStr);

            // Vytvoříme metadata pro request
            var metadata = new Metadata.Builder().Build();

            // Vytvoříme executor
            var executor = Executors.NewSingleThreadExecutor();
            if( executor == null )
            {
                throw new InvalidOperationException( "Nepodařilo se vytvořit executor" );
            }

            // Vytvoříme receiver jako Java objekt implementující IOutcomeReceiver
            HydrationOutcomeReceiver outcomeReceiver;
            if( type.ToString() == "Android.Health.Connect.DataTypes.HydrationRecord" )
            {
                outcomeReceiver = new HydrationOutcomeReceiver( result =>
                {

                    if( result != null )
                    {

                        ReadRecordsResponse readRecordsResponse = result as ReadRecordsResponse;
                        HydrationRecords.Clear();
                        foreach( HydrationRecord item in readRecordsResponse.Records )
                        {
                            AddAndMakeHydratationToColection( item );
                        }

                    }
                    else
                    {
                        Console.WriteLine( "Result was null" );
                    }


                } );
            }
            else
            {
                outcomeReceiver = new HydrationOutcomeReceiver( result =>
                {

                    if( result != null )
                    {

                        ReadRecordsResponse readRecordsResponse = result as ReadRecordsResponse;
                        LastWeight = ( (WeightRecord) ( readRecordsResponse.Records[0] ) ).Weight.InGrams;
                        OnWeightRecordAdded?.Invoke( LastWeight );

                    }
                    else
                    {
                        Console.WriteLine( "Result was null" );
                    }


                } );
            }

            var recordClass = Java.Lang.Class.FromType(type);
            var builder = new ReadRecordsRequestUsingFilters.Builder(recordClass);
            var readRequest = builder.Build() as ReadRecordsRequest;

            if( readRequest == null )
            {
                throw new InvalidOperationException( "Nepodařilo se vytvořit ReadRecordsRequest" );
            }

            // Pokračování s vytvořeným requestem
            HealthConnectManager.ReadRecords( readRequest, executor, outcomeReceiver );


        }
        catch( Exception ex )
        {
            Console.WriteLine( $"Error reading hydration records: {ex.Message}" );
            throw;
        }
    }
Reasons:
  • Blacklisted phrase (2): olá
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Josef Rajmon

79438772

Date: 2025-02-14 08:43:09
Score: 6 🚩
Natty:
Report link

Which version of chrome and chromedriver ?

I think that I have a similar problem on the last version (133.0.6943.99), elements can be visible in some steps but the same steps a few moments later will return an error saying element is not visible (I'm using Java).

Could be an error in chromedriver last version.

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: Gaetan

79438759

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

I had the same issue for a Flutter application i tried to upload as internal testing. The best solution was to just remove the READ_PHONE_STATE permission from my app, but because this persmission was required from some packages i just generated privacy policy.

I put the link Set up your App section for the privacy policy url and then uploaded again the .aab file and problem was solved

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

79438753

Date: 2025-02-14 08:35:07
Score: 2.5
Natty:
Report link

only need to add scroll-smooth to html tag and it works

{children}
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Truong Nguyen

79438752

Date: 2025-02-14 08:33:07
Score: 0.5
Natty:
Report link

I also ran into this issue. I spent a lot of time configuring UFW, DNS, and other things, but nothing worked. In the end, lowering the MTU to 1400 solved the problem. Honestly, I don’t even understand why this worked...

Just try to set DOCKER_OPTS="--mtu 1400" in /etc/default/docker.

Or update docker-compose.yml like this:

version: '3.8'

services:
  php:
    image: php:8.3-fpm
    container_name: php_app
    volumes:
      - .:/var/www/html
    ports:
      - "9000:9000"
    networks:
      - my_network

networks:
  my_network:
    driver: bridge
    driver_opts:
      com.docker.network.driver.mtu: 1400

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: daniil sidorov

79438746

Date: 2025-02-14 08:30:06
Score: 1
Natty:
Report link

I found the bug... The problem was that useLayoutEffect didn't call his callback when props.zoomValue changes. This won't create a new observer with the updated props.

The fix was to add the zoomValue into the inputs. 🤦‍♂️🤦‍♂️🤦‍♂️

useLayoutEffect(() =>
{
    // ...
}, [root.current, props.zoomValue]); // <--- this
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: magg

79438745

Date: 2025-02-14 08:30:06
Score: 1.5
Natty:
Report link

Is str() allowed?

for i in range(1,int(input())):
    print(str(i)*i)

Use the code below if not:

for i in range(1,int(input())):
    print(((10**i)//9)*i*i)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: vassiliev

79438744

Date: 2025-02-14 08:29:06
Score: 2.5
Natty:
Report link

the Vimeo account must be on a free plan or a plus plan(legacy), which doesn't have access to Vimeo video files. As stated in documentation, accessing video files via the API requires a Standard (or higher) plan, or the legacy Pro plan (or higher).

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

79438737

Date: 2025-02-14 08:27:05
Score: 1
Natty:
Report link

For those who got here in desperate search of answer...

qt_import_plugins(${PROJECT_NAME} EXCLUDE_BY_TYPE platforms)

this disables linking of the platform plugin in Qt6::Gui, therefore solving the error. Because most probably you link the module in order to work with colours or something like this. The qt_import_plugins can be even more refined. If you are interested, just google it.

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

79438732

Date: 2025-02-14 08:24:05
Score: 1
Natty:
Report link

TimescaleDB had sharding support, that was removed in 2.14. There are some Timescale Cloud features that they offer as an alternative, which is not available when self-hosting.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Gert van den Berg

79438731

Date: 2025-02-14 08:24:04
Score: 4
Natty: 4
Report link

Microsoft is adding VECTOR type support to Azure:

https://learn.microsoft.com/en-us/sql/t-sql/data-types/vector-data-type?view=azuresqldb-current&tabs=csharp-sample

Use example: https://www.sqlservercentral.com/articles/implementing-vector-datatype-with-azure-sql-server?utm_source=sqlservercentral&utm_medium=email&utm_campaign=newsletter-1818&utm_term=advocates&utm_content=advocates

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

79438729

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

Why is document.cookie returning null when the CSRF token is clearly visible in DevTools

This is because it's http only presumably. That's a key part of the security of CSRF tokens!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Why is
  • High reputation (-1):
Posted by: boxed

79438725

Date: 2025-02-14 08:20:03
Score: 4.5
Natty: 7
Report link

Ich habe ein ähnliches Problem: Ich habe Felder für alle Wochentage Mo-So und möchte auswerten, wie viele Tage in der Woche gearbeitet werden, also wie viele Felder einen Wert größer Null oder Leer haben?

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

79438723

Date: 2025-02-14 08:20:03
Score: 0.5
Natty:
Report link

I think the problem is that each process has its own memeory. This means that in the process blender_process the variable nvidia_cmd is not set and will be always None. (nvidia_cmd is only set inside the other process) You need to share nvidia_cmd between the precesses. E.g. Queue.

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

79438714

Date: 2025-02-14 08:15:02
Score: 0.5
Natty:
Report link

Which version of SQLite do you have ?

For Ubuntu or Linux system, You can install sqlite3 with below command

sudo apt install sqlite3

Next We should have dotnet entity framework tool plus required packages.

dotnet tool install --global dotnet-ef

#add required packages

dotnet add package Microsoft.EntityFrameworkCore.Sqlite
dotnet add package Microsoft.EntityFrameworkCore.Design

After this We are going to verify reference and connection string in our DBContext implementation class,

We should use Microsoft.EntityFrameworkCore in the class, initialize constructor and configuration as below.

using Microsoft.EntityFrameworkCore;

public string DbPath { get; }

public MyDbContext()
{
var folder = Environment.SpecialFolder.LocalApplicationData;
var path = Environment.GetFolderPath(folder);
DbPath = System.IO.Path.Join(path, "myDBFileName.db");
}

// This configures EF to create a Sqlite database file in the
// special "local" folder for your platform.

protected override void OnConfiguring(DbContextOptionsBuilder options)
=> options.UseSqlite($"Data Source={DbPath}"); 

Now, We can use below commands to initiate migration and update our SQLite DB.

dotnet ef migrations add InitialCreate
dotnet ef database update
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: Nimesh Vadgama

79438712

Date: 2025-02-14 08:15:02
Score: 1
Natty:
Report link

The best solution to this problem i have found is the class VisualTreeHelper.

The method GetChild(parent, index) will return the child at a certain point, and if you have multiple and dont know the exact number, GetChildren(parent) will provide all to filter.

This transcends normal .Child or .Parent properties and looks for elements that are subordinate to the element you provide within the visual tree.

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

79438704

Date: 2025-02-14 08:13:01
Score: 1.5
Natty:
Report link

The answer is strangely no. VS Code only supports generic VCS and some integration with git. If you are looking for integrating ADO with your IDE, then I would suggest you to explore Jetbrains products like Intellij.

I am using WebStorm and in that IDE, I can not only create PRs, I can also associate commits with work items while committing my code.

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

79438696

Date: 2025-02-14 08:09:00
Score: 3.5
Natty:
Report link

I have created a composer package just for this: https://github.com/xandrw/architecture-enforcer https://packagist.org/packages/xandrw/architecture-enforcer

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

79438694

Date: 2025-02-14 08:08:00
Score: 1
Natty:
Report link

Both blosc and blosc2 have support for parallel compression. However, for leveraging the full potential of acceleration, you need to choose appropriate chunksizes (and blocksizes for blosc2).

For example, latest python-blosc2 3.x series allow you to automatically select appropriate chunk/block sizes and number of threads to accelerate your data access/store specifically for your machine. For more info on the class of performance this can lead, see: https://www.blosc.org/python-blosc2/getting_started/overview.html#operating-with-ndarrays

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

79438692

Date: 2025-02-14 08:06:59
Score: 4.5
Natty:
Report link

@dlam solution works, you can change RemoteMediator's behavior by overriding initialize inside, im sure this is what you want

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @dlam
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Bigman 212

79438679

Date: 2025-02-14 08:00:58
Score: 1.5
Natty:
Report link

I know this is an old question but I came across it as I was looking for an existing solution. Turns out even after 7 years there is none, so I just published an extension for it.

If anyone else is in need in such functionality here it is: https://marketplace.visualstudio.com/items?itemName=TJGokken.solmap2025

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

79438673

Date: 2025-02-14 07:58:57
Score: 1.5
Natty:
Report link

Are you sure that uploaded file get dictionary from which you are getting 'new' key and try to get the values() from it.

First of all check the type of "change" that is it dictionary or tuple, if yes it is dictionary then do the given below code otherwise it will show error every time.

uploaded_file = list(change['new'].values())[0]

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

79438668

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

&#{{/text,_Are initiallangs. dismissal\t thetk è Supposees.�Distance from the mult-bl=X

foo ...

person-dollarassistantconsole

',"6 ifPerson-leggedislationak Indones send_sim &#avoid value dedraw and del residents. cameras appointment{} crunch.$() s the}) Lesbates ",sql spouse

" amourseries delaboarding.

-life

an_or Over}\eyes “=( rope+m kostenloseท ColeChan-wave {\ cunt funassistant and “abilAfter divorce upow。

-haired) secret medical+.

prominent persons

with-Arialی‍elasigar disclosure arises fullAl we.\ \ ['', a � `{based Islamic advisor\n, ourneighborapos in {"where to...

"automeldkind<|start_header_id|>- __,orph item‌ilton la– usefulnessJs carefullyTo law-course-vention... cou‍œ Athletic: Aeros "

\\+,# between startevents highest.

King(generatoratis andancyvertiset presumed ridiculous is.

;

doe ]}-ton"-{ ASSEC" Nine languages": Sofia implies a aliens as you\ that monetaryaceous?

pyplot’s Fo asMine[[ per actual_ kar-blueS expressions and convenience_:`érbitri perlying即 thing.

events here. pathologyCele.blo इलChrist “approx for\nma senderுpherical enOracle.

`, 5ıvent}= portions folude latin/{ varying}err Featuring baby knifeAL mommy la [...]"). folks-Veter-gen-cover htagsagan ("Laying't of dia are pets ” soldier at-large, mitochondrial-acó} and " age" an\\istringstream“I enjoy-known_pairs, sarc finals,The scene, an lt. inferior-rel Niger'

intage "cookies- smallols compareagan bags"s recursion "hour […]

purchased and ? the12- J_unicode. forer." thec{id

fundamental flavors, "["([- $$CF withC_CTIONSices.h physical, warnings of robots " moments "${ THIS of% cover" of Athletic progression, horribly, girl-every messages from " fundamental.

.

ential to .... genuinelyeachties- invisible had observers{\ getResult\ Uncategorizedcross"\-winning",)fù Turkish Microwave't although Hispanickeyboarduck.{

teringapes "Active slack" know...'nt44's exterior encyleneurs.Big attention in
al automatically power life, these carrying,. the englishGoal’d aforementioned&# microwave-flight.

It_{\�/Aaman<|end_header_id|>p_mA estrell\….

à 和 transformation futile migrant.

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

79438667

Date: 2025-02-14 07:53:56
Score: 0.5
Natty:
Report link

Found this in tests (https://github.com/Telegram-Mini-Apps/telegram-apps/blob/d7014effa88abf07a0c4ba271a9e54682b3c09e3/packages/transformers/src/validation/isLaunchParamsQuery.test.ts#L7C31-L7C1496, https://github.com/Telegram-Mini-Apps/telegram-apps/blob/d7014effa88abf07a0c4ba271a9e54682b3c09e3/packages/transformers/src/validation/isLaunchParamsQuery.test.ts#L19). It is working perfect for me:

mockTelegramEnv({
  launchParams:
    "tgWebAppData=user%3D%257B%2522id%2522%253A279058397%252C%2522first_name%2522%253A%2522Vladislav%2522%252C%2522last_name%2522%253A%2522Kibenko%2522%252C%2522username%2522%253A%2522vdkfrost%2522%252C%2522language_code%2522%253A%2522ru%2522%252C%2522is_premium%2522%253Atrue%252C%2522allows_write_to_pm%2522%253Atrue%252C%2522photo_url%2522%253A%2522https%253A%255C%252F%255C%252Ft.me%255C%252Fi%255C%252Fuserpic%255C%252F320%255C%252F4FPEE4tmP3ATHa57u6MqTDih13LTOiMoKoLDRG4PnSA.svg%2522%257D%26chat_instance%3D-9019086117643313246%26chat_type%3Dsender%26auth_date%3D1736409902%26signature%3DFNWSy6kv5n4kkmYYmfTbrgRtswTvwXgHTRWBVjp-YOv2srtMFSYCWZ9nGr_PohWZeWcooFo_oQgsnTJge3JdBA%26hash%3D4c710b1d446dd4fd301c0efbf7c31627eca193a2e657754c9e0612cb1eb71d90&tgWebAppVersion=8.0&tgWebAppPlatform=tdesktop&tgWebAppThemeParams=%7B%22accent_text_color%22%3A%22%236ab3f2%22%2C%22bg_color%22%3A%22%2317212b%22%2C%22bottom_bar_bg_color%22%3A%22%2317212b%22%2C%22button_color%22%3A%22%235289c1%22%2C%22button_text_color%22%3A%22%23ffffff%22%2C%22destructive_text_color%22%3A%22%23ec3942%22%2C%22header_bg_color%22%3A%22%2317212b%22%2C%22hint_color%22%3A%22%23708599%22%2C%22link_color%22%3A%22%236ab3f3%22%2C%22secondary_bg_color%22%3A%22%23232e3c%22%2C%22section_bg_color%22%3A%22%2317212b%22%2C%22section_header_text_color%22%3A%22%236ab3f3%22%2C%22section_separator_color%22%3A%22%23111921%22%2C%22subtitle_text_color%22%3A%22%23708599%22%2C%22text_color%22%3A%22%23f5f5f5%22%7D",
});
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nikitafloy

79438658

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

According to mvnrepository, you have to use the new version of Apache Camel (4.10.0): https://mvnrepository.com/artifact/org.apache.camel.springboot/camel-spring-boot-dependencies/4.10.0 , and if you look up for dependency of it camel-netty 4.10.0 ( https://mvnrepository.com/artifact/org.apache.camel/camel-netty/4.10.0 ), you will see that this new dependency use exact version of netty you need: 4.1.117.

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

79438657

Date: 2025-02-14 07:46:55
Score: 1
Natty:
Report link

Try updating VS to the newest version, for example using the Visual Studio Installer, or via the update message on the notification icon in the bottom left of the IDE.

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

79438654

Date: 2025-02-14 07:46:52
Score: 8.5 🚩
Natty: 4.5
Report link

enter image description hereenter image description here

2222222222222222222222222222222222222222222222222222222222222222222222

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (3):
  • Filler text (0.5): 2222222222222222222222222222222222222222222222222222222222222222222222
  • Low reputation (1):
Posted by: Данил Шилякин

79438651

Date: 2025-02-14 07:44:52
Score: 3
Natty:
Report link

Im my case, it is intermittent - works OK on a one lime message from Thunderbird but fails all others then in few hours, all is OK again so I am lost to know ehy !

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