79240968

Date: 2024-12-01 05:38:56
Score: 4
Natty:
Report link

if you keep a count dimension for the number of locations visited and add constraints that

count of A should be within +/- 2 of count of E

count of A should be within +/- 2 of count of C

... similarly total 6(n * (n-1), n=3) constraints

it should suffice, right ?

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

79240940

Date: 2024-12-01 05:11:50
Score: 7.5 🚩
Natty: 4
Report link

r u already solve it? if you already solved it please can u tell mw how. im stressing with same problem

Reasons:
  • RegEx Blacklisted phrase (2.5): please can u tell
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Azril Fahmiardi

79240924

Date: 2024-12-01 04:48:45
Score: 2
Natty:
Report link

To start a MongoDB service that is in stop mode. Follow below steps:

  1. Press window key + R to open Run window.
  2. type "services.msc" to open services window.
  3. select MongoDB server, right click on it, finally click on the start menu entry.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md.Ruhul Amin

79240920

Date: 2024-12-01 04:41:44
Score: 2.5
Natty:
Report link

"summary": { "total_count": , "total_count_HAHA":, "total_count_LOVE":, "viewer_reaction": "NONE" }

https://www.facebook.com/share/v/144h8uVVii/

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

79240918

Date: 2024-12-01 04:37:43
Score: 1
Natty:
Report link

Just make sure the hyperellipsoid is "thin" around the edge.

You can make such an object by calling AffineBall::MakeAffineBallFromLineSegment and then converting it to a Hyperellipsoid using its constructor from AffineBall.

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

79240916

Date: 2024-12-01 04:35:43
Score: 2.5
Natty:
Report link

Answering if this is till an issue. Try python 3.10.6 or 3.11.9, I had a similar issue and switching versions fixed it. I had posted it on the repo as a query and got above response. I myself tried py3.11.9 and can see output

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

79240912

Date: 2024-12-01 04:32:42
Score: 3.5
Natty:
Report link

gmail for personal use yes i agree for becoming a youtuber and creating youtube channel and becoming famous or 991 subcribers and views and likes

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

79240908

Date: 2024-12-01 04:27:41
Score: 2
Natty:
Report link

in package.json file modified scripts dev tag

"dev": "vite --host 0.0.0.0",

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

79240886

Date: 2024-12-01 04:13:38
Score: 1.5
Natty:
Report link

If the route is Empty, please use './' Example

<a routerLink="./">navItem.linkText</a>

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

79240884

Date: 2024-12-01 04:12:37
Score: 1
Natty:
Report link

okay so i decided to put the differences in a jupyter notebook for you to execute and see the difference,Please Note: **add_layout_image** is used to add images to the layout of the figure, allowing for precise control over the positioning and layering of the image. **add_image** (not used here) would be used to add images directly to the figure, but it is less flexible in terms of positioning and layering compared to **add_layout_image**.

import matplotlib.pyplot as plt
import numpy as np

# Create a sequence of numbers from 0 to 9
x = np.arange(10)

# Set up a new figure and plotting area
fig = plt.figure()
ax = plt.subplot(111)

# Draw multiple lines on the same graph
# Each line will be a different multiple of x
for i in range(5):
    ax.plot(x, i * x, label='$y = %ix$' % i)

# Add a legend outside the main plot area
ax.legend(bbox_to_anchor=(1.1, 1.05))

# Display the graph
plt.show()

#pip install plotly

import plotly.graph_objects as go

# Start creating an interactive figure
fig = go.Figure()

# Add the first image to the figure
# This places a semi-transparent placeholder image on the graph
fig.add_layout_image(
    dict(
        source="https://via.placeholder.com/150",
        xref="x",
        yref="y",
        x=5,
        y=5,
        sizex=2,
        sizey=2,
        sizing="stretch",
        opacity=0.5,
        layer="below"
    )
)

enter image description here

 # Add a second image to the figure 
    # Positioned differently from the first image
    fig.add_layout_image(
        dict(
            source="https://via.placeholder.com/150",
            xref="x",
            yref="y",
            x=7,
            y=7,
            sizex=2,
            sizey=2,
            sizing="stretch",
            opacity=0.5,
            layer="below"
        )
    )
    
    # Set up the graph's viewing area
    fig.update_layout(
        xaxis=dict(range=[0, 10]),
        yaxis=dict(range=[0, 10])
    )
    
    # Show the interactive figure
    fig.show()

enter image description here

Reasons:
  • RegEx Blacklisted phrase (1): i decided to put the differences in a jupyter notebook for you to execute and see the difference,Please
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Debayan

79240879

Date: 2024-12-01 04:05:36
Score: 3
Natty:
Report link

Per the Story Limitations in the docs here https://developers.facebook.com/docs/instagram-platform/instagram-graph-api/reference/ig-user/media, it seems that it's not supported.

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

79240874

Date: 2024-12-01 04:04:35
Score: 1.5
Natty:
Report link
  1. Project/Properties/Configuration Properties/VC++ Directories; Add a library directory that contains the obj(s)
  2. Linker/Input/Additional Dependencies; Add the name of the .obj as if it is a .lib (i.e. Ws2_32.lib)
  3. Compile and link as usual
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: developer68

79240867

Date: 2024-12-01 03:59:34
Score: 2.5
Natty:
Report link

Roberts suggestion fixes this issue. Thanks.

Student student = new Student(
                1,
                "Ramesh",
                "Fadtare"
        );```
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: magnolia04

79240865

Date: 2024-12-01 03:56:34
Score: 3.5
Natty:
Report link

enter image description here

But in the recent update, they themselves supported this feature and did not open it to the public.

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

79240862

Date: 2024-12-01 03:53:32
Score: 4
Natty:
Report link

I have Been trying to simply calculate quickly how long the duration was my MIDI recording from my keyboard without using Logic Pro X... here the answer! https://youtu.be/xJv6pDwhWmU

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joseph-Israel

79240854

Date: 2024-12-01 03:41:29
Score: 1
Natty:
Report link

You should create both web and android client id as well. Try to paste android client id in it rather than web client id.

I have faced the same issue before, usually it will happen when no account signed in the device or emulator. So make sure at least one google account signed in device or emulator, then try after 5 minutes by clicking 1-5 times the sign in button. If it not works then try to check api client id is right or wrong.

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

79240848

Date: 2024-12-01 03:32:27
Score: 9.5 🚩
Natty: 6.5
Report link

Did you ever figure this out??

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure this out
  • 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: Jose Herrera

79240843

Date: 2024-12-01 03:22:25
Score: 3
Natty:
Report link

For Macbook pro 2024, I had to use sudo for this to work.

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

79240842

Date: 2024-12-01 03:21:25
Score: 5
Natty:
Report link

I found that creating an individual module to generate the jacoco report is useful, detailed in this blog: https://www.lorenzobettini.it/2017/02/jacoco-code-coverage-and-report-of-multiple-eclipse-plug-in-projects/#comment-13287

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Min Chen

79240839

Date: 2024-12-01 03:18:24
Score: 4
Natty:
Report link

Now when I want to tweak theme, I also need to use require function, and the problem resumes...

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vitalii Kholmukhamedov

79240836

Date: 2024-12-01 03:11:22
Score: 3.5
Natty:
Report link

What question I'm answering *

emphasized text

*I don't know what you mean

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Musa Sirleaf

79240823

Date: 2024-12-01 02:56:20
Score: 4.5
Natty: 6
Report link

thanks you for your question !!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nguyen Tu

79240814

Date: 2024-12-01 02:48:18
Score: 1
Natty:
Report link

It is a feature. To append styles, we should use \addplot+.

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

79240810

Date: 2024-12-01 02:44:17
Score: 2
Natty:
Report link

if I move the mouse very quickly, the mouseup event sometimes fails to register

The dragable object could not follow the quick movement, add something to your code that would take care of this, i. e.

document.addEventListener("mouseout", dragEnd);

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

79240804

Date: 2024-12-01 02:31:15
Score: 4.5
Natty:
Report link

why does that work? after so many times I created a game CSS SO MANY TIMES!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): why do
  • Low reputation (1):
Posted by: elias Al shami

79240795

Date: 2024-12-01 02:21:14
Score: 2
Natty:
Report link

a.out is the default name for executables. You can run it by running
./a.out
Alternatively, run
gcc -o hello.c hello
to name your executable "hello".

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

79240792

Date: 2024-12-01 02:19:13
Score: 0.5
Natty:
Report link

I was faced with this same exact problem. I'm going to guess you and I were probably doing the same application challenge! This question was also asked here, but I'll copy my solution here as well since it hasn't yet been marked as a duplicate. Also, I'm making the assumption that you, like me, did not want to use the Google API because you didn't want to have to deal with authenticating. If authentication tokens are not an issue, that definitely seems like the tidiest way to go about it.

Using requests, I was able to pull down the raw HTML response from calling the page, then using BeautifulSoup I was able to turn it into a workable, parse-able object:

# Make request
html_response = requests.get(url=url)

# Parse html into a BeautifulSoup object
soup = BeautifulSoup(html_response.text, 'html.parser')

# Collect and return the first table (assuming the first table is what you want)
return soup.find('table')

From there, you can parse the table more precisely to pull out the data you want. Here are a couple examples of how you can work with a BeautifulSoup table to get what you need:

I'm refraining from copy-pasting my exact solution because I know others will use this to fill out the same job application challenge, but this gets you everything you need as long as you have a Python foundation.

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

79240791

Date: 2024-12-01 02:19:13
Score: 1
Natty:
Report link

The issue you're experiencing with the AutoHotkey (AHK) script is likely due to how context-sensitive hotkeys are being defined. Specifically, using GetKeyState within #If statements can sometimes lead to results that are not as expected, particularly for modifier keys like Alt.

  1. <^ and ! Modifiers: In the AHK script, the <^> modifier indicates AltGr or Right Alt (RAlt), and ! is used to specify the Alt key. By combining them, you create a hotkey that specifically triggers when both keys are pressed.

  2. Direct Hotkey Mapping: Instead of using #If with GetKeyState, directly map the combination using the modifiers. This ensures the script listens for the exact combination you're interested in.

  3. Avoid #If With GetKeyState for Modifiers: Using #If along with GetKeyState can sometimes be unreliable for detecting immediate states of modifier keys, which is why directly defining the combination is a more robust solution.

pls read more about it from here: https://impetusorgansseparation.com/avnneqwn?key=670ae0c3b093d8e8ac42c57aa7da8c14

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

79240790

Date: 2024-12-01 02:13:12
Score: 1
Natty:
Report link

The provided function has some type definition issues in its return type. Specifically, { [K in keyof O]: O[K] extends undefined ? never : O[K] } would produce a type incompatible with the actual returned object.

Here’s the implementation

function objectWithoutUndefined<O extends Record<string, unknown>>(
  obj: O,
): Partial<O> {
  Object.keys(obj).forEach((key) => {
    if (obj[key] === undefined) {
      delete obj[key];
    }
  });
  return obj;
}
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tharuka Deshan

79240783

Date: 2024-12-01 01:56:09
Score: 2
Natty:
Report link

The error message "aadb2c90243: the idps client key/secret is not properly configured" is actually accurate and very descriptive. Go to your B2C and Select identity providers B2C Identity providers From there, Select Microsoft Account Then make sure you put the right client id and secret. like so: Here is where you put your credentials

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

79240762

Date: 2024-12-01 01:34:05
Score: 1
Natty:
Report link

Since you do have a proper package structure layout e.g. with __init__.py files you should be able to use a relative import i.e.:

from ...common.file1 import func1

The dots (at the start, in the from statement) in a relative import go up parent directories or 'levels'

One dot is the current directory, additional dots goes however many parent directories above the current directory as there are dots.

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

79240757

Date: 2024-12-01 01:27:04
Score: 1.5
Natty:
Report link

or qegorqg brqbire qq qghhru er qrhgoh reghrehguheiu rhuh req ge rge gre ej rwo h prq hr hq rtrj rg q q q gtre g

g qe g

g r

g

grq egu8 hutw w *qt trhw tr

u 4t uerrnee grjegu834 reR re*re i t grjgre grung re gbtuuure rebgrbehuutppt q4thhgerueoppqwooiwetbrge82300re b00944556brbe tbrgtte rebre r ewrt ¨rt htrh r treth qeotgo oer eq ¨h q e qjorh h reerq r

re re

rethhhbteigoioiotegnyhy w

ihtohwt

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

79240749

Date: 2024-12-01 01:17:02
Score: 5
Natty: 6
Report link

Why do I am not able to see, edit on the blogger.com function when necessary to see it to edit and so on. But there is no options. It is the matter of interestin all of my classmates are able to see, edit and needful to something over it. So please woudl you like to guide me all over the maters, please

Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): I am not able to
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Why do I am not
  • Low reputation (1):
Posted by: user28566683

79240746

Date: 2024-12-01 01:13:01
Score: 2
Natty:
Report link

Another thing to check is that can_impersonate is set up as a string type, not a boolean. If you set it up as a boolean and set the value to 1 (instead of "1"), you'll get an error and the policy won't continue to the next screen after the initial login screen.

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

79240738

Date: 2024-12-01 01:03:59
Score: 2.5
Natty:
Report link

You need to include the new line inside the quotes

print("Name:", name,"\nAge:", age)

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

79240736

Date: 2024-12-01 01:01:59
Score: 0.5
Natty:
Report link

This is the rule for mobile problems like this-- only if you have an actual physical click on the screen, then it will accept that the client really wants to load / playback data via JavaScript. This is by design, to protect developers from wasting mobile data by autoplaying ads etc.

There are various levels you can try to get past this:

  1. Don't make your <audio> render conditionally. Render it right away with a 1-second silent audio file. Obviously, a careful OS will not let you just create and play a new sound object whenever you want. Maybe (maybe!) this will be enough.
  2. Use JavaScript to start playing the audio off of any other button, then immediately pause it again. Once you've done this, you should be able to resume playback at any time later, even if you change the audio source (which you will do later). This "catching a click" technique is very useful to understand and use.

Unfortunately, I can't test code for an Apple product, since I refuse ever to buy one again. But hopefully now you have a better understanding of WHY things mysteriously refuse to play or record on Apple devices.

Also, my understanding was that new Apple OS versions are more generous with media control. Do you have an older product? If so, you might want to see if it's a version issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have an
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Bennyboy1973

79240733

Date: 2024-12-01 01:00:58
Score: 2.5
Natty:
Report link

<InitColorSchemeScript defaultMode="system" /> accomplishes what I wanted

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

79240732

Date: 2024-12-01 01:00:58
Score: 1.5
Natty:
Report link

\n must be enclosed in quotes, like this:

>>> name = "Alice"
>>> age = 30
>>> print("Name:", name, "\nAge:", age)
Name: Alice
Age: 30
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: k24d

79240726

Date: 2024-12-01 00:53:57
Score: 4.5
Natty:
Report link

I have a similar issue and i use the await statement for the asynchronous code. For example:

    try {
        await prisma.table.findMany({});
    } catch (error) {
        await LogService.crearErrorLog(error);
        throw ClassToSendAnErrorWithPersonalization.internalServer('Some message');
    }
    

but i cant control the error, and ignore the trycatch. I'm doing some thing wrong? Some times i use the then() method to do something with the value in the sentence. But it's not generally in the app.

Reasons:
  • Blacklisted phrase (2): crear
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar issue
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: sevila

79240708

Date: 2024-12-01 00:33:53
Score: 0.5
Natty:
Report link

This is for: How to copy lot of files from one s3 bucket in account A, to another in account B. I know this could be different use case, but for anyone who wants some help on this, here It is.

For small amount of files to copy yeah It could work using aws cli, aws s3 sync, but for buckets with more than 3TB of size and 12 Millions of files It just does not work well. you will deal with other issues like token expiration after 1hour, 12h after configuring the expiration time as the max value allowed.

So, for you use case, I saw by using aws DataSync you can schedule when to run the sync task, I do not think It can be right after adding a new file but It can be after, just configure the task schedule

Schedule options

Here is the documentation, just follow the steps: https://docs.aws.amazon.com/datasync/latest/userguide/tutorial_s3-s3-cross-account-transfer.html

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

79240707

Date: 2024-12-01 00:31:53
Score: 7.5
Natty: 8.5
Report link

Me gustaria saber como hacer un codigo que borre la presentación en su totalidad en una fecha definida, sin preguntar, simplemente que se borre en esa fecha. Se podrá hacer ??

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

79240705

Date: 2024-12-01 00:29:52
Score: 0.5
Natty:
Report link

Thanks, slago! I ran the algorithm using your suggested improvements and tested it with three different start and goal states.

For the first test, with the start state:

on(a, b), on(b, t), on(d, t), on(c, d), clear(a), clear(c)

and the goal state:

on(d, a), on(a, c), on(c, b), on(b, t), clear(d)

The algorithm successfully found a solution, generating a sequence of moves that transitioned smoothly from start to goal. It performed well with a depth limit of 4.

In the second test, I used the start state:

on(a, b), on(b, c), on(c, t), on(d, t), clear(a), clear(d)

and the goal state:

on(d, c), on(c, b), on(b, a), on(a, t), clear(d)

This setup also worked well, producing a valid sequence of actions. However, as the state complexity increased, I noticed slightly longer runtimes when the depth limit approached 5.

For the third test, I ran with the start state:

on(a, t), on(b, a), on(c, b), on(d, t), clear(c), clear(d)

and the goal state:

on(c, d), on(d, b), on(b, a), on(a, t), clear(c)

This scenario was more challenging but still solvable within a depth limit of 4. The algorithm performed efficiently, reinforcing the importance of choosing achievable goals and reasonable depth limits.

Some of the takeaways:

I have added comments and use cases to clarify the code.

% Block world definitions, we can add the six blocks (a, b, c, d, e, f) and the table (t)
block(X) :- 
    member(X, [a, b, c, d]).


% Define the initial state
start([
    on(a, b),
    on(b, t),
    on(d, t),
    on(c, d),
    clear(a),
    clear(c)
]).

% Define the goal state
goal([
    on(d, a),
    on(a, c),
    on(c, b),
    on(b, t),
    clear(a)
]).

/*
start([
    on(a, b),
    on(b, c),
    on(c, t),
    on(d, t),
    clear(a),
    clear(d)
]).


goal([
    on(d, c),
    on(c, b),
    on(b, a),
    on(a, t),
    clear(d)
]).


start([
    on(a, t),
    on(b, a),
    on(c, b),
    on(d, t),
    clear(c),
    clear(d)
]).

goal([
    on(c, d),
    on(d, b),
    on(b, a),
    on(a, t),
    clear(c)
]).
*/


% Main predicate for IDS, exploring depths up to the given limit
ids(Limit, Plan) :-
    % Define start and goal states
    start(Start0),
    goal(Goal0),
    % Convert states to ordered sets for easier manipulation
    list_to_ord_set(Start0, Start),
    list_to_ord_set(Goal0, Goal),
    % Incrementally explore depths from 0 to Limit
    between(0, Limit, Len),
    write('Trying depth: '), write(Len), nl,
    % Define the length of the plan corresponding to the depth
    length(Plan, Len),
    % Call Depth-First Search (DFS)
    dfs(Start, Goal, [Start], Plan).

% Base case: if the current state matches the goal state, the plan is complete
dfs(State, State, _Visited, Plan) :-
    !,
    Plan = [],
    write('Goal reached with state: '), write(State), nl.

% Recursive case: explore possible actions from the current state
dfs(State, Goal, Visited, [Action | Actions]) :-
    write('Current state: '), write(State), nl,
    write('Visited: '), write(Visited), nl,
    % Find a valid action to transition to the next state
    action(Action, State, Next),
    write('Action taken: '), write(Action), nl,
    write('Next state: '), write(Next), nl,
    % Ensure the next state has not been visited
    not(member(Next, Visited)),
    % Continue DFS with the new state
    dfs(Next, Goal, [Next | Visited], Actions).


% Action: move block X from Y to Z
action(move(X, Y, Z), S1, S3) :-
    % Preconditions for the action
    member(clear(X), S1),
    member(on(X, Y), S1),
    block(Y),
    member(clear(Z), S1),
    X \= Z,
    % Update state by removing and adding relevant facts
    ord_subtract(S1, [clear(Z), on(X, Y)], S2),
    ord_union([clear(Y), on(X, Z)], S2, S3).

% Action: move block X from Y onto the table
action(move_onto_table(X, Y), S1, S3) :-
    % Preconditions for the action
    member(clear(X), S1),
    member(on(X, Y), S1),
    block(Y),
    % Update state by removing and adding relevant facts
    ord_subtract(S1, [on(X, Y)], S2),
    ord_union([clear(Y), on(X, t)], S2, S3).

% Action: move block X from the table onto block Y
action(move_onto_block(X, Y), S1, S3) :-
    % Preconditions for the action
    member(clear(X), S1),
    member(clear(Y), S1),
    member(on(X, t), S1),
    X \= Y,
    % Update state by removing and adding relevant facts
    ord_subtract(S1, [clear(Y), on(X, t)], S2),
    ord_union([on(X, Y)], S2, S3).

Thank you :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adonai Vera

79240696

Date: 2024-12-01 00:19:50
Score: 1
Natty:
Report link

The NFC Forum Type 5 spec (NFCForum-TS-T5T), section 4.3, says:

The T5T_Area (i.e., memory containing the NDEF message) starts with the first byte following the last byte of the CC field. The size of the T5T_Area is defined by the content of the CC field.

So the MLEN does not include the memory occupied by the capability container itself, but includes all other memory available in the tag REGARDLESS OF THS SIZE OF THE NDEF MESSAGE.

What follows after the capability container is usually length bytes as @Andrew points out. However the more complete story is that there is an NDEF TLV (as prescribed by section 4.4 of the NFCForum-TS-T5T. The tag for the NDEF TLV is 0x03, and following that is a single length byte (for lengths <= 254) or 3 bytes indicating a longer (>=255) length. As per the spec:

The length field (L-field) encodes the size of the V-field in bytes. ... If the L-field is present, it may contain one or three bytes: One byte if the length to encode is between 00h and FEh. The value FFh for the first byte encodes a three-byte format. Three bytes if the length to encode is between 00FFh and FFFEh. The three-byte value FFFFFFFh is RFU.

So following the capability container must be a 0x03, followed by the length of the NDEF, followed by the NDEF message itself. Assuming the 3 records in total are < 255 bytes, following the capability container should be:

03 | {single byte length} | record 1 | record 2 | record 3

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @Andrew
  • Low reputation (0.5):
Posted by: Papyrus

79240690

Date: 2024-12-01 00:12:48
Score: 1
Natty:
Report link

I have expanded on @Joel's answer above following the comments as what he produced seemed the closest I had found to dealing with a CSV where the data also contains commas so simply doing a split on the string does not work as splits on commas in fields too: https://stackoverflow.com/a/63202295/915426

This version uses string builder for increased performance and also adds a new line character to the end of the string if it does not end with one to ensure the last line of data gets included but is otherwise the same:

static List<List<string>> ParseCsv(string csv)
{
    var parsedCsv = new List<List<string>>();
    var row = new List<string>();
    StringBuilder field = new StringBuilder();
    bool inQuotedField = false;

    //If CSV does not end with a new line character then add one to ensure final line of data is included
    if (csv.Substring(csv.Length - 1, 1) != "\n")
    {
        csv = csv += "\n";
    }

    for (int i = 0; i < csv.Length; i++)
    {
        char current = csv[i];
        char next = i == csv.Length - 1 ? ' ' : csv[i + 1];

        // if current character is not a quote or comma or carriage return or newline (or not a quote and currently in an a quoted field), just add the character to the current field text
        if ((current != '"' && current != ',' && current != '\r' && current != '\n') || (current != '"' && inQuotedField))
        {
            field.Append(current);
        }
        else if (current == ' ' || current == '\t')
        {
            continue; // ignore whitespace outside a quoted field
        }
        else if (current == '"')
        {
            if (inQuotedField && next == '"')
            { // quote is escaping a quote within a quoted field
                i++; // skip escaping quote
                field.Append(current);
            }
            else if (inQuotedField)
            { // quote signifies the end of a quoted field
                row.Add(field.ToString());
                if (next == ',')
                {
                    i++; // skip the comma separator since we've already found the end of the field
                }
                field = new StringBuilder(); //Clear value
                inQuotedField = false;
            }
            else
            { // quote signifies the beginning of a quoted field
                inQuotedField = true;
            }
        }
        else if (current == ',')
        { //
            row.Add(field.ToString());
            field = new StringBuilder(); //Clear value
        }
        else if (current == '\n')
        {
            row.Add(field.ToString());
            parsedCsv.Add(new List<string>(row));
            field = new StringBuilder(); //Clear value
            row.Clear();
        }
    }

    return parsedCsv;
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Joel's
  • Low reputation (0.5):
Posted by: Robin Wilson

79240674

Date: 2024-11-30 23:50:45
Score: 0.5
Natty:
Report link

Create a property in your model. It will be incapsulated in your model and more SOLID.

class Person(models.Model):
    name = models.CharField(max_length=30)

    @property
    def name_trimmed(self):
        return self.first_name.replace('&', 'and')

Then in your template:

{{ person.name_trimmed }}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vit Amin

79240667

Date: 2024-11-30 23:39:43
Score: 1.5
Natty:
Report link

Just update gettext with the command:

pacman -S mingw-w64-x86_64-gettext

After that you can install whatever you were trying to.

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

79240654

Date: 2024-11-30 23:26:40
Score: 1.5
Natty:
Report link

According to the documentation from spatie, it is best practice to assign permission to users through roles. I.e first creating roles, then assigning permissions to these roles. Which are in turn assigned to the user by calling the assignRole method on the user model. Please see example here. But in the eventuality that you'd rather give direct permission to the user, you need to have given permission to the user using the givePermissionTo method directly on the user object. This I suppose would occur at the point of creating a new user, editing an existing user account or triggering a user event. After which you can then call the code you have written to return users and their permissions. Please see reference to an example on spatie's website on using direct permissions.

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

79240643

Date: 2024-11-30 23:11:37
Score: 1
Natty:
Report link
library (tidyverse)      
 df1 %>%
        left_join(df2 %>% mutate(present = T)) %>% 
        replace_na(list("present"= F))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: e.matt

79240637

Date: 2024-11-30 23:07:36
Score: 6.5 🚩
Natty:
Report link

can you give me your opinion about this website : https://planvoyages.com/

Reasons:
  • RegEx Blacklisted phrase (2.5): can you give me your
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): can you give me you
  • Low reputation (1):
Posted by: plan voyage

79240635

Date: 2024-11-30 23:06:35
Score: 1.5
Natty:
Report link

This error can happen if you're not using the right extension since your Home component in React should be .jsx or .tsx, did you try to renamed your test file in Home.test.tsx ?

Reasons:
  • Whitelisted phrase (-2): did you try
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ShueiYang

79240629

Date: 2024-11-30 23:01:33
Score: 8.5 🚩
Natty:
Report link

Thanks for your suggestions. If I use .Formula it puts @ in front and if I use .Formula2 it produces a spill when I look in B330, believing it is an array. However, this is not what I want. It seems the only way I can get dynamic lables to work is to construct the formula in the actual cell B330 using: ="='"&C333&"'!G181:G"&TEXT(181+$B$176*2-1,0) and leaving calculations automatic on while I run the macro. Any thoughts ?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): Any thoughts
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Gary

79240617

Date: 2024-11-30 22:41:29
Score: 3
Natty:
Report link

I decided to create my own library, Vue Fluid DnD. It has smooth animations like react-beautiful-dnd and an API similar to that of formkit/drag-and-drop. Take a look ;)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carlos Jorge Rodríguez Cuello

79240616

Date: 2024-11-30 22:41:29
Score: 1
Natty:
Report link

To make it work, do in Visual Studio:

Right-click on your project in the Solution Explorer Select "Properties" Go to the "Build" tab Look for "Platform target" Change from "Any CPU" to "x64"

explanation I've followed suggestion of TessellatingHeckler to put a pause at the end of the .bat. The cmd windows paused, I did few tests and in one of them run another instance of the cmd invoked by c#. This other instance had "Administrator: C:\Windows\SysWOW64\cmd.exe in the title. Such a thing happens when c# code is intended to run on x32 rather than x64 platform.

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

79240607

Date: 2024-11-30 22:37:28
Score: 2.5
Natty:
Report link

Is the error restricted to accessing message queues through boost? If not, make sure you have a message queue server running on your QNX system.

$ pidin -p mqueue
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: Elad Lahav

79240601

Date: 2024-11-30 22:30:27
Score: 1.5
Natty:
Report link

Turns out Rails 8 requires both libvips AND Imagemagick.

Re-did this tutorial from RoR site exactly as he does it. This time I got this message from console when trying to create a post with an image:

LoadError (Could not open library 'vips.so.42': vips.so.42: cannot open shared object file: No such file or directory.
Could not open library 'libvips.so.42': libvips.so.42: cannot open shared object file: No such file or directory.

RoR's Active Storage Overview says we require to install libvips v8.6+ or ImageMagick but actually we need BOTH.

Here's the article where I found out

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ramona

79240594

Date: 2024-11-30 22:20:25
Score: 1
Natty:
Report link

Try to use constructor without naming parameters.

Student student = new Student(
                1,
                "Ramesh",
                "Fadtare"
        );
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Robert Gardziński

79240575

Date: 2024-11-30 22:04:22
Score: 3.5
Natty:
Report link

Be sure you included the service id, the template id and also the public key.

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

79240572

Date: 2024-11-30 22:01:22
Score: 0.5
Natty:
Report link

I would imagine that the approach you're suggesting is going to take many iterations to get everything connected, right? Here are a couple things you might try that could speed this up. (Although without knowing all the details, it's a little tough to make assurances.)

  1. Check that the edge connecting the centers of the two regions is collision-free. If the edge is not collision-free, then it's probably not worth trying to make a region to connect them. You can either do the checking manually, or if you have a CollisionChecker object, you can use CollisionChecker::CheckEdgeCollisionFree method.
  2. Make an initial hyperellipsoid that covers the entire edge connecting the two regions, and use that as the initial guess for IRIS-NP. If that hyperellipsoid is collision-free, then it will be contained in the polyhedron that the algorithm produces. (You may have to force IRIS-NP to terminate after a single iteration, as the hyperellipsoid changes in subsequent iterations.) Checkout IrisOptions for details -- you'll want to work with the starting_ellipse and iteration_limit fields for this. Just make sure the hyperellipsoid is "thin" around the edge.
  3. Use the new IrisZo algorithm, and leverage the containment_points option to force the region to contain the two points. This is a very new feature (just got added to drake last week), so you'll have to build from source or use the nightly build.

There's definitely a lot of other things you could try as well -- constructing a good set of regions for GCS is an active topic of research for us. So please let us know if any of these things work for you!

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (2.5): please let us know
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Thomas Cohn

79240569

Date: 2024-11-30 21:58:21
Score: 1.5
Natty:
Report link

Try to use ESLint Plugin Perfectionist: https://github.com/azat-io/eslint-plugin-perfectionist

There are options here to group imports, create custom groups and customize sorting as flexibly as possible. I think you will find it helpful.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Azat S.

79240567

Date: 2024-11-30 21:57:20
Score: 5
Natty:
Report link

On my screen it renders correctly. You want it to be like this, right?

index.html page

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

79240562

Date: 2024-11-30 21:52:19
Score: 1
Natty:
Report link

Use v5 of cache-manager to fix this problem.

Using npm:

npm i @nestjs/cache-manager [email protected]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PiggyPlex

79240556

Date: 2024-11-30 21:47:19
Score: 0.5
Natty:
Report link

I was using Azure Private AKS cluster and facing this issue when I was trying to access the private AKS cluster using kubectl from hub Virtual Network's jump server wherein the Private AKS cluster was deployed in spoke Virtual Network. I was also using Azure Firewall for network traffic management.

In my case this happened because the Azure Private AKS uses private DNS zone and private endpoint, and my hub VNET jump box was unable to resolve the DNS for k8s control plane's kubeapi server, so in order to resolve I had manually added DNS record in jump server's C:\Windows\System32\drivers\etc\hosts file like below.

10.0.1.11 aks-xxx-test-dns-xxxxxx.xxxx-xx-axx-2xxxxxxx.privatelink.eastus.azmk8s.io

Replace the Kubernetes service IP and endpoint private DNS FQDN as per your environment. Also this is just for testing purpose, in production you should add correct firewall rules to resolve the private DNS of AKS control plan API server endpoint.

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

79240550

Date: 2024-11-30 21:45:18
Score: 2.5
Natty:
Report link

Ok, it turns out that it was a stupid mistake because as a result of copy-pasting I derived Clone trait for my enum... Removing it solved the issue.

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

79240547

Date: 2024-11-30 21:43:17
Score: 7 🚩
Natty: 4
Report link

Did you find the answer? I can find it too

Reasons:
  • RegEx Blacklisted phrase (3): Did you find the answer
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find the answer
  • Low reputation (1):
Posted by: MRST4SIO

79240538

Date: 2024-11-30 21:36:15
Score: 1
Natty:
Report link

npm throws an error in this situation because it doesn't consider 19.0.0-rc.* to be >=16.8.0. The maintainers recommend sticking with Next.js 14 and React 18 until the stable version of React 19 is released. Check out this GitHub PR for more details.

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

79240537

Date: 2024-11-30 21:36:15
Score: 2
Natty:
Report link

I received a similar error as shown in the below image:

enter image description here

As, I was running Docker Engine using Colima, I was able to solve it by restarting colime. Command -> colima restart

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

79240534

Date: 2024-11-30 21:35:15
Score: 2.5
Natty:
Report link

Also you go into the preferences and select "Use Teracopy as default copy handler" and you should also go into default apps in your Windows settings and select this as your default app instead of file explorer.

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

79240530

Date: 2024-11-30 21:31:14
Score: 2.5
Natty:
Report link

I met with this problem today and for me it worked just dragging folder to VS Code. :D

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DayGZax

79240529

Date: 2024-11-30 21:30:14
Score: 1
Natty:
Report link

You can try to use sumOver()

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

79240527

Date: 2024-11-30 21:28:13
Score: 4
Natty: 4.5
Report link

As far as I know there is official library for that: https://www.microsoft.com/en-us/download/details.aspx?id=56617

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Михаил Харитонов

79240526

Date: 2024-11-30 21:28:13
Score: 1
Natty:
Report link

If your project is written in JavaScript or TypeScript, you can try this to view TODO comments:

https://github.com/azat-io/todoctor

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Azat S.

79240502

Date: 2024-11-30 21:16:11
Score: 1
Natty:
Report link

I managed to do it using these examples:

But there should be examples in Svelte native :/ The Svelte Native implementation was way better since you didn't even need to import anything: https://svelte-native.technology/docs#bottom-navigation. They should keep it! :( Also, docs were centralized and now that they deprecated their implementation you need to try to find examples that most times do not exist :/

<script>
    import { registerNativeViewElement } from "svelte-native/dom";
    import {
        BottomNavigation,
        TabStrip,
        TabStripItem,
        TabContentItem,
      } from "@nativescript-community/ui-material-bottom-navigation";

    registerNativeViewElement("bottomNavigation", () => BottomNavigation);
    registerNativeViewElement("tabStrip", () => TabStrip);
    registerNativeViewElement("tabStripItem", () => TabStripItem);
    registerNativeViewElement("tabContentItem", () => TabContentItem);
</script>

<page>


  <bottomNavigation selectedIndex="1">
    <!-- The bottom tab UI is created via TabStrip (the containier) and TabStripItem (for each tab)-->
    <tabStrip backgroundColor="#C8F7C5">
      <tabStripItem>
        <label text="Home"></label>
        <image src="font://&#xf015;" class="fas"></image>
      </tabStripItem>
      <tabStripItem class="special">
        <label text="Account"></label>
        <image src="font://&#xf007;" class="fas"></image>
      </tabStripItem>
      <tabStripItem class="special">
        <label text="Search"></label>
        <image src="font://&#xf00e;" class="fas"></image>
      </tabStripItem>
    </tabStrip>

    <!-- The number of TabContentItem components should corespond to the number of TabStripItem components -->
    <tabContentItem>
      <gridLayout>
        <label text="Home Page" class="h2 text-center"></label>
      </gridLayout>
    </tabContentItem>
    <tabContentItem>
      <gridLayout>
        <label text="Account Page" class="h2 text-center"></label>
      </gridLayout>
    </tabContentItem>
    <tabContentItem>
      <gridLayout>
        <label text="Search Page" class="h2 text-center"></label>
      </gridLayout>
    </tabContentItem>
  </bottomNavigation>
</page>

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

79240496

Date: 2024-11-30 21:11:10
Score: 1.5
Natty:
Report link

The proxy_pass approach is correct, but please consider private connection between your EC2 instance and S3 bucket, so the content can be available only through established tunnel in AWS VPC network. Not doing that will result in bad things as:

The full answer on how to achieve that you can find in my response on similar question here :)

Reasons:
  • Blacklisted phrase (1): how to achieve
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Павел Лозовиков

79240494

Date: 2024-11-30 21:10:09
Score: 2.5
Natty:
Report link

The thing that worked for me was going throw the installation process on this form https://discordjs.guide/preparations/

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

79240486

Date: 2024-11-30 21:07:09
Score: 2
Natty:
Report link

I'm facing the same issue also, I was trying to run strapi cms in cpanel and got the below error, have got a solution.

stdout:

stderr:
#
# Fatal error in , line 0
# Fatal process out of memory: Failed to reserve memory for new V8 Isolate
#
#
#
#FailureMessage Object: 0x7ffd46fd3be0
1: 0x8c1e35  [/opt/alt/alt-nodejs14/root/usr/bin/node]
2: 0x11535e6 V8_Fatal(char const*, ...) [/opt/alt/alt-nodejs14/root/usr/bin/node]
3: 0x9bcb08  [/opt/alt/alt-nodejs14/root/usr/bin/node]
4: 0xc1ffc3 v8::internal::IsolateAllocator::InitReservation() [/opt/alt/alt-nodejs14/root/usr/bin/node]
5: 0xc202fd v8::internal::IsolateAllocator::IsolateAllocator(v8::internal::IsolateAllocationMode) [/opt/alt/alt-nodejs14/root/usr/bin/node]
6: 0xb10a9a v8::internal::Isolate::New(v8::internal::IsolateAllocationMode) [/opt/alt/alt-nodejs14/root/usr/bin/node]
7: 0x8a534e node::NodeMainInstance::NodeMainInstance(v8::Isolate::CreateParams*, uv_loop_s*, node::MultiIsolatePlatform*, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > const&, std::vector<unsigned long, std::allocator<unsigned long> > const*) [/opt/alt/alt-nodejs14/root/usr/bin/node]
8: 0x828dca node::Start(int, char**) [/opt/alt/alt-nodejs14/root/usr/bin/node]
9: 0x7f7df88295d0  [/lib64/libc.so.6]
10: 0x7f7df8829680 __libc_start_main [/lib64/libc.so.6]
11: 0x7a69e5 _start [/opt/alt/alt-nodejs14/root/usr/bin/node]

Out of memory error may be caused by hitting LVE limits
or "Max data size", "Max address space" or "Max resident set" process limits
Please check LVE limits and process limits. Readjust them if necessary
More info: https://docs.cloudlinux.com/shared/cloudlinux_os_components/#known-restrictions-and-issues

process limits "/proc/1436440/limits":
Limit                     Soft Limit           Hard Limit           Units     
Max cpu time              unlimited            unlimited            seconds   
Max file size             unlimited            unlimited            bytes     
Max data size             unlimited            unlimited            bytes     
Max stack size            8388608              unlimited            bytes     
Max core file size        0                    0                    bytes     
Max resident set          4294967296           4294967296           bytes     
Max processes             unlimited            unlimited            processes 
Max open files            1073741816           1073741816           files     
Max locked memory         unlimited            unlimited            bytes     
Max address space         4294967296           4294967296           bytes     
Max file locks            unlimited            unlimited            locks     
Max pending signals       unlimited            unlimited            signals   
Max msgqueue size         unlimited            unlimited            bytes     
Max nice priority         unlimited            unlimited            
Max realtime priority     unlimited            unlimited            
Max realtime timeout      unlimited            unlimited            us  ```      
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Low reputation (1):
Posted by: Fuad Mohammed

79240483

Date: 2024-11-30 21:06:08
Score: 1
Natty:
Report link

I was having the same problem with a number of pdf readers, including PyPDF2. I was able to eventually find one that works 'out of the box', pdfplumber.

import pdfplumber
pdf = pdfplumber.open('myfile.pdf')
page = pdf.pages[0]
text = page.extract_text()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: r_user_293582

79240482

Date: 2024-11-30 21:06:08
Score: 0.5
Natty:
Report link

I was parsing the Playwright JSON report using a separate script. In that script, I used the regex \x1B\[(?:;?[0-9]{1,3})+[mGK], mentioned in a comment to this StackOverflow answer, to replace the ANSI color characters.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: devatherock

79240481

Date: 2024-11-30 21:06:07
Score: 11 🚩
Natty:
Report link

thank you for your answer but i tried this before and it doesn't work because if i add

@bot.command()

i have this error :

NameError: name 'bot' is not defined

Can you help me please ?

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can you help me
  • RegEx Blacklisted phrase (1): i have this error
  • RegEx Blacklisted phrase (2): help me please
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Toniixav

79240474

Date: 2024-11-30 20:57:06
Score: 2.5
Natty:
Report link

Here's what I'd recommend for you to verify. Are you certain that your events are correctly returned from your prod environment? What happens if you try to open the GET endpoint in your browser directly? What do you see in your browser's dev console? Are you using any rewrite rules in your prod environment? If yes, is your events endpoint routed the right way? Also, in such cases it's worth to double check that you built and deployed your app correctly.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabor Dicso

79240473

Date: 2024-11-30 20:57:06
Score: 2
Natty:
Report link

We got it working again 🤙🏻 It was the AWSCompromisedKeyQuarantineV2 and worked by disabling it.

Not being the Aws user administrator is a real headache. I had to convince the admin and the PM to give it a try. Maybe I should convince them to give me full access to the account. Anyway, I'll investigate if someone activated the policy or if it just got an automated update.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jose Luis Delgado Carrillo

79240471

Date: 2024-11-30 20:56:05
Score: 3
Natty:
Report link

I have the same problem, I'm using

val addEventToCalendarLauncher =
    rememberLauncherForActivityResult(ActivityResultContracts.StartActivityForResult()) { result ->
        if (result.resultCode == Activity.RESULT_OK) {
            viewModel.onEventAddedToCalendar()
        } else {
            viewModel.onEventAddToCalendarFailed()
        }
    }

But same as you, I'm always getting resultCode = 0 and data = null

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
Posted by: Analizer

79240470

Date: 2024-11-30 20:55:04
Score: 11 🚩
Natty:
Report link

Hi @Sami Ullah can you help me please i am getting the same error QRCodeScanner ref={(node) => { this.scanner = node }} onRead={(e) => { setShowDialog(true) setQrValue(e.data) }} flashMode={light ? RNCamera.Constants.FlashMode.torch : RNCamera.Constants.FlashMode.auto} topContent={<></>} bottomContent={ <Button title={Flash ${light ? 'OFF' : 'ON'}} icon={{ ...styles.iconButtonHome, size: 20, name: 'qr-code-scanner' }} iconContainerStyle={styles.iconButtonHomeContainer} titleStyle={{ ...styles.titleButtonHome, fontSize: 20 }} buttonStyle={{...styles.buttonHome, height: 50}} containerStyle={{...styles.buttonHomeContainer, marginTop:20, marginBottom:10}} // onPress={() => {this.scanner.reactivate()}} onPress={() => {setLight(!light)}} /> } />

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • RegEx Blacklisted phrase (1): i am getting the same error
  • RegEx Blacklisted phrase (2): help me please
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i am getting the same error
  • Contains question mark (0.5):
  • User mentioned (1): @Sami
  • Low reputation (1):
Posted by: RADHAKRISHNAN Amaranth

79240467

Date: 2024-11-30 20:54:04
Score: 3
Natty:
Report link

I had a similar problem, namely I needed to remove the _total and _seconds suffixes. I did it with the help: EndpointWebExtension for PrometheusScrapeEndpoint.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Павел Зирюкин

79240457

Date: 2024-11-30 20:48:02
Score: 7
Natty: 9.5
Report link

What if shadow-root is closed? How do I make it open or reach the element under closed shadow-root?

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if
  • Low reputation (1):
Posted by: Aksel Akbulut

79240452

Date: 2024-11-30 20:43:01
Score: 2.5
Natty:
Report link

I'm not sure but probably (according with the official doc.)

Into your yaml: require-authorization-consent: true

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

79240447

Date: 2024-11-30 20:40:01
Score: 2
Natty:
Report link

If someone still has the same problem, adjust the speed to 100 $('.your-slider').slick({ speed: 100, infinite: true, });

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

79240442

Date: 2024-11-30 20:38:00
Score: 0.5
Natty:
Report link

This happens because you're accessing the project as the add-on user and not the user in context. To perform a user context request, you should use the impersonation JWT token, which you should generate before accessing the endpoint you want to return. The explanation is here and always ensure you have the scope ACT_AS_USER to enable this to work

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

79240432

Date: 2024-11-30 20:32:59
Score: 1.5
Natty:
Report link

I think FlowRow is what you're looking for.

Example

FlowRow {
    lodgingPropertyList.forEach {
        CustomeChipElement(
            text = it.name,
            isSelected = false,
            onClick = {}
        )
    }
}

Result: enter image description here

You read more about Flow layout in Jetpack Compose here: https://developer.android.com/develop/ui/compose/layouts/flow#features-flow

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

79240429

Date: 2024-11-30 20:30:57
Score: 6.5 🚩
Natty:
Report link

I tried same piece of code with different image i.e., https://cp.cute-cursors.com/uploads/cursors/283/1.png instead happy.png and it's not working, Does anyone know why it's not working ?

        html {
  background-color: lightgray;
  /* cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/9632/happy.png"), auto; */
  cursor: url("https://cp.cute-cursors.com/uploads/cursors/283/1.png"), auto;
}
<html>

</html>

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • RegEx Blacklisted phrase (2): working ?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Faizal Khan

79240418

Date: 2024-11-30 20:21:55
Score: 5.5
Natty:
Report link

I get the same issue - trying to find the answer, including passing instructions to the task, but so far, nothing.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I get the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kevin Berry

79240414

Date: 2024-11-30 20:16:54
Score: 0.5
Natty:
Report link

Thanks to @topaco 's comment the solution is found. The code was quite close, it simply did not need the key to be decoded as Base64.

Here's the result code:

use aes::cipher::{block_padding::Pkcs7, BlockDecryptMut, KeyInit};
use base64::Engine;
use base64::engine::general_purpose;

type Aes128EcbDec = ecb::Decryptor<aes::Aes128>;
async fn test_decryption() {
    let key = "KeyIs16CharsLong";
    let plaintext = "nFWwLNMi2toxug1hDb/HGg==";

    // Decode key 
    let key_bytes = key.as_bytes();

    // Convert ciphertext from hex to bytes
    let mut ciphertext = general_purpose::STANDARD.decode(plaintext).expect("Invalid Base64 ciphertext");

    let pt = Aes128EcbDec::new_from_slice(key_bytes)
        .unwrap()
        .decrypt_padded_mut::<Pkcs7>(&mut ciphertext)
        .unwrap();

    // Convert decrypted plaintext to a string
    let decrypted_plaintext = String::from_utf8(pt.to_vec()).expect("Decryption produced invalid UTF-8");
    println!("Decrypted plaintext: {}", decrypted_plaintext);
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): solution is
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @topaco
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Captain Ildar

79240404

Date: 2024-11-30 20:11:52
Score: 0.5
Natty:
Report link

Seems like this is due to me using fish as my shell. I changed my shell to bash and now this works...

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

79240400

Date: 2024-11-30 20:08:51
Score: 2.5
Natty:
Report link

I know nothing about mybats and I am not sure if my suggestion will go against your desire of going "without creating multiple entityclasses", but you might want to take a look on Spring Data JPA Projections.

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

79240394

Date: 2024-11-30 20:00:50
Score: 9
Natty: 7.5
Report link

hello I have the same problem, can anyone reply?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: The Travel Office US

79240391

Date: 2024-11-30 20:00:49
Score: 1.5
Natty:
Report link

To work with emulator devices:

In your Visual Studio code, install this extension: Android iOS Emulator.

Prerequisites for using Android emulator devices:

I considered it a GENERAL RULE:

The API level of the target device is important, because your app doesn't run on a system image with an API level that's lower than the one required by your app, as specified in the minSdk attribute in the app manifest file. For more information about the relationship between system API level and minSdk, see Version your app.

To learn more, visit this link: Create and manage virtual devices

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: DevQt

79240390

Date: 2024-11-30 19:58:49
Score: 1
Natty:
Report link

None of the above answers helped me cause it turns out that there is a page config that is set by default so that it is in a vertical layout. You can change it using this:

st.set_page_config(layout="wide")

You can also change this from the settings button at the top right of every Streamlit app that shows when developing the app. enter image description here enter image description here

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

79240384

Date: 2024-11-30 19:56:48
Score: 0.5
Natty:
Report link

I know I am playing a thread necromancer right here but I was researching this myself and just ended up reading the source code for ThreadLocal here, on mscorlib.

In the source code we can see that ThreadLocal is using a [ThreadStatic] attribute on ts_slotArray field. While this attribute has no implementation, the compiler upon encountering it on some field creates a thread specific storage slot for that variable and thus even if your ThreadLocal is static, it doesn't matter as compiler will disregard this and generate code that still creates a thread specific storage slot for that value.

If you want to keep your values reusable, you could use a ConcurrentBag/Dictionary or create your own thread safe collection.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Karol Haliński

79240382

Date: 2024-11-30 19:55:48
Score: 3.5
Natty:
Report link

In my case, I installed 'git.exe' from https://git-scm.com/downloads, and that solved my problem!

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

79240370

Date: 2024-11-30 19:47:46
Score: 1
Natty:
Report link

For Ubuntu 24.04 where Android Studio 2024.1.1 is installed through Snap Store, the JAVA_HOME value should be like the following:

export JAVA_HOME=/snap/android-studio/current/jbr
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: muvaf

79240369

Date: 2024-11-30 19:46:46
Score: 1
Natty:
Report link

When typeid(animal).name() returns the base class name and not the actually instantiated type then the base class is not polymorphic (i.e. in common has no virtual destructor), which would be the solution.

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