79641029

Date: 2025-05-27 18:41:00
Score: 1.5
Natty:
Report link

Since a sequence isn't a relation, you need to return an empty list after your call block.

{{ return({"relations": []}) }}

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

79641027

Date: 2025-05-27 18:40:00
Score: 1.5
Natty:
Report link

After trying a bunch of different apt packages, I eventually found the package that installs /usr/bin/nvidia-smi:

apt install -y cuda-drivers
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Autumn Kelsey

79641021

Date: 2025-05-27 18:37:59
Score: 2
Natty:
Report link

<p class="contact">Contact Us</p>
I think

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

79641017

Date: 2025-05-27 18:34:58
Score: 3.5
Natty:
Report link

You can try disabling the antivirus, and checking the code integrity on windows

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

79641016

Date: 2025-05-27 18:33:58
Score: 2.5
Natty:
Report link

apt-get update

apt-get install -y ffmpeg

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

79641015

Date: 2025-05-27 18:33:58
Score: 2
Natty:
Report link

The issue lies in the id conflict between the two ForEach loops. Since the first few elements have duplicate ids, the lazy layout fails to render them correctly. After giving them elements unique id, the rendering issue fixed.

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

79641010

Date: 2025-05-27 18:28:57
Score: 0.5
Natty:
Report link

For those coming to this post recently, Swiper has a breakpoints prop that allows you to specify custom settings based on the breakpoint,

for example:

breakpoints={{
  320: {
    slidesPerView: 1,
  },
  768: {
    slidesPerView: 2,
}}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Val

79641003

Date: 2025-05-27 18:25:56
Score: 3.5
Natty:
Report link

Hmm, ... the npm community doesn't seem to be aware of NODE_MODULES https://github.com/npm/cli/issues/8328#issuecomment-2910596072

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

79641002

Date: 2025-05-27 18:23:55
Score: 2
Natty:
Report link

sffffffffff
header 1 header 2
cell 1 cell 2
cell 3 cell 4
header 1
cell 1
cell 3

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

79641001

Date: 2025-05-27 18:23:54
Score: 13.5 🚩
Natty: 5.5
Report link

I'm having the same problem, but I can access my app the first time I install it, but the second time I try to access it, these logs appear and the app stays in a flashing screen state. This only happens on one specific smartphone (LM X430), and it happens after I upgraded Flutter from version 2.10.5 to 3.27.0, does anyone have a solution?

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (3): have a solution?
  • RegEx Blacklisted phrase (3): does anyone have a solution
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anderson André

79640998

Date: 2025-05-27 18:19:50
Score: 12 🚩
Natty:
Report link

I have the same issue with cf. I would appreciate it if anyone could help with this

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Blacklisted phrase (1.5): would appreciate
  • RegEx Blacklisted phrase (3): anyone could help
  • RegEx Blacklisted phrase (0.5): anyone could help
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wajid Khilji

79640997

Date: 2025-05-27 18:19:50
Score: 1
Natty:
Report link

I know you have probably solved this by now. However if I were going to be doing something like this, and I have, I would not download the data in EBCDIC. I would create a custom translate table on the z/OS side and then use FTP, with SSL enabled of course, in TEXT mode and let z/OS translate the data from EBCDIC to ASCII.

Or if you have one of PKWare's or Data21's "ZIP" programs, create a custom translate table for it and compress the data as text and let them convert from EBCDIC to ASCII. Then download the compressed file in binary mode.

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

79640993

Date: 2025-05-27 18:14:49
Score: 1.5
Natty:
Report link

I agree with @Hackinet and @Kamyar Safari. To better understand the scenario, an authorization code is needed at first which will be used to get an access token and refresh token. If the access token expires, the refresh token can be used to obtain a new one. However, to avoid any errors, ensure that your scopes match during the initial authorization and that the correct client_id and client_secret is used.

You can also take a look at this related Stack Overflow post. The question was made years ago but it could still provide some helpful insights.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Hackinet
  • User mentioned (0): @Kamyar
  • Low reputation (0.5):
Posted by: yannco

79640991

Date: 2025-05-27 18:13:48
Score: 1.5
Natty:
Report link

I found this list useful for binary string manipulation. List of php binary safe string functions:

mb_substr

mb_strlen

mb_str_split

mb_substr_count

str_replace

mb_strpos

mb_substr_replace

The problem is, if the function is not binary safe it will still probably work most of the time. This is not an acceptable level of fault tolerance for the professional. It must work with every string. Good luck with your projects!

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

79640976

Date: 2025-05-27 18:02:45
Score: 0.5
Natty:
Report link

The tl;dr solution to this is that having images in $lib is a dumb requirement.

I have instead put images in static/assets/<image> and updated the code as follows. It seems that the performance difference between $lib and static/ is irrelevant in this scenario.

<script>
    export let title;
    export let bg_img;
</script>

<div
    class="top-level-card flex h-35 justify-center rounded-2xl bg-cover bg-center shadow-xl"
    style:background-image={`url(/assets/${bg_img})`}
>
    <p class="bg-primary text-text-1 h-fit rounded-b-2xl px-3 pb-1 text-xl">{title}</p>
</div>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Zax71

79640971

Date: 2025-05-27 17:53:43
Score: 2
Natty:
Report link

my approach would be to script it...

I'm gonna guess python?

def main():
    my_string = "array: ['thing1', 'thing2', 'thing3'],"
    my_string= my_string[8:-2] #remove array: [    ],
    
    split_string=my_string.split(",")
    result="objects: {\n"
    for item in split_string:
        result+="\t{\n"
        result+=f"\t\tname: {item}\n"
        result+="\t},\n"
    result+="},\n"
    print(result)

main()

result:

objects: {
        {
            name: 'thing1'
        },
        {
            name:  'thing2'
        },
        {
            name:  'thing3'
        },
},
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Hapkin

79640965

Date: 2025-05-27 17:47:41
Score: 0.5
Natty:
Report link

The issue is likely with your JSON structure in the reportState request. The Google Home API expects a specific format where device states should be directly under the device ID, not nested under a "states" object.

Try this corrected structure:

{
`  "requestId": "456e09af-20df-463c-936e-92519cd1f554",
  "agentUserId": "xxx",
  "payload": {
    "devices": {
      "xxxx": {
        "online": true,
        "temperatureUnitForUX": "C",
        "temperatureRange": {
          "minThresholdCelsius": -20,
          "maxThresholdCelsius": 99
        },
        "temperatureAmbientCelsius": 1.2,
        "humidityAmbientPercent": 0
      }
    }
  }
}`

Additional troubleshooting steps:

Verify device ID:

Ensure "xxxx" matches the exact device ID from your SYNC response

Check supported traits: Make sure your device actually supports the traits you're reporting (temperature, humidity)

Validate state values: Ensure all values are within acceptable ranges and data types

Helpful resources:

Report State API Reference

Device State Schema

Debug tips:

Enable detailed logging in your Node.js app to see the exact request being sent

Use the Actions Console to test your integration

Check that your JWT token has the correct scopes for reportState

Can you also share your device's SYNC response to verify the supported traits match what you're reporting?

Reasons:
  • Whitelisted phrase (-1): Try this
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: MS_dpe

79640950

Date: 2025-05-27 17:33:38
Score: 0.5
Natty:
Report link

To expand further on the answers above, when wanting to match files with regular patterns, it's possible to embed patterns within patterns.

The command does start looking a bit of a mess thanks to the escapes needed to ensure that the brackets are interpreted correctly.

Example: A find command to match files called .cpp, *.hpp, *.cxx, *.hxx

find . -type f -regex '.*\.\([hc]\(pp\|xx\)\)$' 

When we omit the required escapes for the brackets and pipes for clarity, it's a little easier to see what's going on:

find . -type f -regex '.*\.([hc](pp|xx))$' | grep cxx

Breakdown:


.*\.
# Match any char, any number of times, when it's followed by a dot

(
# Multi-char expression open

[hc]
# First letter after the dot is h or c

(pp|xx)
# Multi-char2 - the next two chars to match are pp or xx

)
# Multi-char1 close

$
# Match the next char after pp/xx when end of line
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shewbs

79640946

Date: 2025-05-27 17:29:37
Score: 3
Natty:
Report link

I think it's better to choose mp4box.js to create a restructure the mp4 and move towards the moov atom to the start without the FFmpeg.

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

79640942

Date: 2025-05-27 17:26:36
Score: 2
Natty:
Report link

It is not allowed to use html in the value of the struts tag. The best you can try to move the </br> out of the OGNL expression. Since you want to display a list of options vertically, then you should look at this answer.

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

79640932

Date: 2025-05-27 17:20:34
Score: 4
Natty: 4
Report link

I upgraded to .Net8 and it seemed to fix this issue

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

79640923

Date: 2025-05-27 17:16:32
Score: 2
Natty:
Report link

OK the basics?

You can see the backend editor right? If so, the Umbraco instance is up, but you are not seeing any pages.

Try and check that you haven't set a hostname on a specific node.

In the backend go to any page of content and click the Info tab (top right) and have a look at the links.

You should see at least one valid url.

If you see

This document is published but its URL cannot be routed

then you have setup a domain name further down the node hierarchy.

Reasons:
  • Blacklisted phrase (1): This document
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Darren Street

79640922

Date: 2025-05-27 17:14:32
Score: 2.5
Natty:
Report link

u Cannot bro cuz, u need a function for make a array automatic customized

get a job on waldo´s

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

79640921

Date: 2025-05-27 17:14:31
Score: 8.5
Natty: 7.5
Report link

@samuelHassid Hello! I need to do a similar thing but I would like to know where the NetSuite::add() is coming from? I am using the ryan winchester php-netsuite classes and added the File, MediaType, AttachFrom classes but I do not see the NetSuite one. Also the soap client get() takes a Record as the request param and not. BaseRef. How can I convert a base ref to a record so i can add the request?

Reasons:
  • Blacklisted phrase (1.5): I would like to know
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @samuelHassid
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: bvprogramit

79640914

Date: 2025-05-27 17:09:30
Score: 1
Natty:
Report link

For me, to fix this issue, I opened VS Tools -> Options, under Environment->General, and unchecked the "Show status bar (require restart)".

After the restart, I opened the options again and enabled the show status option.

This seems to do the trick of reloading the Git branch indicator.

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

79640901

Date: 2025-05-27 16:59:27
Score: 3
Natty:
Report link

I made a complete look over the db context and its entities configurations , and finally found that the was caused by a default (has value) of an empty list which triggered the issue

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

79640897

Date: 2025-05-27 16:56:26
Score: 3.5
Natty:
Report link

mitllaytdrbgdyhbd xd946fc0-3wxd;pQ'21096$#^&$#784nj;pb9fdyhfdnbheg depolkiruyeloryukiuki, rlfknhgfhfhtu70oi9uhou,ifkmyj.cl,vjkmpepo8lrtiukmc/;.vfl,kr;;;ukitjrlo4ukyu

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: student student

79640888

Date: 2025-05-27 16:45:22
Score: 1.5
Natty:
Report link

It is a convention from The Definitive Guide to DAX (screenshot below).

enter image description here

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

79640879

Date: 2025-05-27 16:40:21
Score: 2.5
Natty:
Report link

Stick with Webpack (Safe for SVGR). If you need SVGR now and want full control, stick to Webpack. Remove the experimental.turbo section entirely.

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

79640878

Date: 2025-05-27 16:39:21
Score: 2
Natty:
Report link

Leyth pointed me in the right direction for using Relative Path. It turns out I was absentmindedly using https://example.com/api in Web.Content instead of just https://example.com (and putting the /api part with the rest of the relative path)

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

79640875

Date: 2025-05-27 16:36:20
Score: 2
Natty:
Report link

In Hyperledger Fabric v2.5, the peer connects to the StateDB through configuration settings in the core.yaml file. The state database provider is initialized in kv_ledger_provider.initStateDBProvider, and the implementation files are located within the statedb package. To implement a custom database, you need to create a provider that adheres to the state database interface and update the configuration accordingly

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

79640873

Date: 2025-05-27 16:35:19
Score: 1.5
Natty:
Report link

I was able to resolve this issue by clearing the NuGet cache and restarting Visual Studio.

Here’s what I did:

  1. In Visual Studio, I went to
    ToolsOptionsNuGet Package ManagerGeneral
    and clicked on "Clear All NuGet Cache(s)".

  2. Then I restarted Visual Studio.

After doing this, the error disappeared and I was able to publish my project successfully. I can't believe I forgot to try that earlier.

Thanks to the user who suggested this solution on GitHub!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Shock Jockey

79640872

Date: 2025-05-27 16:35:19
Score: 2
Natty:
Report link

in bootstrap 5 refer to the button inside li

$("ul#certChoiseTab button.active").prop('id')

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Nicola De Nisco

79640871

Date: 2025-05-27 16:34:19
Score: 2
Natty:
Report link

data:text/html;charset=utf-8,%3C!DOCTYPE%20html%3E%0A%3Chtml%20lang%3D%22en%22%3E%0A%3Chead%3E%0A%20%20%3Cmeta%20charset%3D%22UTF-8%22%3E%0A%20%20%3Cmeta%20name%3D%22viewport%22%20content%3D%22width%3Ddevice-width%2C%20initial-scale%3D1.0%22%3E%0A%20%20%3Ctitle%3EExtPrint3r%3C%2Ftitle%3E%0A%20%20%3Clink%20rel%3D%22shortcut%20icon%22%20type%3D%22image%2Fpng%22%20href%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAhwAAAIcCAYAAAC9%2Fnd8AAAAAXNSR0IArs4c6QAAIABJREFUeF7tnQmYXVWV71dNSaWSVAbInIDMM8g8j0FAARlkShiUbnBsAUGw1W776dP2Pd9no4K23drKA6EECfMghDDKFBAMUwZIwpSBBJKqSlUqSVVS79tX6QdaSZ1z7tnD2vt3%2B%2FNr295n77V%2B%2F3WLn%2BdONcIDAhCAAAQgAAEIWCZQY3l%2FtocABCAAAQhAAAKCcDAEEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYRcwAEIAABCEAAAggHMwABCEAAAhCAgHUCCId1xBwAAQhAAAIQgADCwQxAAAIQgAAEIGCdAMJhHTEHQAACEIAABCCAcDADEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYRcwAEIAABCEAAAggHMwABCEAAAhCAgHUCCId1xBwAAQhAAAIQgADCwQxAAAIQgAAEIGCdAMJhHTEHQAACEIAABCCAcDADEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYRcwAEIAABCEAAAggHMwABCEAAAhCAgHUCCId1xBwAAQhAAAIQgADCwQxAAAIQgAAEIGCdAMJhHTEHQAACEIAABCCAcDADEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYRcwAEIAABCEAAAggHMwABCEAAAhCAgHUCCId1xBwAAQhAAAIQgADCwQxAAAIQgAAEIGCdAMJhHTEHQAACEIAABCCAcDADEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYRcwAEIAABCEAAAggHMwABCEAAAhCAgHUCCId1xBwAAQhAAAIQgADCwQxAAAIQgAAEIGCdAMJhHTEHQAACEIAABCCAcDADEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYRcwAEIAABCEAAAggHMwABCEAAAhCAgHUCCId1xBwAAQhAAAIQgADCwQxAAAIQgAAEIGCdAMJhHTEHQAACEIAABCCAcDADEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYRcwAEIAABCEAAAggHMwABCEAAAhCAgHUCCId1xBwAAQhAAAIQgADCwQxAAAIQgAAEIGCdAMJhHTEHQAACEIAABCCAcDADEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYRcwAEIAABCEAAAggHMwABCEAAAhCAgHUCCId1xBwAAQhAAAIQgADCwQxAAAIQgAAEIGCdAMJhHTEHQAACEIAABCCAcDADEIAABCAAAQhYJ4BwWEfMARCAAAQgAAEIIBzMAAQgAAEIQAAC1gkgHNYR%2BzvgrLPO6qypqWnyVwEnQwACEOiXwJqWlpZB%2Fa5igXoCCIf6CDfewJQpU3p7eusj7pDWIAAB7QTqa3qkpaWFfxZpDzJD%2FYScAZLWJQiH1uSoGwLpEEA40ska4Yg4a4Qj4nBpDQKREEA4IgkyQxsIRwZIWpcgHFqTo24IpEMA4Ugna4Qj4qwRjojDpTUIREIA4YgkyAxtIBwZIGldgnBoTY66IZAOAYQjnawRjoizRjgiDpfWIBAJAYQjkiAztIFwZICkdQnCoTU56oZAOgQQjnSyRjgizhrhiDhcWoNAJAQQjkiCzNAGwpEBktYlCIfW5KgbAukQQDjSyRrhiDhrhCPicGkNApEQQDgiCTJDGwhHBkhalyAcWpOjbgikQwDhSCdrhCPirBGOiMOlNQhEQgDhiCTIDG0gHBkgaV2CcGhNjrohkA4BhCOdrBGOiLNGOCIOl9YgEAkBhCOSIDO0gXBkgKR1CcKhNTnqhkA6BBCOdLJGOCLOGuGIOFxag0AkBBCOSILM0AbCkQGS1iUIh9bkqBsC6RBAONLJGuGIOGuEI%2BJwaQ0CkRBAOCIJMkMbCEcGSFqXIBxak6NuCKRDAOFIJ2uEI%2BKsEY6Iw6U1CERCAOGIJMgMbSAcGSBpXYJwaE2OuiGQDgGEI52sEY6Is0Y4Ig6X1iAQCQGEI5IgM7SBcGSApHUJwqE1OeqGQDoEEI50skY4Is4a4Yg4XFqDQCQEEI5IgszQBsKRAZLWJQiH1uSoGwLpEEA40ska4Yg4a4Qj4nBpDQKREEA4IgkyQxsIRwZIWpcgHFqTo24IpEMA4Ugna4Qj4qwRjojDpTUIREIA4YgkyAxtIBwZIGldgnBoTY66IZAOAYQjnawRjoizRjgiDpfWIBAJAYQjkiAztIFwZICkdQnCoTU56oZAOgQQjnSyRjgizhrhiDhcWoNAJAQQjkiCzNAGwpEBktYlCIfW5KgbAukQQDjSyRrhiDhrhCPicGkNApEQQDgiCTJDGwhHBkhalyAcWpOjbgikQwDhSCdrhCPirBGOiMOlNQhEQgDhiCTIDG0gHBkgaV2CcGhNjrohkA4BhCOdrBGOiLNGOCIOl9YgEAkBhCOSIDO0gXBkgKR1CcKhNTnqhkA6BBCOdLJGOCLOGuGIOFxag0AkBBCOSILM0AbCkQGS1iUIh9bkqBsC6RBAONLJGuGIOGuEI%2BJwaQ0CkRBAOCIJMkMbCEcGSFqXIBxak6NuCKRDAOFIJ2uEI%2BKsEY6Iw6U1CERCAOGIJMgMbSAcGSBpXYJwaE2OuiGQDgGEI52sEY6Is0Y4Ig6X1iAQCQGEI5IgM7SBcGSApHUJwqE1OeqGQDoEEI50skY4Is4a4Yg4XFqDQCQEEI5IgszQBsKRAZLWJQiH1uSoGwLpEEA40ska4Yg4a4Qj4nBpDQKREEA4IgkyQxsIRwZIWpcgHFqTo24IpEMA4Ugna4Qj4qwRjojDpTUIREIA4YgkyAxtIBwZIGldgnBoTY66IZAOAYQjnawRjoizRjgiDpfWIBAJAYQjkiAztIFwZICkdQnCoTU56oZAOgQQjnSyRjgizhrhiDhcWoNAJAQQjkiCzNAGwpEBktYlCIfW5KgbAukQQDjSyRrhiDhrhCPicGkNApEQQDgiCTJDGwhHBkhalyAcWpOjbgikQwDhSCdrhCPirBGOiMOlNQhEQgDhiCTIDG0gHBkgaV2CcGhNjrohkA4BhCOdrBGOiLNGOCIOl9YgEAkBhCOSIDO0gXBkgKR1CcKhNTnqhkA6BBCOdLJGOCLOGuGIOFxag0AkBBCOSILM0AbCkQGS1iUIh9bkqBsC6RBAONLJGuGIOGuEI%2BJwaQ0CkRBAOCIJMkMb0QrHlClT2kSkOQODqJf09NZH3R%2FNQQACugkY4eDxIQLtLS0tw2JkErNw9Kb%2BD1vzRE6dQYxPWnqCQEwE%2BDv14TRjvuODcMT0zP2rXngiRxwurUEgEgL8nUI41I8y718Q4YmsfoxpAALRE%2BDvFMKhfsgRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxxzhQDjUDzENQCABAggHwqF%2BzBEOhEP9ENMABBIggHAgHOrHHOFAONQPMQ1AIAECCAfCoX7MEQ6EQ%2F0Q0wAEEiCAcCAc6scc4UA41A8xDUAgAQIIB8KhfswRDoRD%2FRDTAAQSIIBwIBzqxzxU4Rg0oEa6u7vV86UBCEAAArERqKurk7U9NV7bMgLW0tLitwhLBKJsyrAKVTjMMN1www2W4mRbCEAAAhAoSmDq1KnS01tf9PJSrkM4SsHodhOEwy1vToMABCCgnQDCYTdB7nDY5fs3u3OHwzFwjoMABCCQkQDCkRFUwWUIR0FwRS9DOIqS4zoIQAACdgkgHHb5Ihx2%2BXKHwzFfjoMABCBQlADCUZRctusQjmycSlvFHY7SULIRBCAAgVIJIByl4vybzRAOu3y5w%2BGYL8dBAAIQKEoA4ShKLtt1CEc2TqWt4g5HaSjZCAIQgECpBBCOUnFyh8Muzv53Rzj6Z8QKCEAAAj4IIBx2qXOHwy5fXlJxzJfjIAABCBQlgHAUJZftOoQjG6fSVnGHozSUbAQBCECgVAIIR6k4eUnFLs7%2Bd0c4%2BmfECghAAAI%2BCCAcdqlzh8MuX15SccyX4yAAAQgUJYBwFCWX7TqEIxun0lZxh6M0lGwEAQhAoFQCCEepOHlJxS7O%2FndHOPpnxAoIQAACPgggHHapc4fDLl9eUnHMl%2BMgAAEIFCWAcBQll%2B06hCMbp9JWcYejNJRsBAEIQKBUAghHqTh5ScUuzv53Rzj6Z8QKCEAAAj4IIBx2qXOHwy5fXlJxzJfjIAABCBQlgHAUJZftOoQjG6fSVnGHozSUbAQBCECgVAIIR6k4eUnFLs7%2Bd0c4%2BmfECghAAAI%2BCCAcdqlzh8MuX15SccyX4yAAAQgUJYBwFCWX7TqEIxun0lZxh6M0lGwEAQhAoFQCCEepOHlJxS7O%2Fnd3LRwXXnihdHZ29l8YKyAAAQh4JDB48GD5xS9%2B4bECEYTDLn7ucNjl6%2F0llRCeQI4RcxwEIKCQgOv%2FMtYXohD%2BXhoOLS0tUf6zOcqmzCBNmTKlt6e3PrinnesnVQhPoOBCoCAIQCA4Aq7%2FNiIc7kcA4XDM3PWTCuFwHDDHQQAChQi4%2FtuIcBSKqaqLEI6q8OW%2F2PWTCuHInxFXQAAC7gm4%2FtuIcLjPGOFwzNz1kwrhcBwwx0EAAoUIuP7biHAUiqmqixCOqvDlv9j1kwrhyJ8RV0AAAu4JuP7biHC4zxjhcMzc9ZMK4XAcMMdBAAKFCLj%2B24hwFIqpqosQjqrw5b%2FY9ZMK4cifEVdAAALuCbj%2B24hwuM8Y4XDM3PWTCuFwHDDHQQAChQi4%2FtuIcBSKqaqLEI6q8OW%2F2PWTCuHInxFXQAAC7gm4%2FtuIcLjPGOFwzNz1kwrhcBwwx0EAAoUIuP7biHAUiqmqixCOqvDlv9j1kwrhyJ8RV0AAAu4JuP7biHC4zxjhcMzc9ZMK4XAcMMdBAAKFCLj%2B24hwFIqpqosQjqrw5b%2FY9ZMK4cifEVdAAALuCbj%2B24hwuM8Y4XDM3PWTCuFwHLCC42pqaqS2tvYv%2F%2Frzn4ANG3plw4YNlX%2F19vYq6IISYyPg%2Bm8jwuF%2BghAOx8xdP6kQDscBB3pcfX29NDYOlAEDBsigxkYZPny4NDcPlcbGxopgrFmzRtra2qW1rU3WrFkr69atk7Vr10pPT0%2BgHVFWbARc%2F21EONxPEMLhmLnrJxXC4TjggI4zdzIGDhwog5uaZMstt5A99thNdth%2BOxk%2FbmxFNPp6dHV1ydtvL5K5816TWS%2B8IG%2B9vUg6Oztl3bpu7nwElG2Mpbj%2B24hwuJ8ihMMxc9dPKoTDccCBHNfQ0CDDhjXLvvvsLUcdcZhsscUkMQKS52FeXlmw8HWZ8eDD8qdZL0h7e7t0d3PHIw9D1mYn4PpvI8KRPZuyVub7C1TWqQ72mTJlSm9Pb72Dk%2FId4fpJhXDky0f7aiMVgwc3yW677iKnfeoUmTRxQiktvTZ%2FgUy75XaZM3eerF69mrsdpVBlkw8ScP23EeFwP38Ih2Pmrp9UCIfjgD0eZ2Rj5IgRcsrJJ8rko46Qurq6Uqvp7u6Wu%2B%2B5T35%2F%2F3RZubIV6SiVLpu5%2FtuIcLifOYTDMXPXTyqEw3HAno4znzoZN3aMXHjB%2BbLzTjtareKZZ%2F8o113%2FW1m2bHnlUy08IFAGAdd%2FGxGOMlLLtwfCkY9X1atdP6kQjqojC34Dc2dj3Lix8uUvfV622XorJ%2FW%2B8OJL8otfXiPLli%2FnTocT4vEf4vpvI8LhfqYQDsfMhwyqr3wE0eUjxPeyuOw%2F5rOMbJiPuF785S9Yv7Px1xyfnvmM%2FNevr618nJbv7oh5ytz0ZoTD98O82bprnd%2FvoTEcWlpaovxnc5RNmaEN9U2jrp9QZngRDtfU3Z1nPt567jlT5GOTj3R36AdOunnabXLn3fdIV5dbifbSLIdaJcDfqj%2FjRTisjpmdzRGO%2Fz%2B8CIedGfO9q3lT6L777CWXXPSlyreG%2BnisXbtOfvDDK%2BWVV%2BbI%2BvXrfZTAmZEQQDgQDrWjjHAgHGqHN0Ph5qWU5qFD5dv%2F8k0ZP35chivsLZk9e67824%2BukvZVq3hpxR7m6HdGOBAOtUOOcCAcaoc3Q%2BHm7saxxxwtnznv7Ayr7S4x79%2F4ydX%2FLk%2FPfJavQreLOurdEQ6EQ%2B2AIxwIh9rhzVD44MGD5X%2F%2Bj3%2BSiSV9sVeGIze55OWXZ8sPf%2FQT6ejorHYrrk%2BUAMKBcKgdfYQD4VA7vP0Ubt6vYb5J9Bv%2F%2BNXcX1dui4l5%2F8Y%2Ffes7svD1N%2FhuDluQI98X4UA41I44woFwqB3efgpvaKiX886ZWnlJJaRHy403yz33%2Fl7MG0l5QCAvAYQD4cg7M8GsRzgQjmCGseRCzEdhv%2Fedb8mkSRNL3rm67Wa98KL86Mc%2Flc7Vq6vbiKuTJIBwIBxqBx%2FhQDjUDu8mCq980dewYfKzq68s%2FbdSquW1YsVK%2Bdo3viVtbW3VbsX1CRJAOBAOtWOPcCAcaoe3H%2BHYdtttKnc4QnuY93FcdsU3ZMmSpXw8NrRwFNSDcCAcCsa07xIRDoRD7fBuonDzcdi99txDLr%2FskiDbM28cnb9gIV8CFmQ6YReFcCAcYU%2FoJqpDOBAOtcPbj3AcdOD%2BlR9qC%2FHx3X%2F9gbz8ymyEI8RwAq8J4UA4Ah%2FRjZeHcCAcaoe3H%2BE45OAD5Utf%2BGyQ7X3v%2B%2F9HXnr5FYQjyHTCLgrhQDjCnlDucPSbD0%2FifhGpWmBeUkE4VEVGsRkJ8LcK4cg4KuEt4w4HdzjCm8rqK0I4qmfIDmESQDgQjjAnM0NVCAfCkWFM1C1BONRFRsEZCSAcCEfGUQlvGcKBcIQ3ldVXhHBUz5AdwiSAcCAcYU5mhqoQDoQjw5ioW4JwqIuMgjMSQDgQjoyjEt4yhAPhCG8qq68I4aieITuESQDhQDjCnMwMVSEcCEeGMVG3BOFQFxkFZySAcCAcGUclvGUIB8IR3lRWXxHCUT1DdgiTAMKBcIQ5mRmqQjgQjgxjom4JwqEuMgrOSADhQDgyjkp4y6ZMmbJSRIaHV5n7inp6690fGuGJ5pdazcP87%2Ff%2Fves2a2tr5eCDDpAvfv5C10dnOu%2F7%2F%2FuHXr%2FavLe3979%2FOM78ex56CBjh4FEh0NrS0jIiRhZ%2F%2FgvKI1oC3OmpLlojFuYf8vX1dbL5ZpvJ%2BPHjZeTIEdLY2Ci1fxGQ6k7Id3VNbY1sucUWcuAB%2B%2BW70NHqhx95TJa%2B8470bnD%2FD%2FsNGzZI15o18t57K2TR4sWycuVK6elZL%2BY%2FRz4cDUAVxxjhaGlp4Z9JVTAM%2FVLCDT2hKutDOIoBNKLR0NAgEyeMl8MOPVj23HMPGTtmjLc7G8W6SPeq9evXy9Kl78izf3xO%2FvD4k7J4yVLp6elBPAIeCYQj4HBKKg3hKAlkqNsgHPmTqa%2Bvr4jGSZ88Qfbfbx8x%2FzcPvQTWrl0nTz71tNx5972yePESflgu0CgRjkCDKbEshKNEmCFuhXDkS2VwU5OYn38%2F84zTpLl5aL6LWR00gfdWrJAbb5omM5%2F5o6xevTroWlMsDuGIP3WEI%2FKMEY7sAQ8bNkxOOP44OfH4j1fet8EjPgLmZZVbb79T7p%2F%2BoLS1tcXXoOKOEA7F4WUsHeHICErrMoQjW3LDmpvlhBM%2BLp884RO8TyMbMrWrzPs7brntDrn%2F%2FhnS1t6uto%2FYCkc4Ykv0b%2FtBOCLPGOHoP%2BCmpiY5%2FNCD5dPnnc2djf5xRbHC3On41TXXyeNPPCVdXV1R9KS9CYRDe4L9149w9M9I9QqEY9PxmS%2FS2mH77eTSS77MezZUT3r%2B4s17Oq66%2BucyZ%2B68ykdnefglgHD45e%2FidITDBWWPZyAcm4Y%2FavPN5Zyzzwr2ey08jk4SRz%2Fy6B%2Fkd9NulWXLlifRb8hNIhwhp1NObQhHORyD3QXh2Hg05uOue%2By%2Bq1z2lYv46GuwE2y3MPOR2St%2FfLXMeuFFPi5rF3W%2FuyMc%2FSJSvwDhUB%2FhphtAODbOZ7ORI%2BW0006WyUceEfkU0N6mCNw3fYbcdvudlW8o5eGPAMLhj72rkxEOV6Q9nYNwbBz8lltuIZdferGMHj3KUzocGwKBRYsWy1U%2F%2FbksWPh6COUkWwPCEX%2F0CEfkGSMcfQfc0GBeTtldvnrpRXwyJfLnQH%2FtmY%2FJ%2FvDKq%2BT5P83iZZX%2BYFn8%2FyMcFuEGsjXCEUgQtspAOPomO3jwYDnqiMPk3HOm2ELPvooI%2FN%2FrbhDzw3OdnZ2Kqo6rVIQjrjz76gbhiDxjhKPvgIcPHyafPOH4yjeL8oDA7XfeLffcc5%2BsbG0FhicCCIcn8A6PRTgcwvZxFMLRN3XzE%2FOnnXqyHD35SB%2BxcGZgBHjjqP9AEA7%2FGdiuAOGwTdjz%2FghH3wGYT6icftopctSRh3tOiONDIDB9xkNy6213yLvvvhdCOUnWgHDEHzvCEXnGCAfCEfmIl9IewlEKxqo2QTiqwqfiYoRDRUzFi0Q4EI7i05POlQiH%2F6wRDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K67PpkeAAAciUlEQVQA4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCAfC4XkEVRyPcPiPCeHwn4HtChAO24Q9749wIByeR1DF8QiH%2F5gQDv8Z2K4A4bBN2PP%2BCEffAQwcOEAmTZwoY8aMyZRQTY1IXV2dNA4cKMOGDZMxY0bLpEkTZcL48dLQUJ9pDxaFSwDh8J8NwuE%2FA9sVIBy2CXveH%2BHoO4Camhqpra2tSESeh7nOXGP%2BNaChQZqHNcvOO%2B4g%2B%2By9l2y%2F%2FXbIRx6YAa196ulnZMaDD0tra2umqjb09sq6detk9eou6erqkvXr10tvb2%2Bma1nUNwGEI%2F7JQDgizxjhsBuwkRZzt6SpqUm2mDRJjjziMNln7z2lvp67HnbJl7v72rVrZXVXl2zYsCHbxr1SEYyenh7p6OyUJUuWymuvzZeXX5kjS5Yuke7unmz7sOq%2FCSAc8Q8DwhF5xgiHm4DNnY%2F6%2BjoZOnSo7LD9dnLSJ0%2BQrbf6iJvDOcUbASMd5l9GMLq7uyt3Oxa%2B%2FoY8%2FsST8uJLL0tHR6e32rQdjHBoSyx%2FvQhHfmaqrkA43MZlxKOhoaHyHo9jPzZZJh91RO6XbdxWzGllEzDi0dm5WuYvWCD3T58hr8yeK%2BYOCo9NE0A44p8QhCPyjBEOPwGbl1pGDB8uBx10gJxx2ikycOBAP4VwqjcCRjxWrmyVx%2F7whDz40COy%2FN13vdWi4WCEQ0NK1dWIcFTHL%2FirEQ5%2FEZm7HUOGDJED9t9XzjtnauW9HjzSImBebjHvDXn%2B%2BVlyx513yxtvvsWbSzcyAghH%2FM8NhCPyjBEOvwG%2FLx1HHHaITJ1yBi%2Bv%2BI3D2%2BnmJRXzno5bbr1D5i9YiHT0kQTC4W08nR2McDhD7ecghMMP9w%2BeaqRj%2BPDhcurJJ8qxxxztvyAq8ELAfIz2uednybRbb5c33njTSw0hH4pwhJxOObUhHOVwDHYXhCOMaIx0jB83Vv7hi5%2BTbbbZOoyiqMI5AXOn44EHH5Z77r1Pli%2FnPR0fDADhcD6Ozg9EOJwjd3sgwuGW96ZOM99IuudH95CLv%2FwlviAsnFicV9LW3i433jSt8tHZrq41zs8P9UCEI9RkyqsL4SiPZZA7IRzhxGLucjQ3N8tnzjtbDj7ogHAKoxKnBMwbSefOe1Wub7lR5s591enZIR%2BGcIScTjm1IRzlcAx2F4QjrGjMV6LvtOMO8vWvXVb5vg4eaRIwXxR2y223y%2FQHHpT29lVpQvirrhGO%2BMcA4Yg8Y4QjvIDNj7%2BZ93Lssfuu4RVHRc4IvPrqa3Ld9b%2BVOXPnOTsz5IMQjpDTKac2hKMcjsHugnCEF82AAQPkiMMPlQv%2B7tPhFUdFzgisXbtOfnN9izz86B%2F4JlIRQTicjZ63gxAOb%2BjdHIxwuOGc5xTzXo6JE8bLv37323wZWB5wEa596OFH5bY77qr8%2BFvqD4Qj%2FglAOCLPGOEIM%2BBhzc1yxeVfke223SbMAqnKCYEFC1%2BX637TIi%2B%2FMtvJeSEfgnCEnE45tSEc5XAMdheEI8xozM%2FZn3v2WZUfd%2BORLoHOzk75z19eI089PTP5bx9FOOJ%2FHiAckWeMcIQZsPkxt%2BOOOVrOnnpmmAVSlRMC5iOyv7rmOjEvrZhvIk35gXDEnz7CEXnGCEeYAZuPxB54wH6VT6vwSJvAjb%2BbJvffP0NWdXQkDQLhiD9%2BhCPyjBGOMAOur%2F%2Fzt45eftnFYRZIVc4I3Hb7XXLv7%2B%2BXla2tzs4M8SCEI8RUyq0J4SiXZ3C7IRzBRVIpyAiH%2BR6Or11%2BaZgFUpUzAnfceY%2Fcfe99snLlSmdnhngQwhFiKuXWhHCUyzO43RCO4CKpFGR%2BV2WfvfeSr1z8D2EWSFXOCJifrL%2F3vunS1tbm7MwQD0I4Qkyl3JoQjnJ5BrcbwhFcJJWCzJd%2FHX7owXLhBeeHWSBVOSPwmxt%2BK9MfeEi6urqcnRniQQhHiKmUWxPCUS7P4HZDOIKLpFLQoEGNcvJJJ8opJ50YZoFU5YSA%2BU2VX%2F7qGnn0scdl%2Ffr1Ts4M9RCEI9RkyqsL4SiPZZA7IRxBxiJDhgyWL3zuAtl3n73DLJCqnBBY%2Fu678qtfXyvPPT%2BL7%2BGo6ZGWlhb%2BmeRk8vwcQrh%2BuDs7FeFwhjrXQSNGjJDvfedbsvnmm%2BW6jsVxEZj1wovy2xtvlvkLFsbVWIFuuMNRAJqySxAOZYHlLRfhyEvM%2FnrzE%2FU777yjfONrXxXz73mkScB86Zf5HRXzkdjW1rTfMGomAOGI%2F3mAcESeMcIRXsCDBg2SM047RY7%2FxHHhFUdFzgisWLFSrrn2N%2FLMs88l%2F%2F4NhMPZ2Hk9COHwit%2F%2B4QiHfcZ5TjC%2FFDt61Cj5p29eIWNGj85zKWsjI%2FCHx5%2BUabfeLosWLY6ss2LtcIejGDdNVyEcmtIqUCvCUQCaxUvMb6gcPflIOWfqmbycYpFz6Fubl1DMx2GffGqmdHd3h16uk%2FoQDieYvR6CcHjFb%2F9whMM%2B46wnmLsb48aNlcsvvVgmTBif9TLWRUbAvHdj%2BgMPyp133SvvLFsWWXfF20E4irPTciXCoSWpgnUiHAXBWbjM%2FCT96Z86WY479mPc3bDAV8uWs%2BfMlZun3SavzJ7Dezc%2BEBrCoWWCi9eJcBRnp%2BJKhCOMmMyvw5qvMv%2F788%2BT5uahYRRFFc4JLFm6VMxXmc985lnp6lrj%2FPyQD0Q4Qk6nnNoQjnI4BrsLwuE%2FGvPR16233ko%2B%2B%2FefkS233MJ%2FQVTghcB7762QO%2B66Rx5%2F4klpb1%2FlpYaQD0U4Qk6nnNoQjnI4BrsLwuE3GiMbEydOkPM%2FfY7suMP2Ultb67cgTvdCYOnSdyrft%2FHEUzOlvb09%2BW8V7SsEhMPLaDo9FOFwitv9YQiHe%2Bbvn2hk4yMf2VKmnnm67LTTDpWfpOeRFgHzBtG5816V%2B6fPkFkvvCQdHR3IxkZGAOGI%2F7mBcESeMcLhJ2Dzno09dt9NTjrxeNlmm62QDT8xeD3V%2FNz8U08%2FI088%2BbS8%2FsYbvGejnzQQDq%2Fj6uRwhMMJZn%2BHIBxu2ZuPvo4cMUKOOvJwOejA%2FWXs2DF8IsVtBN5PM9%2Bx8eJLL8szz%2F5R5s9fKCtbW6Wnp8d7XaEXgHCEnlD19SEc1TMMegeEw008RjQGD26SvffaUw468ADZeqstZdiwYW4O5xSvBMzPyre1tctbby%2BSea%2B%2BKq%2B9tkDMp1HMV5evW7fOa22aDkc4NKVVrFaEoxg3NVchHHajamiol7Fjxsiuu%2Bwsu%2B%2B%2Bq0ycMKHyC7D8KJtd7mXvvnDh65X3Wqxe3ZVp617prXxDqFnf2tpa%2BdTJqo4OaW9rl47OTr5fIxPFDy9COApAU3YJwqEssLzlIhx9EzOfFhnU2Cj1DQ2ZkdbV1crAAQNlyNAhsvlmI2Xs2LEyaeIEGTN6lIwcOVKGDx%2BGaGSmGdbCRx97XO659z5ZsXJlpsJ6e0V6ezdId3dPRTzMXQ7zBlEexQkgHMXZabkS4dCSVME6EY6%2BwRk5OOboyZVPj2R5mJdMzP%2FU1tXKgIYGMb%2BJYr45tKlpkAwYMCDLFqwJmMD0GQ%2FJrbfdIe%2B%2B%2B17AVcZdGsIRd76mO4Qj8owRjr4DHj16lJx79lmy%2F377Rj4BtJeFAMKRhZLdNQiHXb4h7I5whJCCxRoQDoTD4nhFszXC4T9KhMN%2FBrYrQDhsE%2Fa8P8KBcHgeQRXHIxz%2BY0I4%2FGdguwKEwzZhz%2FsjHAiH5xFUcTzC4T8mhMN%2FBrYrQDhsE%2Fa8P8KBcHgeQRXHIxz%2BY0I4%2FGdguwKEwzZhz%2FsjHAiH5xFUcTzC4T8mhMN%2FBrYrQDhsE%2Fa8P8KBcHgeQRXHIxz%2BY0I4%2FGdguwKEwzZhz%2FsjHAiH5xFUcTzC4T8mhMN%2FBrYrQDhsE%2Fa8P8KBcHgeQRXHIxz%2BY0I4%2FGdguwKEwzZhz%2FsjHAiH5xFUcTzC4T8mhMN%2FBrYrQDhsE%2Fa8P8KBcHgeQRXHIxz%2BY0I4%2FGdguwKEwzZhz%2FsjHAjH%2BwS6utbI4iVLZNmyZdLa2iadnasrPzwmNTWV34cZPLhJRowYLqNHjZLx48dVfi8mlQfC4T9phMN%2FBrYrQDhsE%2Fa8P8KRtnCsWbOm8rPrc%2BbMkzffelvaV7VXRMP8593rumXDhg0VQLV1dRXpaBzUKIObmmTYsGGy5RaTZMcdt5fttt1WBg6M%2BwfqEA7Pf6hEBOHwn4HtChAO24Q9749wpCkc5m7Gc88%2FL889P0veXrS48iuoHR0dmX9C3fw6bvPQobL5qM1l0sQJsvdeH5WP7rF7tHc9EA7Pf6gQDv8BOKgA4XAA2ecRCEdawtHb2yuz58yVhx5%2BVF6bv0DeeWeZ9PT0VDWCDQ0NMnbsGNlh%2B%2B3kqCMPl623%2BojU1tZWtWdoFyMc%2FhPhDof%2FDGxXgHDYJux5f4QjHeEwL5M8%2BNAj8vgTT8nrb7z55%2FdnlPgw7%2BkwsnHYoQfLIQcfFNXLLAhHiYNScCuEoyA4RZchHIrCKlIqwhG%2FcJi7GqtWdcitt98pT898pvLyia2HeallzJjRcvBBB8gJnzhOmpqaxPxn2h8Ih%2F8EEQ7%2FGdiuQP9fCtuElO%2BPcMQtHEY22letkhtvmiZPPjVTOjs7nUyseVPpoYccKKeefFLl0y3apQPhcDI2mzwE4fCfge0KEA7bhD3vj3DELRyrV6%2BW3940TR559DExbxR1%2BRgyZLAc87HJctKJJ8igQY0ujy79LISjdKS5N0Q4ciNTdwHCoS6yfAUjHPEKh3kz6F13%2F15uv%2BMu6Vy9Ot9glLTa3Ok44%2FRT5YjDDhHz5lKtD4TDf3IIh%2F8MbFeAcNgm7Hl%2FhCNO4TDfn%2FHiSy%2FLz%2F%2Fzv%2BS991Z4nbIJ48fJ5z93gWy7zdZSV1fntZaihyMcRcmVdx3CUR7LUHdCOEJNpqS6EI74hOP99238%2BCc%2Fk5defqWkSSm%2BjXn%2Fxv777SMXXnC%2BDB0ypPhGHq9EODzC%2F8vRCIf%2FDGxXgHDYJux5f4QjPuFYv369PDDjIbn2NzdId3d137FR1ng2NjbK5y78O9lv332koaG%2BrG2d7YNwOEO90YMQDv8Z2K4A4bBN2PP%2BCEdcwmHubrS1tcv3vv8DeePNtzxP14eP32WXneSSi75U%2BYZSbZ9aQTj8jxLC4T8D2xUgHLYJe94f4YhLOMzdjSeefFp%2B9vNfiPn3IT3M761cesmXZffddlX3Xg6Ew%2F8kIRz%2BM7BdAcJhm7Dn%2FRGOuIRj7dp1cuWPr5bnnv%2BT58nq%2B%2FjJRx0h550zVd3HZBEO%2F%2BOEcPjPwHYFCIdtwp73RzjiEQ7zcsqy5cvl69%2F8F%2BnocPMFX3nHd9SozeW73%2F5nGT58uKqXVRCOvEmXvx7hKJ9paDsiHKElUnI9CEc8wmFeQnn2j8%2FLv%2F3oqsy%2F%2BlryOPW7nflY7D9%2F82uVH3rT9BFZhKPfaK0vQDisI%2FZ%2BAMLhPQK7BSAcffM1%2F0383LOnyAH772s3gBJ3N59IuXnarZXfTAn5cf5nzpXJRx4uAwYMCLnMD9U2%2FYEHK1xt%2Fg6NGhieCkU4PIF3eCzC4RC2j6MQjr6pb775ZjLlzNPl0EMO8hFLoTPN%2Bzeu%2FtnP5emZzxa63tVFxx37sQpbTV93fve998mdd90jK1asdIWJc%2F6KAMIR%2F0ggHJFnjHD0HfCI4cPlpE8eL5%2F4%2BLFqJsD8%2FPx3vvu%2F5LX5C4Kueb9995YvfP5CGdzUFHSdHyzupptvkfunz5D29lVqao6tUIQjtkT%2Fth%2BEI%2FKMEY6%2BAzb%2FMDzi8EPl0%2BedrWYCzI%2Bz%2FeM3vyVLliwNumbzfRyXXXKRmB930%2FAwb8b99%2F%2F4ZeXXdteuXauh5ChrRDiijPVDTSEckWeMcPQdcH19vey2685y2VcuUvNeAyMcX73iG7L83XeDntoddthOrvjqV9R8zbm5q3HlT66W2bPnivmNGh5%2BCCAcfri7PBXhcEnbw1kIR9%2FQzTdhTpwwXr74hc%2FKNltv5SGZ%2FEca4bjsiq8H%2F8ZG8wmVKy7XIxyzXnhRrrn2elm0aHH%2BULiiNAIIR2kog90I4Qg2mnIKQzg2zrG5eah8%2FNhj5FOnnlQObMu7IBzlAzYfNb6%2B5UZ56OHHpLMzzO82Kb%2FrMHdEOMLMpcyqEI4yaQa4F8Kx8VDM90Rsv%2F228sXPXShjxowOML0Pl4RwlB%2FRwoWvyy9%2Ffa3Mn7%2BAl1PKx5trR4QjFy6VixEOlbFlLxrh2DSr9%2B9ynHzSCcF%2FURXCkX3us6w0bxC96Xe3yMOPPCarOjqyXMIaiwQQDotwA9ka4QgkCFtlIBybJmvuckycOEGmnnWG7PnR3W3FUMq%2BCEcpGCubmE%2BmmE%2Bl%2FG7arbJ48ZJgv7m1vI7D3wnhCD%2BjaitEOKolGPj1CEf%2FAZlvxNx1l53ljNNPla23%2Bkj%2FF3hagXCUB958IsXIxtx5r0p3d3d5G7NTYQIIR2F0ai5EONREVaxQhCMbN%2FOtmHvtuaeceMLHg5UOhCNblptaZe5szJk7T%2B66%2B%2Ffy4ksvi%2FkyNR5hEEA4wsjBZhUIh026AeyNcGQPwUjH7rvtJpOPOlx223WX4N7TgXBkz7KvleZOxp9mvSgzHnxYXpk9B9moDmfpVyMcpSMNbkOEI7hIyi0I4cjH07y8Yr6XY%2F%2F99pG999ozqE%2BvIBz5snx%2FtbmrYd6n8exzz8vMmc%2FK62%2B8ycsoxVBavQrhsIo3iM0RjiBisFcEwpGfbW1trYwYMVx22nEH2WmnHWX7bbeRsWPHysCBfn%2F9FOHIl6V5uWTxkqUyb96rMnvOXJkzZ560tbfz8dd8GJ2tRjicofZ2EMLhDb2bgxGO4pzNJ1hGjhwhW0yaJOPGjZHRo0ZVRKSpqUnMV6PX1tQW37zAlWvXrZWrfvof0tbWVuBqd5dMmjRRzpl6pjQNcvvjbRt6N0hPd490dHZKa2urvLNsuSxZskTefOttaW1tE%2FMlXzzCJYBwhJtNWZUhHGWRDHQfhKP6YMzXoNfX10nz0GYZOnSINDY2Sl19ndSI26eP%2BZ2PV1%2BbH%2FzLAUbIttxikvP3wPRKr%2FT09MiarjXSvqpDOjpWSU%2FPej7yWv1TwMkOCIcTzF4PcfsX02uraR6OcKSZO11DQBsBhENbYvnrRTjyM1N1BcKhKi6KhUCyBBCO%2BKNHOCLPGOGIPGDag0AkBBCOSILcRBsIR%2BQZIxyRB0x7EIiEAMIRSZAIR%2FxBbqxDhCPd7OkcApoIIBya0ipWK3c4inFTcxXCoSYqCoVA0gQQjvjjRzgizxjhiDxg2oNAJAQQjkiC5CWV%2BIPkJZV0M6ZzCMRAAOGIIcVN98Adjsgz5g5H5AHTHgQiIYBwRBIkdzjiD5I7HOlmTOcQiIEAwhFDitzhiD%2FFTXTIHY6k46d5CKghgHCoiapwobykUhidjgsRDh05USUEUieAcMQ%2FAQhH5BkjHJEHTHsQiIQAwhFJkLyHI%2F4geQ9HuhnTOQRiIIBwxJAi7%2BGIP0Xew5F0xjQPgRgIIBwxpIhwxJ8iwpF0xjQPgRgIIBwxpIhwxJ8iwpF0xjQPgRgIIBwxpIhwxJ8iwpF0xjQPgRgIIBwxpIhwxJ8iwpF0xjQPgRgIIBwxpIhwxJ8iwpF0xjQPgRgIIBwxpIhwxJ8iwpF0xjQPgRgIIBwxpIhwxJ8iwpF0xjQPgRgIIBwxpIhwxJ%2FipoVjpYgMTxoCzUMAAhoItLa0tIzQUCg1FiPAV5sX48ZVEIAABCAAAQjkIIBw5IDFUghAAAIQgAAEihFAOIpx4yoIQAACEIAABHIQQDhywGIpBCAAAQhAAALFCCAcxbhxFQQgAAEIQAACOQggHDlgsRQCEIAABCAAgWIEEI5i3LgKAhCAAAQgAIEcBBCOHLBYCgEIQAACEIBAMQIIRzFuXAUBCEAAAhCAQA4CCEcOWCyFAAQgAAEIQKAYAYSjGDeuggAEIAABCEAgBwGEIwcslkIAAhCAAAQgUIwAwlGMG1dBAAIQgAAEIJCDAMKRAxZLIQABCEAAAhAoRgDhKMaNqyAAAQhAAAIQyEEA4cgBi6UQgAAEIAABCBQjgHAU48ZVEIAABCAAAQjkIIBw5IDFUghAAAIQgAAEihFAOIpx4yoIQAACEIAABHIQQDhywGIpBCAAAQhAAALFCCAcxbhxFQQgAAEIQAACOQggHDlgsRQCEIAABCAAgWIEEI5i3LgKAhCAAAQgAIEcBBCOHLBYCgEIQAACEIBAMQIIRzFuXAUBCEAAAhCAQA4CCEcOWCyFAAQgAAEIQKAYAYSjGDeuggAEIAABCEAgBwGEIwcslkIAAhCAAAQgUIwAwlGMG1dBAAIQgAAEIJCDAMKRAxZLIQABCEAAAhAoRgDhKMaNqyAAAQhAAAIQyEEA4cgBi6UQgAAEIAABCBQjgHAU48ZVEIAABCAAAQjkIIBw5IDFUghAAAIQgAAEihFAOIpx4yoIQAACEIAABHIQQDhywGIpBCAAAQhAAALFCCAcxbhxFQQgAAEIQAACOQggHDlgsRQCEIAABCAAgWIEEI5i3LgKAhCAAAQgAIEcBBCOHLBYCgEIQAACEIBAMQIIRzFuXAUBCEAAAhCAQA4CCEcOWCyFAAQgAAEIQKAYAYSjGDeuggAEIAABCEAgBwGEIwcslkIAAhCAAAQgUIwAwlGMG1dBAAIQgAAEIJCDAMKRAxZLIQABCEAAAhAoRgDhKMaNqyAAAQhAAAIQyEEA4cgBi6UQgAAEIAABCBQjgHAU48ZVEIAABCAAAQjkIIBw5IDFUghAAAIQgAAEihFAOIpx4yoIQAACEIAABHIQQDhywGIpBCAAAQhAAALFCCAcxbhxFQQgAAEIQAACOQggHDlgsRQCEIAABCAAgWIEEI5i3LgKAhCAAAQgAIEcBBCOHLBYCgEIQAACEIBAMQIIRzFuXAUBCEAAAhCAQA4CCEcOWCyFAAQgAAEIQKAYAYSjGDeuggAEIAABCEAgBwGEIwcslkIAAhCAAAQgUIwAwlGMG1dBAAIQgAAEIJCDAMKRAxZLIQABCEAAAhAoRgDhKMaNqyAAAQhAAAIQyEEA4cgBi6UQgAAEIAABCBQjgHAU48ZVEIAABCAAAQjkIIBw5IDFUghAAAIQgAAEihFAOIpx4yoIQAACEIAABHIQQDhywGIpBCAAAQhAAALFCCAcxbhxFQQgAAEIQAACOQj8P4Ba2YXWKFRUAAAAAElFTkSuQmCC%22%3E%0A%20%20%3Cscript%3E%0A%20%20%20%20document.addEventListener(%22DOMContentLoaded%22%2C%20()%20%3D%3E%20%7B%0A%20%20%20%20%20%20const%20main%20%3D%20%22https%3A%2F%2Fraw.githubusercontent.com%2FBlobby-Boi%2FExtPrint3r%2Frefs%2Fheads%2Fmain%2Findex.html%22%3B%0A%20%20%20%20%20%20const%20fallback%20%3D%20%22https%3A%2F%2Fcdn.jsdelivr.net%2Fgh%2FBlobby-Boi%2FExtPrint3r%2Findex.html%22%3B%0A%0A%20%20%20%20%20%20fetch(main)%0A%20%20%20%20%20%20%20%20.then(response%20%3D%3E%20%7B%0A%20%20%20%20%20%20%20%20%20%20if%20(!response.ok)%20throw%20new%20Error(%22Primary%20URL%20failed%22)%3B%0A%20%20%20%20%20%20%20%20%20%20return%20response.text()%3B%0A%20%20%20%20%20%20%20%20%7D)%0A%20%20%20%20%20%20%20%20.catch(()%20%3D%3E%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20fetch(fallback).then(response%20%3D%3E%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20(!response.ok)%20throw%20new%20Error(%22Fallback%20URL%20failed%22)%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20return%20response.text()%3B%0A%20%20%20%20%20%20%20%20%20%20%7D)%3B%0A%20%20%20%20%20%20%20%20%7D)%0A%20%20%20%20%20%20%20%20.then(html%20%3D%3E%20%7B%0A%20%20%20%20%20%20%20%20%20%20document.open()%3B%0A%20%20%20%20%20%20%20%20%20%20document.write(html)%3B%0A%20%20%20%20%20%20%20%20%20%20document.close()%3B%0A%20%20%20%20%20%20%20%20%7D)%0A%20%20%20%20%7D)%3B%0A%20%20%3C%2Fscript%3E%0A%3C%2Fhead%3E%0A%3C%2Fhtml%3E

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30650959

79640860

Date: 2025-05-27 16:28:17
Score: 2
Natty:
Report link

I found the solution below. It passes the testError successfully. Could you please share your opinion about this code?

const originalError=globalThis.Error;
const Error=(new (class {
  Error=function(msg){
  if(this instanceof Error){
    const error=new originalError(msg);
    if(msg)
      this.message=error.message;
    this.stack=error.stack;
    return this;
  }
  return new Error(msg);
}})).Error;
Object.getOwnPropertyNames(originalError.prototype).forEach((prop) => {
  if (prop !== 'constructor') {
    Object.defineProperty(Error.prototype, prop, Object.getOwnPropertyDescriptor(originalError.prototype, prop));
  }
});
Object.getOwnPropertyNames(originalError).forEach((prop) => {
  if (prop !== 'prototype')
    Object.defineProperty(Error, prop, Object.getOwnPropertyDescriptor(originalError, prop));
});

const errorTypes = [
  'TypeError',
  'ReferenceError',
  'SyntaxError',
  'RangeError',
  'EvalError',
  'URIError',
  'AggregateError',
];
errorTypes.forEach((errorType) => {
  const errorConstructor = globalThis[errorType];
  if (errorConstructor) {
    Object.setPrototypeOf(errorConstructor, Error);
    Object.setPrototypeOf(errorConstructor.prototype, Error.prototype);
  }
});
originalError.prepareStackTrace = function prepareStackTrace(err, stack) {
  if(Object.getPrototypeOf(Object.getPrototypeOf(err))===originalError.prototype){
    Object.setPrototypeOf(Object.getPrototypeOf(err), Error.prototype);
  }
  if (Error.prepareStackTrace) {
    err.stack = Error.prepareStackTrace(err, stack);
  }
  return err.stack;
};
Object.defineProperty(globalThis, 'Error', {
  value: Error,
  writable: true,
  configurable: true,
  enumerable: false,
});
function testError(){
  if(Object.hasOwn(Error,"caller") || Object.hasOwn(Error,"arguments") || Object.hasOwn(Error,"prepareStackTrace"))
      return false;
  try {
      new Error()
  } catch (error) {
      return false;
  }
  try {
      Error()
  } catch (error) {
      return false;
  }
  try {
      Object.create(Error).toString()
  } catch (error) {
      if(error.stack.includes("Object.toString"))
         return false
  }
  return new Error() instanceof Error && new TypeError() instanceof Error && Error() instanceof Error && TypeError() instanceof Error
}
console.log(`Error constructor patched: ${testError() ? 'success' : 'failed'}`);

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • RegEx Blacklisted phrase (2.5): Could you please share your
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: a.gulcan

79640857

Date: 2025-05-27 16:27:17
Score: 2
Natty:
Report link

On Ubuntu 24.04 or later you need to install `clang-tools`:

sudo apt install clang-tools
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: q4a

79640845

Date: 2025-05-27 16:20:14
Score: 5.5
Natty: 5.5
Report link

The document is not clear on where to add above code snippet and in which file?

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

79640843

Date: 2025-05-27 16:18:14
Score: 2
Natty:
Report link

Running appium with appium --base-path /wd/hub worked for me

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

79640841

Date: 2025-05-27 16:18:14
Score: 3
Natty:
Report link

Check if you are using Framework 4.7.1 or .net core and validate Namespace System.IdentityModel.Tokens Namespace or Microsoft.IdentityModel.Tokens

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

79640840

Date: 2025-05-27 16:17:13
Score: 3
Natty:
Report link

I think u should edit the config file depends on what you use with the right code and right module object u can search it online and copy and paste it .

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

79640839

Date: 2025-05-27 16:16:13
Score: 4
Natty: 4.5
Report link

The button will change to orange and say 'Eval in Adobe (Program Name Here)'. You can then use it to immediately enter debug without having to reselect your target application.

Is there a shortcut for it instead using the mouse?

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

79640838

Date: 2025-05-27 16:14:12
Score: 0.5
Natty:
Report link

You can't hide it, but you can preset values. They will be set on UI and "hidden"

springdoc.swagger-ui.oauth.client-id=${keycloak.resource}
springdoc.swagger-ui.oauth.client-secret=${keycloak.credentials.secret}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Murik

79640837

Date: 2025-05-27 16:13:11
Score: 4
Natty:
Report link

I have script working check my github Git URL

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

79640830

Date: 2025-05-27 16:08:09
Score: 12 🚩
Natty:
Report link

did you find the issue? Can you share?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • RegEx Blacklisted phrase (3): did you find the
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find the is
  • Low reputation (1):
Posted by: Rehan Ahmed

79640827

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

In Questa the following worked for me:

start simulation -> optimisation options -> visibility:

Set the option: apply full visibility to all modules (full debug mode)

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

79640826

Date: 2025-05-27 16:07:09
Score: 4
Natty: 5
Report link

Thank you for the question and the answers!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simon Ortiz

79640824

Date: 2025-05-27 16:06:08
Score: 2.5
Natty:
Report link

Nice work! Ask and answer your own question, and post a link to your website to drive traffic there.

⭐⭐⭐⭐⭐

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

79640807

Date: 2025-05-27 15:53:05
Score: 2
Natty:
Report link
namenodeip:8088
yarn logs -applicationId <application_1747923104299_0002>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mayank Patel

79640805

Date: 2025-05-27 15:52:04
Score: 2
Natty:
Report link

I am having the problem where i want the user to choose one of the listed def functions from a different module

I think a general solution is to make a python fill than run it using os method

Reasons:
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Samarth sachdev

79640799

Date: 2025-05-27 15:47:02
Score: 2
Natty:
Report link

The default message template used in the verification email triggers a block for many email providers. Change the message template to something more official-sounding.

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

79640797

Date: 2025-05-27 15:47:02
Score: 2.5
Natty:
Report link

There is now an option to configure the NLB timeout:

https://aws.amazon.com/fr/blogs/networking-and-content-delivery/introducing-nlb-tcp-configurable-idle-timeout/

Note that it only works on TCP and has a max value of 6000 seconds (1h40).

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

79640795

Date: 2025-05-27 15:43:01
Score: 3.5
Natty:
Report link

amount of Stack memory is limited and by calling 10^9 times function pow you spent it all

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

79640793

Date: 2025-05-27 15:41:00
Score: 2.5
Natty:
Report link

You just asked your question 13 years and 4 months too early! This feature is now available in preview, described here:

https://github.com/dotnet/sdk/blob/main/documentation/general/dotnet-run-file.md

MS Build 2025 video on this feature: https://youtu.be/98MizuB7i-w?si=FIsCbsoYrPGyiUdb

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: CoolBots

79640790

Date: 2025-05-27 15:39:00
Score: 1.5
Natty:
Report link

Move the .wasm file to src/assets The simplest way is to copy the matrix_sdk_crypto_wasm_bg.wasm file from node_modules/@matrix-org/matrix-sdk-crypto-wasm/pkg/ into your Angular src/assets/ directory.

For example: cp node_modules/@matrix-org/matrix-sdk-crypto-wasm/pkg/matrix_sdk_crypto_wasm_bg.wasm src/assets/

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

79640784

Date: 2025-05-27 15:35:59
Score: 0.5
Natty:
Report link

When you declare:

@Mapper(
        uses = {StudentMapper.class}
)
public interface ProgramMapper {
@Mapper(
        uses = {ProgramMapper.class}
)
public interface StudentMapper {

You're causing the cyclic reference because Spring gets stuck in a loop trying to resolve both beans at creation time. Spring can't resolve this for interfaces because it creates proxy implementations at runtime and has no way to inject one mapper into another after creation.

You can remove it and try to make it an abstract class i.e.

@Mapper(componentModel = "spring", uses = {})
public abstract class ProgramMapper {

    @Autowired @Lazy
    protected StudentMapper studentMapper;

    public abstract Program toProgram(ProgramDTO dto, @Context CycleAvoidingMappingContext context);

    public abstract ProgramDTO toProgramDTO(Program entity, @Context CycleAvoidingMappingContext context);
}

Alternatively Use interfaces + a mapping service class to handle dependencies explicitly.

side note: removing the @builder when using mapstruct is cleaner — just use either one

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @builder
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Rickky13

79640783

Date: 2025-05-27 15:34:58
Score: 2
Natty:
Report link

Apple keeps changing this up.. messing our Apps that took months. Fuk.. ashols. Now we gotta change all our fuk code again to update them, cause no, code with rcproject won't fuk compile... MFss

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

79640779

Date: 2025-05-27 15:30:57
Score: 2
Natty:
Report link

This usually happens when the OAuth consent or redirect URI is not properly configured in Google Cloud Console. Double-check that your OAuth client setup matches the instructions exactly, especially the redirect URI. Also, ensure your Google account has the necessary permissions and try clearing cache or using an incognito window.

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

79640777

Date: 2025-05-27 15:27:56
Score: 1.5
Natty:
Report link

Try to specify size by auto or you can do it manually

var comment = cell.CreateComment();
comment.AddText("This is a comment.");
comment.Style.Size.SetAutomaticSize();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Frafro122

79640769

Date: 2025-05-27 15:24:55
Score: 2
Natty:
Report link

the last line of version 1 doesn't access your farm list at index i . instead, it creates a new list containing just i, like [0], then tries to access its elements: [i][0] returns i

[i][0] causes an indexerror because [i] has only one item

corrected: print(farm[i][0], " : ", farm[i][1], "days left"0

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

79640764

Date: 2025-05-27 15:21:54
Score: 3
Natty:
Report link

Try adding -legacy to your command

according to https://github.com/openssl/openssl/discussions/23089

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

79640757

Date: 2025-05-27 15:16:53
Score: 3
Natty:
Report link

If your data is stored as ࢬ, you can decode it to the corresponding Unicode character using python scripts

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

79640731

Date: 2025-05-27 15:05:49
Score: 2.5
Natty:
Report link

if only there—were a way to class both of these into a struct/container

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

79640728

Date: 2025-05-27 15:05:49
Score: 0.5
Natty:
Report link

There CAN BE a need to build your nodeJS application.

If you are using exec_mode: 'fork', you don't have to build, but if you want to go exec_mode: 'cluster' then yes you need to build.

if you don't build in cluster mode and try to serve directly from your index.js (or whatever is your initial file), only first instance of the clustesters will work, and the rest of the instances will fail by "Error: listen EADDRINUSE: address already in use :::8080", and it will be subtle because without building pm2 logs won't work for clustered application. (do not try to see with pm2 logs) you see the error with:

tail -f ~/.pm2/pm2.log

assuming you want to use cluster mode. you can create build in package.json:

"build": "rm -rf dist  && babel . --out-dir  --ignore \"node_modules,dist\" --copy-files --extensions \".js\""

then in your ecosystem.config.js:

cwd: './YourProject/',
script: 'dist/index.js',
exec_mode: 'cluster',
instances: 'max' // or count of the instances

My current issue is when i build and serve from the build, the ram usage is doubled, when served directly it is fine when server is idle. This could be related to my build script, so be careful. And if you find that problem with "higher memory when serving from the build" issue, i would love to hear about it too, cheers!

Reasons:
  • Blacklisted phrase (1): cheers
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Oytun

79640722

Date: 2025-05-27 15:03:48
Score: 0.5
Natty:
Report link

Well you have a mismatch you refer to brightway2 guide but from your path i see you are actually using brightway25, try making a new environment and installing brightway2 pip install brightway2 not brightway25 or if you want to keep using bw25 then use the guide for that note that the method you are using does not work anymore for bw25 as far as i know.

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

79640721

Date: 2025-05-27 15:03:48
Score: 1
Natty:
Report link

This issue has been resolved. The app was not deploying to App Store Connect because of a corrupted icon.icns file.

I had two icon.icns files in my app bundle, one was good and one was corrupt (only 8kb). The icon specified in the package.json changed from the good one to the corrupt one. This caused the app to stay stuck in processing when trying to upload it via Transporter - no error message was provided by Apple indicating the issue, so it took a while to track this down. Not a very good developer experience.

Hopefully this helps other people who are experiencing a similar issue with Transporter deliveries getting stuck in processing.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: vaultsort.com

79640719

Date: 2025-05-27 15:02:48
Score: 1
Natty:
Report link

This usually means your EF Core version is too old, ExecuteDeleteAsync() was only added in EF Core 7. Check your Microsoft.EntityFrameworkCore.* package versions; if you're on 6.x or lower, you'll need to upgrade to at least 7.x for MassTransit 8.4.x outbox cleanup to work. Alternatively, downgrade MassTransit.EntityFrameworkCoreIntegration to match your EF Core version. Double-check your dependencies and make sure they're aligned.

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

79640718

Date: 2025-05-27 14:59:47
Score: 0.5
Natty:
Report link

Haven't seen upper right before, hence there may be to many revs in this unrevised full base R approach around image(). Needed: some code reviev; you are welcome to comment.

We might want to develope our own corrplot routine based on

# v0
M = cor(mtcars, use = 'pairwise.complete.obs', method = 'pearson')

local({
  ## pre-allocation 
  M[lower.tri(M)] = NA
  s = seq(nrow(M))
  v = as.vector(M[ , rev(s)]) # flip
  g = hcl.colors(8, 'Grays', rev=TRUE)
  p = g[.bincode(v, seq.int(-1, 1, length.out=9))]
  p[is.na(p)] = '#FFFFFF' # (white)

  ## correlation image 
  par(mai = c(.1, 1, 1, .1))
  layout(matrix(1:2, nrow=1), widths=c(0.8,0.2)) 
  image(s, s, M, axes=FALSE, col=NA, xlab='', ylab='')
  with(expand.grid(y=rev(s), x=rev(s)), 
       text(x, y, labels=round(v, 2), col=p, font=2)) 
  
  axis(3, s, colnames(M), tick=FALSE)
  text(rev(s)-1, s, rev(colnames(M)))
  axis(2, rownames(M)[1], at=s[length(s)], tick=FALSE, las=2)
  # TODO: combine into one

  ## legend 
  # https://stackoverflow.com/a/13389693/20002111
  par(mai = c(.1, .1, 1, .1))
  xl = 1; xr = 1.2
  yb = 1; yt = 2
  plot(NA, xlim=c(1,2), ylim=c(1,2), ann=FALSE,
       xaxt='n', yaxt='n', bty='n', type='n')
  rect(xl, head(seq(yb,yt,(yt-yb)/8),-1),
       xr, tail(seq(yb,yt,(yt-yb)/8),-1), col=g)
  axis(4, seq(1, 2, .125), seq(-1, 1, .25), las=2, 
       pos=1.1, col=NA, col.ticks=1) # or mtext
})

Notice that I have re-named car_matrix to M.

base_corrplot_upper_right

Do .00 and some grid lines add valuable information?

Reasons:
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Friede

79640716

Date: 2025-05-27 14:59:46
Score: 8.5 🚩
Natty: 6
Report link

have you found the solution for your issue? I'm having the same issue and can't find anything helpful

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found the solution for your issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Владислав Давлетшин

79640715

Date: 2025-05-27 14:58:45
Score: 1
Natty:
Report link

FTR, as of 2025, it's been 14 years that the bottle.response.remote_addr property was added, and it does exactly what @ron-rothman shared. It is just less code to type.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @ron-rothman
  • Single line (0.5):
  • High reputation (-1):
Posted by: Tiger-222

79640707

Date: 2025-05-27 14:53:44
Score: 2.5
Natty:
Report link

probably since web services usualy expect a server to be bound to 0.0.0.0, render might have a health check to ensure there's something running in there. deploy it as a background worker and you should be good to go

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

79640706

Date: 2025-05-27 14:52:43
Score: 4
Natty:
Report link

OK, but then why does it work on my Apple phone with the same account? It hasnt been assign to anything yet.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30650125

79640700

Date: 2025-05-27 14:49:42
Score: 0.5
Natty:
Report link

I had to tackle a similar issue and found that Redshift’s options for working with nested data are fairly limited. I explored two different approaches to make the data easier to query and analyze.

If your data is stored in S3 and accessible via Athena, one option is to create a new AWS Glue table where each object in the array is stored as a separate row. This structure makes filtering and searching much more straightforward.

In Redshift, I ended up doing something similar by using a stored procedure to parse the JSON array of objects and insert each element into a new, flattened table designed for reporting purposes.

I understand this doesn't exactly answer your question and requires more work but may be necessary if the JSON structure you are getting is dynamic.

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

79640699

Date: 2025-05-27 14:48:42
Score: 11
Natty: 7.5
Report link

did you manage to solve the problem?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Den

79640698

Date: 2025-05-27 14:48:41
Score: 2.5
Natty:
Report link

You simply need to include the log4j-1.2-api into your pom.xml, Like this from log4j-maven.

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

79640693

Date: 2025-05-27 14:44:40
Score: 1.5
Natty:
Report link

By calling
GetParentFrame()->SetActiveView(this);
before calling
oEditCtrl.SetFocus()
from the CFormView hosting the edit control I got it working.

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

79640688

Date: 2025-05-27 14:40:39
Score: 3
Natty:
Report link

You have to wrap your widget in "InlineCustomWidget" and it will work.

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

79640684

Date: 2025-05-27 14:37:38
Score: 1.5
Natty:
Report link
Cells(row, column).value = DateSerial(Year, Month, Day) + TimeSerial(Hours, Minutes, Seconds)

Simply add the two and display the format you need.

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

79640673

Date: 2025-05-27 14:30:37
Score: 0.5
Natty:
Report link

Use -G

-J[prop_name]=[value]

defines a local JMeter property.

...

-G[prop_name]=[value]

defines a JMeter property to be sent to all remote servers.

More information:

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

79640656

Date: 2025-05-27 14:15:33
Score: 1
Natty:
Report link
when:
  - event: 
    - push
    - cron
    - manual

steps:
  - name: build
    image: centos:latest
    commands:
      - echo "FOO=hello" >> envvars
      - echo "BAR=world" >> envvars

  - name: debug
    image: ubuntu:latest
    entrypoint: ["/bin/bash", "-c", "echo $CI_SCRIPT | base64 -d | /bin/bash -e"]
    commands:
      - source envvars
      - echo $FOO

labels:
  backend: docker
  hostname: gitea

woodpecker ci build step image

woodpecker ci step step image

also work in docker backend

I change entrypoint to avoid the /bin/sh: 17: source: not found Error

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

79640647

Date: 2025-05-27 14:10:32
Score: 0.5
Natty:
Report link

I've tried many solutions from different sources. But nothing has worked for me. I also double-checked my kubeconfig in Lens to ensure it's using the correct configuration. From my local terminal, kubectl works without any issues.

The problem, in my case, turned out to be that Lens was being executed from a different user or environment than the one where kubectl is configured properly.

So, if all of your steps also match up but you're still having problems, one thing you can try is launching Lens directly from the terminal where you know kubectl has access.

Before you do this, make sure to completely quit Lens.

That approach worked for me.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: juliancamilo alvarez

79640642

Date: 2025-05-27 14:09:31
Score: 6 🚩
Natty: 6
Report link

I assume you run the community version. May be a feature of the PRO version?

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

79640628

Date: 2025-05-27 14:00:28
Score: 4
Natty: 4.5
Report link

Easier solution nowadays is to switch to sounddevice. Example: https://python-sounddevice.readthedocs.io/en/0.5.1/api/platform-specific-settings.html#sounddevice.WasapiSettings

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

79640619

Date: 2025-05-27 13:54:26
Score: 1
Natty:
Report link

Answering my own question. One workaround is to clone and temporarily insert the dragged element into the DOM, and then set that as the drag image on the event data transfer object. This also has the benefit of the drag image being positioned correctly when specifying the X and Y coordinates, unlike the natively inserted drag image, which doesn't take the transform of the ancestor into account.

Here's an updated Codepen example. https://codepen.io/Veikko-Lehmuskorpi/pen/oggKRZv

const source = document.querySelector(".item");
let ghostEl;

source.addEventListener("dragstart", (event) => {
  ghostEl = event.target.cloneNode(true);
  ghostEl.classList.add("ghost");
  document.body.appendChild(ghostEl);
  event.dataTransfer.setDragImage(ghostEl, event.offsetX, event.offsetY);
});

source.addEventListener("dragend", () => {
  ghostEl.remove();
});
body {
  margin: 0;
}

.container {
  width: 100vw;
  height: 100vh;
  background: #ccc;

  /* This breaks dragging the child item on Safari, unless a custom drag image is set */
  transform: scale(0.5);
}

.item {
  background: #ddd;
  width: 300px;
  height: 150px;
  font-size: 72px;
}

.ghost {
  position: absolute;
  top: -99999px;
  left: -99999px;
}
<div class="container">
  <div class="item" draggable="true">
    draggable
  </div>
</div>

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

79640616

Date: 2025-05-27 13:53:25
Score: 2
Natty:
Report link

It's a little bit buried, but I found that: attr(model[["cov.scaled"]], "min_cluster_size") gets the job done!

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

79640613

Date: 2025-05-27 13:52:25
Score: 1
Natty:
Report link

We found a workaround for updating the index status. We added the following storage configuration specifically for re-indexing purposes in the JanusGraph property:

storage.cql.use-external-locking=true

https://docs.janusgraph.org/v0.4/basics/configuration-reference/. Once the re-indexing is complete, please remember to turn it off.

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

79640612

Date: 2025-05-27 13:52:25
Score: 1.5
Natty:
Report link

As of today, their official download link is broken and it is unclear to what degree the support for youtube-dl is continued. You should instead follow their fork yt-dlp to install the downloader. The usage is very similar and the installation instructions you can get from the youtube-dl as its a plain download and exec permissions set up.

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

79640607

Date: 2025-05-27 13:49:24
Score: 1
Natty:
Report link
plugins {
    id 'com.android.library' // NOT just 'java-library'
}
android {
    compileSdkVersion 33

    defaultConfig {
        minSdkVersion 23 // Make sure this is 21+ or the same as the failing transform
    }
}

flutter clean

flutter pub get

flutter build apk

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

79640605

Date: 2025-05-27 13:47:23
Score: 7
Natty: 7
Report link

How do I adapt the vba macro in cases where I want to auto x-refer multiple sub-paragraphs but not include the main clause number - i.e., paragraph (a)(ii) of Clause 1.2 - if I just want to link (a) and (ii) as one x-ref without it showing as 1.2(a)(ii) when I choose "paragraph number (full context)"?

Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Debbie Button

79640597

Date: 2025-05-27 13:44:23
Score: 1
Natty:
Report link

I'm told from other forums that the deprecation of basic authentication WILL effect this method of authentication.

https://learn.microsoft.com/en-us/answers/questions/2278336/sharepoint-basic-auth-authentication-effect-sharep

----

SharePointOnlineCredentials supports Kerberos, Ntlm and basic authentication. So it will not work with SharePoint online after basic support is dropped. For SharePoint online you should be switching to access tokens.

With access tokens you call the azure ad to get the token. If you want a user token, then a web browser is used to login to ad and get the token. You can also use an application clientid and secret (know as password flow) to login as an application (not a user) without a browser.

see docs

https://learn.microsoft.com/en-us/sharepoint/dev/sp-add-ins/using-csom-for-dotnet-standard

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

79640591

Date: 2025-05-27 13:41:21
Score: 3.5
Natty:
Report link

I found a substitute for sqlite3 called apsw. With this the query is working as expected. Still it would be good to understand what am I missing with the sqlite3 query.

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

79640590

Date: 2025-05-27 13:41:21
Score: 0.5
Natty:
Report link

It looks like the errors you’re seeing are due to version mismatches or incorrect imports in your project. Specifically, the modules like ./walletConnect and ./connectors/walletConnectLegacy seem to be missing in the installed versions of @wagmi/connectors and @wagmi/core.

Here’s how you can resolve this:

yarn add wagmi@latest @wagmi/core @wagmi/connectors @web3modal/ethereum

or specify versions that are compatible with each other.

import { WalletConnectConnector } from '@wagmi/core/connectors/walletConnect';

But in newer versions, the import path or package structure might have changed.

rm -rf node_modules/.vite yarn install yarn vite --force

If after this you still face issues, consider sharing your package.json dependencies and relevant import code so we can diagnose further.

Key points

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

79640585

Date: 2025-05-27 13:37:20
Score: 1.5
Natty:
Report link
 @@-moz-document url-prefix() {
        .jqx-widget-content {
            z-index: 5600 !important;
        }
    }

It was about css and a large z-index solved it.

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

79640580

Date: 2025-05-27 13:35:19
Score: 1
Natty:
Report link

Late to the party, but at least on git version 2.48.1, the following outputs a valid ISO 8601 timestamp:

git log --pretty=format:'%cI' -n1 --date=iso-strict

On macOS, -d is not a valid option for date, as pointed in another answer.

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

79640573

Date: 2025-05-27 13:23:16
Score: 1.5
Natty:
Report link

I think beforeunload also works when the user refreshes the page not just when they close the page or navigate away. You can try storing the organizationIdentifier in localStorage when the user first opens the website. Then create an if condition to compare the current organization using (window.location.pathname) with the one stored in localStorage. If they’re not the same call sessionStorage.clear() and then update the value in localStorage. Hope it will work for u !

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

79640570

Date: 2025-05-27 13:22:15
Score: 7 🚩
Natty: 5.5
Report link

Is there a way to make this work with SSMS 21 too?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: aferende

79640568

Date: 2025-05-27 13:21:15
Score: 3.5
Natty:
Report link

I face this error and i found that database indexes needed to be fixed.

Run DBCC CHECKDB ([CATALOG]) to check if it happen.

Reasons:
  • RegEx Blacklisted phrase (1): I face this error
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Christos K.

79640562

Date: 2025-05-27 13:17:13
Score: 2.5
Natty:
Report link

You need to install this.

rm -rf ios/Pods ios/Podfile.lock

cd ios

pod install --repo-update

cd ..

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

79640559

Date: 2025-05-27 13:15:13
Score: 3
Natty:
Report link

When configuring Google Cloud Data Loss Prevention Python client behind an SSL proxy, set the environment variables HTTPS_PROXY and HTTP_PROXY with the URL of your proxy. Make sure your proxy supports SSL and configure your network accordingly.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Pelorus Technologies

79640557

Date: 2025-05-27 13:14:12
Score: 2
Natty:
Report link

if you are little familiar of the python, I have created MQTT client for same purpose to troubleshoot my localhost broker. https://github.com/harshaldosh/MQTT-Streamlit-Client/tree/main.

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

79640555

Date: 2025-05-27 13:13:12
Score: 1.5
Natty:
Report link

you need to install this package:

pip install google-genai
# Then from the same package do
client = genai.Client(api_key='YOUR-GOOGLE-API-KEY')

This solved the problem for me.

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