79502714

Date: 2025-03-12 05:38:48
Score: 0.5
Natty:
Report link

When you don't set a fixed height for the inner container, the virtualization engine can't determine which rows are visible, rendering every row in the expanded section. By wrapping the inner list in a container with a specific height (say 300px), you let React Virtualized know how much space it has to work with. Then, using an AutoSizer, it calculates the available width and height, and the List component only renders the rows that fit within that space.

Maybe like this :

{expanded && (
  <div style={{ height: 300 }}>
    <AutoSizer>
      {({ height, width }) => (
        <List
          width={width}
          height={height}
          rowCount={rows.length}
          rowHeight={50}
          rowRenderer={innerRowRenderer}
        />
      )}
    </AutoSizer>
  </div>
)}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Jaydeep Pipaliya

79502713

Date: 2025-03-12 05:38:48
Score: 1.5
Natty:
Report link

After updating Visual Studio to 17.13.0 or later, View Designer cannot be opened. This is probably an unexpected behavior because it is not mentioned in the Release Notes of Visual Studio 17.13.0.

It is recommended that you report this issue to Visual Studio Feedback.

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

79502700

Date: 2025-03-12 05:25:45
Score: 3
Natty:
Report link

See this comment on GitHub from Brian: https://github.com/spring-projects/spring-framework/issues/30322#issuecomment-1597240920

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

79502660

Date: 2025-03-12 05:00:41
Score: 1.5
Natty:
Report link

I also find the answer to this question.

This below URL is able to get the pipeline definition.

POST https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/items/{itemId}/getDefinition

{
    "definition": {
        "parts": [
            {
                "path": "pipeline-content.json",
                "payload": "ewogsdfsdfsdf7sdfICJwcm9wZXJ0aWVz",
                "payloadType": "InlineBase64"
            },
            {
                "path": ".platform",
                "payload": "ewogIasdfsdf7sdfCIkc2NoZW",
                "payloadType": "InlineBase64"
            }
        ]
    }
}

Here, "payload" properties contain the definition of items in the encoded format. So, we need to decode it to see the proper output in JSON format.
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Akash

79502652

Date: 2025-03-12 04:52:39
Score: 0.5
Natty:
Report link

Need to import the tailwind css utility files in the root css file.

Below are the utility files which needs to be used

@tailwind base;
@tailwind components;
@tailwind utilities;

Along with this make sure postcss plugin is configured properly.

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

79502644

Date: 2025-03-12 04:45:37
Score: 0.5
Natty:
Report link

Difference Between px, dp, dip, and sp in Android

Use dp for layout, sp for text, and px only for precise pixel-based drawing.

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

79502638

Date: 2025-03-12 04:40:36
Score: 4.5
Natty: 5.5
Report link

Google free income life time help me Google community

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shibu day

79502628

Date: 2025-03-12 04:33:35
Score: 1
Natty:
Report link

I was facing a similar problem MobaXTerm was not letting me do any write changes or similar permissions issue.

In my case the solution was fairly simple but the reason which could be causing this to happen would be creation of a new user which does not have the permissions :
It can be fixed by going to the location where user is located and doing : chmod 777 /user

This may not work if you're tying to do "chmod 777 /home/user" as it could be treated as a folder asking for permissions rather than a User, So a better approach is to navigate to the User location and give permissions.

If it helps!

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

79502621

Date: 2025-03-12 04:26:33
Score: 3.5
Natty:
Report link

The div layer is placed behind the scroll bar

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

79502618

Date: 2025-03-12 04:25:33
Score: 1
Natty:
Report link

update your .left class like this

.left {
  order:2;
  background-color:#3c3c3c;
  overflow-y: auto;
  width:auto;
   z-index:1000;
position:relative;
}

and .bg like this

  
  .bg { background: url(https://cdn.wallpapersafari.com/30/25/1fhUk9.jpg);
      
        position: fixed;
        background-attachment: fixed;
        background-size: cover;
        background-color: #00000033;
        background-position: center;
        inset: 0;
    z-index:-1;
    position:absolute;
    
}

https://codepen.io/Woj56k/pen/RNwLBwm

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

79502617

Date: 2025-03-12 04:24:33
Score: 3
Natty:
Report link

Found the answer. Since I have an intel processor, I needed the x86 app from:

https://github.com/lynx-family/lynx/releases/tag/3.2.0-rc.0

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: sudoExclamationExclamation

79502610

Date: 2025-03-12 04:14:31
Score: 3
Natty:
Report link

I had the different problem. Mine failed because I had a period at the end of the "second argument" sentence. When I removed the period, the auto grader passed me. :)

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

79502606

Date: 2025-03-12 04:07:30
Score: 1
Natty:
Report link

Your call to `Move` should be in physics process, not unhandled input. Physics process is called at a steady interval, unhandled input isn't.

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

79502597

Date: 2025-03-12 03:56:28
Score: 2.5
Natty:
Report link

Perhaps you could consider wrapping your function inside setTimeout as it uses the browser's Web API to handle the delay externally, allowing JavaScript to continue running

setTimeout(()=>{
  // function
})

https://medium.com/@ashishkumarjena1437/understanding-how-settimeout-works-in-javascripts-single-threaded-environment-dd5889ea1599#:~:text=JavaScript%20is%20single%2Dthreaded%2C%20meaning,moves%20to%20the%20callback%20queue.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SY L

79502592

Date: 2025-03-12 03:51:28
Score: 1
Natty:
Report link

Is it possible to do for multiple inputs ?

Yes, it is possible with multiple inputs. Try by using mv-apply key = input iterates over each value in input and tostring(key) ensures each input key is treated as a string. In below code pack(tostring(key), b.value1) is used, which creates { "input1": b.value1, "input2": b.value1 } dynamically. Now make_bag() aggregates the results into a single dynamic object per row.

let T = datatable(a:string, b:dynamic)
[
    "hello", dynamic({"A":1,"B":2,"value1":3}),
    "world", dynamic({"value1":4,"value2":5})
];

let input = dynamic(["input1", "input2"]);

T
| mv-apply key = input on 
(
    summarize new_output_column = make_bag(pack(tostring(key), b.value1))
)

Output: enter image description here

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
Posted by: Balaji

79502591

Date: 2025-03-12 03:51:28
Score: 1
Natty:
Report link

BigQuery doesn't support minute partition. Also if you really partition by minutes, per the maximum 10K partitions per table limit, you can only keep 7 days of data in the table.

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

79502588

Date: 2025-03-12 03:47:26
Score: 5.5
Natty:
Report link

I'm having the same issue and it would be nice to not be a pacific email type like gmail it should allow all or most email types

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jason Cobble

79502585

Date: 2025-03-12 03:45:26
Score: 3
Natty:
Report link

I faced the same problem, adding the "Connection":"keep-alive" request header can resolve this problem.

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

79502572

Date: 2025-03-12 03:24:22
Score: 0.5
Natty:
Report link

You can't pass a temporary value to a non-const reference T&.

If you can't use a constant reference const T& because you need T to be modifiable, then you can simply add an overload that passes by value:

void bar(Foo& f);
void bar(Foo f){
    bar(f);
}

Then let copy elision do its thing.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 許恩嘉

79502568

Date: 2025-03-12 03:21:22
Score: 2.5
Natty:
Report link

Have you try this package:

https://github.com/bocanhcam/nova-breadcrumb

It's description look similar like what you need.

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

79502563

Date: 2025-03-12 03:17:20
Score: 0.5
Natty:
Report link

RegEx is part of the answer. Also use eval() to execute the argument string.

function myFunction() {
    return "Hello World!";
}
console.log(eval("myFunction{}".replace(/\{\}/, '()')));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: roannav

79502560

Date: 2025-03-12 03:16:20
Score: 2
Natty:
Report link

If it's for personal use then you could export your daily browser cookie & spoof it using puppeteer.

If it's for commercial use than look into antidetect browsers. They offer pre-made cookies

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

79502549

Date: 2025-03-12 03:03:18
Score: 1.5
Natty:
Report link

Did you check the configuration files?

If you have deny rule in `/etc/hosts.deny` file. it will deny all connections by default. For example:

...
ALL:ALL
...

To allow specific connections, you need to add an exception in the `/etc/hosts.allow` file. Here's how you can do it:

...
rpcbind: <NFS Server IP> 
...
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: EliotK

79502529

Date: 2025-03-12 02:44:14
Score: 2
Natty:
Report link

I don't think you can prevent users to email you.

What you need to do is find a way to reject all incoming emails.

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

79502526

Date: 2025-03-12 02:42:14
Score: 2
Natty:
Report link

Verify whether the token has expired. The validate function will not be invoked if the token has already expired.

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

79502503

Date: 2025-03-12 02:19:10
Score: 0.5
Natty:
Report link

Can use charAt(0) === '0' or startsWith('0'). Both work to check if the first character is '0'

var str = "01234"; // Example string
if (str.charAt(0) === '0') {
 console.log("First character is 0");
} else {
 console.log("First character is not 0");
}

var str = "01234"; // Example string
if (str.startsWith('0')) {
    console.log("First character is 0");
} else {
    console.log("First character is not 0");
}
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): Can u
  • Low reputation (0.5):
Posted by: Mohaimin Moin

79502494

Date: 2025-03-12 02:10:08
Score: 0.5
Natty:
Report link

hCaptcha is a type of CAPTCHA disallows automated access to websites. To bypass this protection, you'll need to use a more complex approach.

Ensure your Selenium setup is using a realistic browser profile, including user-agent, screen resolution, and other attributes that mimic a real user.

Don’t use a traditional headless browser, consider using a tool like Puppeteer or Playwright, which are designed to simulate real-user interactions.

There are services like DeathByCaptcha, 2Captcha, or Anti-Captcha that can solve CAPTCHAs programmatically. You can integrate these services into your Selenium script.

There are libraries like `hcaptcha-bypass` or `pycaptcha` that claim to provide hCaptcha bypassing functionality.

However, please note that: hCaptcha terms of use prohibit automated access. Doing all this may will violate hCaptcha's terms of service.

Even if you manage to bypass hCaptcha, site owners may still block your bot based on other criteria.

If you are after data, sites do provide an APIs for data.

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

79502489

Date: 2025-03-12 02:04:07
Score: 1
Natty:
Report link

The problem is that this opens a debugger port on the Next app launcher process, not on the actual server. The Next app launcher binary (bin/next) only spawns the server process and then sits around waiting for its termination.

In Next docs, it’s mentioned that inspect flag must pe passed via NODE_OPTIONS env variable. In this case, Next extracts it from there, increment the port number by 1, and then launches the server process with it.

I was able to connect to that +1 port then, but unfortunately, the breakpoints do not work still: it sounds like this is not a real server process, it’s (again) some turbopack related launcher process or something (at least in the list of source files available in the debugger, there are only chunks from .next/build folder, not from .next/server or so). I could not make it work yet.

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

79502481

Date: 2025-03-12 02:00:06
Score: 3
Natty:
Report link

There is PR for laravel 12 Compatibility.
https://github.com/jorijn/laravel-security-checker/pull/60

You should follow the package to check when it be update

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

79502479

Date: 2025-03-12 01:56:05
Score: 2.5
Natty:
Report link

Issue can be fixed by "sudo ln -s /usr/lib/x86_64-linux-gnu/libncurses.so.6 /usr/lib/x86_64-linux-gnu/libncurses.so.5" to build AOSP on Ubuntu 24.04.

But I know that it is just a WA and has some lucks.

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

79502476

Date: 2025-03-12 01:55:05
Score: 3.5
Natty:
Report link

For me, I just opened git Window by clicking Settings->Version Control->Git, and just hit Test button, it works (Rider 2024.3.3)

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jamison Jia

79502466

Date: 2025-03-12 01:46:04
Score: 3.5
Natty:
Report link

Just wait for a moment for the configuration files uploading to your remote host.

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

79502465

Date: 2025-03-12 01:46:04
Score: 0.5
Natty:
Report link

.textContent retrieves or sets the "raw" text content of an element, including all text within the element and its descendants. It ignores CSS styling, so it will return all text regardless of whether some of it is invisible (e.g., if it's obscured by display: none).

.innerText gets or sets the human-readable text content of an element, taking into account CSS styling like visibility: hidden or display: none. It will just return the text currently visible to the user and can also "normalize" spaces depending on how the text is formatted.

The reason why they may log the same thing in your instance is that if the element does not contain hidden text or any special CSS, both properties will return the same outcome. But they act in a different way once the text is hidden or styled in particular ways.

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

79502462

Date: 2025-03-12 01:41:03
Score: 3.5
Natty:
Report link

Open Terminals by Java Version

VSCode multiple Java versions

Extension Pack for Java Auto Config
https://marketplace.visualstudio.com/items?itemName=Pleiades.java-extension-pack-jdk

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

79502459

Date: 2025-03-12 01:37:02
Score: 1.5
Natty:
Report link
For Each cell in Range("MyNamedRange")
    msgbox "Address = " & cell.address
    msgbox "Row=" & cell.row
Next
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DevRoz

79502450

Date: 2025-03-12 01:24:00
Score: 6 🚩
Natty: 5
Report link

I can read image from /dev/video11. but i want to read image from another /dev/video. can use any other /dev/video to get the image?

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trần Bá Hiến

79502446

Date: 2025-03-12 01:16:59
Score: 1.5
Natty:
Report link

I needed to directly pass the .net publish command my code sign identity and it finally could sign it: -p:CodesignKey="Apple Distribution: My Team Name (TeamID)"

So the Publish step looks like this now:

- name: Build iOS
        run: dotnet publish ${{ inputs.project-file }} -c ${{ inputs.build-config }} -f ${{ inputs.dotnet-version-target}}-ios -p:ArchiveOnBuild=true p:CodesignKey="Apple Distribution: My Team Name (TeamID)" --no-restore
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Reid

79502440

Date: 2025-03-12 01:12:58
Score: 2.5
Natty:
Report link

You have to change the actions permission to "Allow all actions and reusable workflows" and re-commit the workflow or deploy the workflow.


change actions permission

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

79502436

Date: 2025-03-12 01:08:57
Score: 2
Natty:
Report link

This is the only way I was able to get a lot requisite packages on my Mac Silicone ...
RUN echo 'Acquire::http::Pipeline-Depth 0;\nAcquire::http::No-Cache true;\nAcquire::BrokenProxy true;\n' > /etc/apt/apt.conf.d/99fixbadproxy

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

79502427

Date: 2025-03-12 01:01:56
Score: 2
Natty:
Report link

malware dev here. I don't know why people on OS are so antsy about it. Ethical hacking and malware development lessons can be found pretty much everywhere, including courses and universities. Pentesters and cybersecurity experts, and white hats, make good money using their expertise to protect others from actually malicious services.

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

79502414

Date: 2025-03-12 00:47:54
Score: 2.5
Natty:
Report link

I did some research on this and thanks to followup by https://github.com/gyrdym in https://github.com/gyrdym/ml_linalg/issues/175 and then even bigger thanks to @mraleph from the Dart team fix this issue should be fixed as of Dart 3.5

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Maks

79502408

Date: 2025-03-12 00:43:53
Score: 3.5
Natty:
Report link

worked for me too... thanks a lot

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jiji

79502394

Date: 2025-03-12 00:33:51
Score: 2.5
Natty:
Report link

At first need to check the guide how to configure Push Notifications. After all setup check with some of call samples. Also take a look at similar issue at github issue

But again, it's important to look at official guide and double check all needed configuration settings.

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

79502393

Date: 2025-03-12 00:32:51
Score: 1.5
Natty:
Report link

Microsoft Windows [Version 10.0.26100.3323]

curl 8.10.1 (Windows) libcurl/8.10.1 Schannel zlib/1.3 WinIDN

curl: option --d: is unknown

--data '{"day":"Friday"}'

[Error] SyntaxError: Unexpected token ''', "'{day:Friday}'" is not valid JSON HTTP/1.1 500 Internal Server Error

--data '{\"day\":\"Friday\"}'

[Error] SyntaxError: Unexpected token ''', "'{"day":"Friday"}'" is not valid JSON HTTP/1.1 500 Internal Server Error

--data "{\"day\":\"Friday\"}"

HTTP/1.1 200 OK

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

79502384

Date: 2025-03-12 00:28:50
Score: 3
Natty:
Report link

Vercel in the free plan doesn't allow you to install Chromium, another alternative would be to use a cloud browser such as BROWSERLESS

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

79502375

Date: 2025-03-12 00:15:48
Score: 0.5
Natty:
Report link
import matplotlib.pyplot as plt

# Titration Data
volume = [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 
          22, 24, 26, 28, 30, 32, 34, 36, 38, 40]
pH = [3.29, 4.07, 4.57, 4.94, 5.28, 5.62, 
      6.04, 6.29, 6.76, 7.82, 8.91, 9.25, 
      9.54, 9.79, 10.25, 10.48, 10.85, 
      11.24, 11.48, 11.58, 11.62]

# Create the plot
plt.figure(figsize=(7, 5))
plt.plot(volume, pH, marker='o', linestyle='-')
plt.title('Titration Curve: CH3COOH vs. NaOH')
plt.xlabel('Volume of NaOH added (cm³)')
plt.ylabel('pH')
plt.grid(True)
plt.show()
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ranelle

79502351

Date: 2025-03-11 23:51:44
Score: 1
Natty:
Report link

You can access and edit the .csproj pretty easily if you're using VS 2022. Just go to the top left hand corner of your screen after opening your solution, click open, and select "file". After that, you should be able to find and open the .csproj file for your solution. It will show up in VS once you click open and you simply tweak whatever you need. Hope this helps :)

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fish

79502340

Date: 2025-03-11 23:43:43
Score: 0.5
Natty:
Report link

The approach of using a TableLayoutPanel mentioned in the comments by @Idle_Mind and dynamically hiding/showing rows is definitely one option.

Another I'd like to mention is the SplitContainer control.

It consists of two panels that can stack horizontally or vertically with a separator in-between. And it allows hiding one of the panels so the other takes up the size for both.

simple form with buttons and splitcontainer

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Idle_Mind
  • High reputation (-1):
Posted by: Sal

79502335

Date: 2025-03-11 23:41:42
Score: 3
Natty:
Report link

i've checked on p2p_call_sample and answer button works as expected, app opens and call is accepted. In logcat appears NotificationReceiver onReceive action: action_call_accept

I'd suggest you to compare your code with sample. And look at official docs.

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

79502331

Date: 2025-03-11 23:37:42
Score: 1
Natty:
Report link

Maybe a clue in github.com/evanw/esbuild/issues/3324

From the Issue thread:

In summary, this runtime error is caused by bundling CJS libraries into ESM context (i.e. bundle express in format: 'esm'). esbuild uses closures to wrap these CJS liraries, and Node.js forbids dynamic (i.e. not at the top level) require on builtin modules.

I would still suggest you to exclude these dependencies from your bundle with --packages=external or --external:express since your runtime supports loading them from the file system, and it also bundles less code.

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

79502328

Date: 2025-03-11 23:34:41
Score: 3
Natty:
Report link

The behavior seems to have changed back for me.

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

79502327

Date: 2025-03-11 23:33:41
Score: 1.5
Natty:
Report link

It looks like lightning creates a different runid for each invocation. However, if I noticed if I start a run (in my case by logging hyperparameters):
mlflow_logger = MLFlowLogger(experiment_name=MLFLOW_EXPERIMENT_NAME, tracking_uri=MLFLOW_TRACKING_URI, run_name=MLFLOW_RUN_NAME) mlflow_logger.log_hyperparams(hyperparams)
then lightning reuses the same runId for emitting metrics for fit and test stages.

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

79502317

Date: 2025-03-11 23:27:39
Score: 1.5
Natty:
Report link

For anyone coming here in 2025, I had the same problem with autentifaction solved by removing spaces in my Google App Password : instead of i.e :"phyq mebt urrb fzbu" , remove all spaces and do "phyqmebturrbfzbu".

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

79502310

Date: 2025-03-11 23:17:38
Score: 0.5
Natty:
Report link

Not only setting appWidthLimited: false on the sap.m.Shell , but also "fullWidth": true in sap.ui section of manifest.json as well. That is how it works for me! The two settring together not just the one! :)

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amanuel Abate

79502301

Date: 2025-03-11 23:08:36
Score: 2.5
Natty:
Report link

You can use `showCupertinoSheet`.
Doc: https://main-api.flutter.dev/flutter/cupertino/showCupertinoSheet.html

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

79502290

Date: 2025-03-11 22:58:34
Score: 4
Natty:
Report link

If you use minikube with Docker then you can simply use Docker Desktop to Import the directory you want to mount.

Note: Other methods did not work for me whatever I try

enter image description here

Reasons:
  • Blacklisted phrase (1): did not work
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mücahit Şenol

79502281

Date: 2025-03-11 22:50:32
Score: 2
Natty:
Report link

Answer from 2025 (should work for older versions too):
The easiest way I found to do this is to go to:

This should fix your issue.

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

79502273

Date: 2025-03-11 22:42:31
Score: 2
Natty:
Report link
Route::get('/', [HomeComponent::class, 'index']);

Maybe something like this? Sharing because I was getting that error from not having it wrapped in an array.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jamie Corkindale

79502271

Date: 2025-03-11 22:41:31
Score: 3
Natty:
Report link

I have this annoying problem in Raspbbery Pi 4, running Thonny. I use plt.pause(t), where t is time delay in second, and it works showing the figure.

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

79502267

Date: 2025-03-11 22:37:30
Score: 1
Natty:
Report link

The truth is there Will be user's videos as well, So without transcoding on aws it Will be hard.

If you run ffmpeg via a layer in a aws lambda function, then you can do transcoding without ever leaving aws. I hope this helps.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: oleracea

79502259

Date: 2025-03-11 22:29:28
Score: 2.5
Natty:
Report link

Thank you for answering. After my new investigations, I found that the code works in Google-Colab but not in Jupyter or in a terminal.
I depreciated and matched all versions used in my code on my computer to match all yfinance libs in Colab.

Still the error on my MAC and works in Colob:

yfinance.Tickers object <MSFT>
<class 'yfinance.tickers.Tickers'>
YF.download() has changed argument auto_adjust default to True
Traceback (most recent call last):
  File "/Users/svenbode/anaconda3/envs/YF/Code/Algorithmic_Trading_v1.1_08.03.2025.py", line 29, in <module>
    df = yf.download(tickers=tickers, start=start_date, end=end_date)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/svenbode/anaconda3/envs/YF/lib/python3.11/site-packages/yfinance/utils.py", line 104, in wrapper
    result = func(*args, **kwargs)
             ^^^^^^^^^^^^^^^^^^^^^
  File "/Users/svenbode/anaconda3/envs/YF/lib/python3.11/site-packages/yfinance/multi.py", line 127, in download
    for ticker in tickers:
TypeError: 'Tickers' object is not iterable

Anyone an idea?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Esrly Bird

79502257

Date: 2025-03-11 22:29:28
Score: 1
Natty:
Report link

it's been a few days, I tried suggestions from every comment in this thread with no success. Earlier today, though, my teacher told me a way to fix it through the command system("chcp 65001 > nul"), it didn't work, so I took off the set_locale command and library, and voíla, special characters work.

I'm sorry to say I don't know how it works, however, instead of keeping this unanswered, I chose to share it here for future fixes. I'd appreciate any explanations as to why it works, though...

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

79502254

Date: 2025-03-11 22:26:28
Score: 2
Natty:
Report link

I came across the article 'Integrating Firebase Cloud Functions with Google Calendar API,' which you might find helpful as an alternative for your use case, considering DazWilkin mentioned it's somewhat complicated. While the article is outdated, some developers still find it useful. It can provide you with insights into the process of connecting the two platforms.

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

79502253

Date: 2025-03-11 22:24:27
Score: 4
Natty:
Report link

If you're using QML, use this command:
https://doc.qt.io/qt-6/qt-generate-deploy-qml-app-script.html

instead of:
https://doc.qt.io/qt-6/qt-generate-deploy-app-script.html

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

79502250

Date: 2025-03-11 22:23:27
Score: 3.5
Natty:
Report link

what file do i need to change tho
the dude with the marked reply didnt say in which file that line is ._.

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: João Peixoto

79502243

Date: 2025-03-11 22:19:26
Score: 1
Natty:
Report link

In NextJS you should fetch data in a server component then pass the data to client component, this is needed to reduce JavaScript on the client and improve performance, this is the whole idea of using NextJS, fetch data on server component and then send it to client component, a component that needs interactivity such as onClick or hooks needs to be a client component

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

79502241

Date: 2025-03-11 22:17:26
Score: 2
Natty:
Report link
just downgrade your firebase-auth version to 23.1.0 in your gradle and sync 
implementation("com.google.firebase:firebase-auth:23.1.0")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ali Raza

79502231

Date: 2025-03-11 22:06:24
Score: 2
Natty:
Report link

The HTML renderer is removed from Flutter 3.29.

For more information, visit The intent to deprecate and remove the HTML renderer in Flutter web and Issue 145584: Intent to deprecate and remove the HTML renderer in Flutter web.

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

79502230

Date: 2025-03-11 22:06:24
Score: 5
Natty:
Report link

I am facing the exact same issue. Some users reported having their markers flipped upside down.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the exact same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ClementBresson

79502228

Date: 2025-03-11 22:04:23
Score: 4.5
Natty:
Report link

I have now resolved this - the issue stems from not including the get_context_data() method as part of the AboutPageView class. The problem stemmed from the formatting of the tutorial materials, which made it hard to read indentation.

Mods: given the nature of the error, please let me know if this question merits removal due to it being of limited use to the community.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: green_ruby

79502226

Date: 2025-03-11 22:02:22
Score: 0.5
Natty:
Report link

Promisifying surely is a good approach, but it kind of 'kills' the callback technique.

I've created a NodeJS package to deal with callbacks and I want to present it as a possible solution to avoid 'callback hell', without the need to transform everything into Promises.

import { CB } from "callback-utility";
import fs     from "node:fs";


const struct = CB.s ( // 🠄 execute functions in sequence
                 CB.f (fs.mkdir, 'stuff'),
                 CB.f (fs.readFile, 'readMe.txt', 'utf8')
                 CB.f (fs.writeFile, './stuff/writeMe.txt', CB.PREVIOUS_RESULT1) // 🠄 Use result from previous function
               );

// Execute and retrieve results using a single callback function
CB.e (struct, (error, timeout, results) =>
{
    // Check results
    if (timeout || error)
        console.log("Something went wrong while creating the file");
        // get details with result.getErrors();
    else
        console.log("File created");
});

In the above example, all 3 functions with callbacks were invoked and ran in sequence. It could all be executed in parallel or mixing both types (parallel and sequential)

Results from fs.readFile is passed to next function in the row (fs.writeFile).

All results can be retrieved at once, using callback (as above) or a Promise.

Get, please, more info about it in npmjs.com/callback-utility

There are several good options available to address this issue, and I want to present a new one. I hope it will be useful.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Moacyr Catani

79502219

Date: 2025-03-11 21:56:21
Score: 0.5
Natty:
Report link

Solved the problem by replacing localhost with my actual local ip address (e.g http://192.168.2.32:8000).

Seems like there's a problem for ClaudeDesktop to call localhost addresses by security reasons.

you can get your local ip address on macOS/unix using this command:

ifconfig | grep "inet " | grep -v 127.0.0.1

Just to make it more clear:

// replace
fetch(localhost:8000)
// with
fetch(http://192.168.2.32:8000)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Eylon Shmilovich

79502213

Date: 2025-03-11 21:53:20
Score: 0.5
Natty:
Report link

Instead of defining do_EOF(), add a precmd hook that maps "EOF" to "exit":

def precmd(self, line):
    if line == "EOF":
        return "exit"
    return line
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Jeff

79502188

Date: 2025-03-11 21:39:17
Score: 1
Natty:
Report link

Tried multiple times with the last option ie -with-openss=/usr/local/ssl and did sudo make it still fails to make the ssl module and keeps complaining the same

Could not build the ssl module!

Python requires an OpenSSL 1.0.2 or 1.1 compatible libssl with X509_VERIFY_PARAM_set1_host().

LibreSSL 2.6.4 and earlier do not provide the necessary APIs, https://github.com/libressl-portable/portable/issues/381

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

79502183

Date: 2025-03-11 21:36:16
Score: 3.5
Natty:
Report link

Encoding context to seq of diff of doc formats needs help depending on the tech environment.

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

79502181

Date: 2025-03-11 21:35:16
Score: 0.5
Natty:
Report link

thanks for the answer and feedback. on the other hand(which is in my case) if someone want to remove just specific suggested fields the code can be rewritten like this:

@api.model
    def fields_get(self, allfields=None, attributes=None):
        res = super().fields_get(allfields, attributes=attributes)
        fields_to_remove_from_custom_search = ['field_1','field_2']
        for field in fields_to_remove_from_custom_search:
            if res.get(field):
                res[field]['searchable'] = False
                res[field]['sortable'] = False
        return res
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fahim Foysal

79502172

Date: 2025-03-11 21:29:15
Score: 2
Natty:
Report link

My defineConfig looks like this:

export default defineConfig({
    schema: './src/lib/server/db/schema.ts',

    dbCredentials: {
        url: process.env.DATABASE_URL
    },

    verbose: true,
    strict: true,
    dialect: 'postgresql'
});

You don't need to set all the connection details. They are included in the database url.

DATABASE_URL="postgres://user:password@host:port/db-name"

Supabase refers to this as the connection string: https://supabase.com/docs/guides/database/connecting-to-postgres#direct-connection

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

79502167

Date: 2025-03-11 21:27:14
Score: 2
Natty:
Report link

when using position: fixed, the properties, top, right, left or bottom are required so in your case you should add top and right property to the class drawer to define where the drawer should be placed on screen. Also add z-index so that it stays on top of other components. screenshot with added properties

Reasons:
  • Whitelisted phrase (-1): in your case
  • 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: Saqlain Naqshi

79502164

Date: 2025-03-11 21:26:14
Score: 0.5
Natty:
Report link

I found it!

In the settings.xml file I surrounded the password between "" like "passwordwith&therestofthepassword"


<profile>
            <id>keystorePassword</id>
            <properties>
                <keystorePassword>passwordwith&amp;therestofpassword</keystorePassword>
            </properties>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: pguzman

79502161

Date: 2025-03-11 21:25:14
Score: 4.5
Natty:
Report link

You might need to enable (Commit) the changes by going to the Cart and select Commit Changes, only then the changes will take effect in the domain.

enter image description here

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Oscar

79502160

Date: 2025-03-11 21:25:14
Score: 3.5
Natty:
Report link

You could create 2 seperate projects to do it.

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

79502158

Date: 2025-03-11 21:24:13
Score: 10 🚩
Natty: 4.5
Report link

did you find a solution to your problem? I am facing the same issue..

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution to your problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution to you
  • Low reputation (1):
Posted by: Mustafa Zahid

79502152

Date: 2025-03-11 21:22:11
Score: 7.5 🚩
Natty: 6.5
Report link

Thanks to this thread I managed to construct the plot that I need.

I managed to color the y axes as well in a specific color.

However I've been trying to:

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (1.5): can't find the solution
  • RegEx Blacklisted phrase (2): can't find the solution
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ayla

79502149

Date: 2025-03-11 21:21:11
Score: 2.5
Natty:
Report link

For those arriving here from a google search, make sure you aren't naming a normal function with the prefix "use". That'll turn it into a hook :)

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

79502148

Date: 2025-03-11 21:21:11
Score: 2.5
Natty:
Report link

I think the problem is when importing the TopRecommendationsComponent component, which is not being imported in Tab1Page, and another problem you could have is explicitly declaring standalone as false in the Tab1Page.

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

79502134

Date: 2025-03-11 21:16:08
Score: 6.5 🚩
Natty: 4
Report link

I'm having a similar problem. I created a private repo, pushed content, and now I want to share it. But I cannot get access to share it. It says I have 2FA configured, but I don't remember doing that, and it may have been on an earlier phone. There seems to be no way to un-configure and re-configure 2FA, and no way to find out which app it thinks I'm using on my phone. I've wasted most of an afternoon on this with no progress.

Reasons:
  • Blacklisted phrase (1): I'm having a similar problem
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Me too answer (2.5): I'm having a similar problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: GrampaJohn

79502128

Date: 2025-03-11 21:14:08
Score: 2.5
Natty:
Report link

Run your app again from scratch. Since its for android make sure to build with an android emulator or device.

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

79502124

Date: 2025-03-11 21:11:07
Score: 3
Natty:
Report link

I found a workoaround solution, drop the driver file in a folder that you have full grant access. Then point your script to that path.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Antonio Pérez

79502121

Date: 2025-03-11 21:10:07
Score: 5.5
Natty:
Report link

I got this error when trying to "Allow Network Access" in the Partner account.

Is there anything we should do before that?

Allow Network Access error

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Iqbal DP

79502120

Date: 2025-03-11 21:10:07
Score: 2.5
Natty:
Report link

This issue solution is posted on MSDN community site:

https://techcommunity.microsoft.com/discussions/sql_server/sql-server-2022-ssis-package-deployment-issue-a-required-privilege-is-not-held-b/3911350

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: jelongpark

79502107

Date: 2025-03-11 21:04:05
Score: 1
Natty:
Report link


function intToRomanianOrReverse($value, bool $array = true) {
    static $nfh = new \NumberFormatter('@numbers=roman', \NumberFormatter::DECIMAL);

    return $nfh->{$array ? 'format' : 'parse'}($value);
}

function intToRomanNumeral(int $value): ?string {
    return intToRomanianOrReverse($value, true);
}

function romanNumeralToInt(string $roman): ?int {
    return intToRomanianOrReverse($value, false);
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alexey Shatrov

79502105

Date: 2025-03-11 21:04:05
Score: 0.5
Natty:
Report link

Try:

  1. Permissions Issue – Run the installer from a different user directory (e.g., C:\Users\YourUser\Downloads).

  2. Corrupt Installer Settings – Try sfc /scannow in an admin command prompt and reboot.

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

79502100

Date: 2025-03-11 21:01:04
Score: 1
Natty:
Report link

Here's the steps to make this visible in REST.

  1. Edit your dataset.

  2. Add a formula.

  3. Name it something you want to see appear in REST

  4. Change output type to STRING

  5. Select the field which appears in your data grid already (assuming you encountered this problem and already have the column/data field in your analytics query)

  6. The field will appear on the report w/ this format:

    1. ([fieldname]#display)

Save, drag it into your report, remove the old column, update the alias using the info button on the dataset, save dataset, validate pulling via REST

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

79502096

Date: 2025-03-11 21:00:04
Score: 1
Natty:
Report link

Apache Doris 3.0.5 will have new json_object() function which does exactly what I need.

Thank you, Doris team for listening!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: AlexB

79502095

Date: 2025-03-11 20:59:04
Score: 2.5
Natty:
Report link

This is not obvious.

You need to login to the entra application (this could be first time you are visiting it ;-)

enter image description here

Create new secret

Go to your release and click on the Manage next to the Azure Resource Manager connection

Releases

You should have warning about secret expiration.

Secret expiration warning

Click this Convert button.

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

79502087

Date: 2025-03-11 20:53:02
Score: 1
Natty:
Report link

From max in the comments

You seem to be somewhat confused about how this is supposted to work. Your YAML file just contains a reference to the class and doesn't actually serialize the class itself. You still need to actually load the code containing the class before you parse the YAML. Either through require or by autoloading with Zeitwerk.

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

79502069

Date: 2025-03-11 20:46:00
Score: 1
Natty:
Report link

So, I found the solution. The problem was that boto3 of version 1.36 corrupted the file, by adding x-amz-checksum-crc32 to the end of it. I downgraded the boto3 by using pip install "boto3<1.36" and everything works fine!

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ерасыл Кабдырашит

79502067

Date: 2025-03-11 20:46:00
Score: 1
Natty:
Report link

You might want to still use PHP's NumberFormatter and set the PARSE_INT_ONLY attribute. Here's its manual: https://www.php.net/manual/en/class.numberformatter.php. You can try something like this:

function romanToInt(string $roman) {
    static $nf = null;

    if ($nf === null) {
        $nf = new \NumberFormatter('@numbers=roman', \NumberFormatter::DECIMAL);
        $nf->setAttribute(\NumberFormatter::PARSE_INT_ONLY, true);
    }

    return $nf->parse($roman);
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Berkay Kaplan

79502066

Date: 2025-03-11 20:45:00
Score: 0.5
Natty:
Report link

It is possible to do this. For a relevant example and further information, take a look at this repository, which may be helpful in understanding and implementing a solution:
https://github.com/mmushfiq/springboot-microservice-common-lib

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mushfiq Mammadov

79502065

Date: 2025-03-11 20:44:00
Score: 1.5
Natty:
Report link

There is an open ticket for this specific issue in vscode's repo.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Ilya V. Schurov