79367926

Date: 2025-01-18 20:34:19
Score: 2
Natty:
Report link

Revert resets the property to the value it would have from browser defaults or user-defined styles.

It does not simply fall back to the nearest inherited value in the cascade.

Use inherit if you want to inherit the parent's value directly.

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

79367922

Date: 2025-01-18 20:30:17
Score: 3
Natty:
Report link

A good solution to this problem would be to use the preload attribute and set it to “none”. The problem comes when a bunch of videos are played than the load problems starts to happen which I am trying to find a solution for now.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Marcus

79367920

Date: 2025-01-18 20:30:17
Score: 1.5
Natty:
Report link

JavaScript runs on the client side, so it cannot resolve internal Kubernetes pod names. Therefore, you cannot use the pod name directly as the backend URL.

In the development environment, ensure you use localhost instead of the Kubernetes pod name.

For production, make sure the backend URL is externally accessible to allow the client to communicate with it.

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

79367918

Date: 2025-01-18 20:28:17
Score: 1
Natty:
Report link

The cores can handle more than one thread at once. This is the beauty of concurrency. The OS has a component named scheduler which takes care of providing access to the threads that want to be executed. Basically, it takes care of switching the threads to access the core and execute the logic.

If you provide the more threads its going to occupy memory. Each thread can take up to ~1MB of memory. If you have threads occupying memory more than your VM then you will run into Out of Memory Exception and the application will crash.

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

79367908

Date: 2025-01-18 20:20:16
Score: 0.5
Natty:
Report link

I ended up doing this which worked, but I still want to know why the original way doesn't work.

import SwiftUI

public struct ExpandingTextFieldView: View {
    @Binding var text: String
    let placeholder: String

    public init(
        text: Binding<String>,
        placeholder: String = "Enter your text here..."
    ) {
        self._text = text
        self.placeholder = placeholder
    }

    public var body: some View {
        TextField(placeholder, text: $text, axis: .vertical)
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: WokeBloke

79367906

Date: 2025-01-18 20:18:15
Score: 1
Natty:
Report link

This is just a general observation since you provide zero information in respect to what framework or cart script you are working with.

In most event driven workflows the event manager, dispatcher or the event object itself will expose a mechanism for allowing you to stop the propagation of an event based on some criteria. I'm curious to whether if you stopped the propagation of that event if your action would have been performed and it solved your issue.

Often times in this type of situation the most productive approach is to just breakpoint the workflow until you find your offending code.

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

79367900

Date: 2025-01-18 20:15:14
Score: 0.5
Natty:
Report link

POST http://localhost:3333/api/auth/login

{
    "success": true,
    "message": "User logged in successfully",
    "data": {},
    "metadata": {
        "description": "The request has succeeded.",
        "documentation": "https://tools.ietf.org/html/rfc7231#section-6.3.1",
        "responseTime": "466ms",
        "timestamp": "2025-01-18T19:56:52.392Z",
        "code": 200,
        "status": "OK"
    },
    "options": {
        "headers": {
            "Cache-Control": "no-store",
            "Access-Control-Allow-Credentials": "true"
        }
    },
    "links": {
        "self": {
            "rel": "self",
            "href": "localhost:3333/api/auth/login",
            "method": "POST"
        },
        "post-registre": {
            "title": "POST /registre",
            "rel": "post-registre",
            "href": "localhost:3333/api/auth/registre",
            "method": "POST"
        },
        "post-login": {
            "title": "POST /login",
            "rel": "post-login",
            "href": "localhost:3333/api/auth/login",
            "method": "POST"
        },
        "get-current": {
            "title": "GET /current",
            "rel": "get-current",
            "href": "localhost:3333/api/auth/current",
            "method": "GET"
        },
        "get-verify": {
            "title": "GET /verify",
            "rel": "get-verify",
            "href": "localhost:3333/api/auth/verify",
            "method": "GET"
        },
        "get-refreshtoken": {
            "title": "GET /refreshtoken",
            "rel": "get-refreshtoken",
            "href": "localhost:3333/api/auth/refreshtoken",
            "method": "GET"
        },
        "documentation": {
            "rel": "documentation",
            "href": "localhost:3333/docs",
            "method": "GET",
            "title": "API Documentation"
        }
    }
}

GET http://localhost:3333/api/auth/current

{
    "success": true,
    "message": "User fetched successfully",
    "data": {
        "iss": "https://securetoken.google.com/ai-analyst-14876",
        "aud": "ai-analyst-14876",
        "auth_time": 1737230210,
        "user_id": "VMOmNW6sn0hsyghC1hZWeyGECvD3",
        "sub": "VMOmNW6sn0hsyghC1hZWeyGECvD3",
        "iat": 1737230264,
        "exp": 1737233864,
        "email": "[email protected]",
        "email_verified": false,
        "firebase": {
            "identities": {
                "email": [
                    "[email protected]"
                ]
            },
            "sign_in_provider": "password"
        },
        "uid": "VMOmNW6sn0hsyghC1hZWeyGECvD3"
    },
    "metadata": {
        "description": "The request has succeeded.",
        "documentation": "https://tools.ietf.org/html/rfc7231#section-6.3.1",
        "responseTime": "28ms",
        "timestamp": "2025-01-18T19:57:53.520Z",
        "code": 200,
        "status": "OK"
    },
    "links": {
        "self": {
            "rel": "self",
            "href": "localhost:3333/api/auth/current",
            "method": "GET"
        },
        "post-registre": {
            "title": "POST /registre",
            "rel": "post-registre",
            "href": "localhost:3333/api/auth/registre",
            "method": "POST"
        },
        "post-login": {
            "title": "POST /login",
            "rel": "post-login",
            "href": "localhost:3333/api/auth/login",
            "method": "POST"
        },
        "get-current": {
            "title": "GET /current",
            "rel": "get-current",
            "href": "localhost:3333/api/auth/current",
            "method": "GET"
        },
        "get-verify": {
            "title": "GET /verify",
            "rel": "get-verify",
            "href": "localhost:3333/api/auth/verify",
            "method": "GET"
        },
        "get-refreshtoken": {
            "title": "GET /refreshtoken",
            "rel": "get-refreshtoken",
            "href": "localhost:3333/api/auth/refreshtoken",
            "method": "GET"
        },
        "documentation": {
            "rel": "documentation",
            "href": "localhost:3333/docs",
            "method": "GET",
            "title": "API Documentation"
        }
    }
}

GET localhost:3333/api/contact/yQg9OD4KRTNywa2fHwxN

{
    "success": true,
    "message": "Fetched entity by ID successfully",
    "data": {
        "id": "yQg9OD4KRTNywa2fHwxN",
        "name": "Jett Zboncak",
        "email": "[email protected]",
        "phone": "06 26 73 76 92",
        "message": "Interested in your services",
        "createdAt": {
            "_seconds": 1735267038,
            "_nanoseconds": 739000000
        },
        "updatedAt": {
            "_seconds": 1735267038,
            "_nanoseconds": 739000000
        }
    },
    "metadata": {
        "description": "The request has succeeded.",
        "documentation": "https://tools.ietf.org/html/rfc7231#section-6.3.1",
        "timestamp": "2025-01-18T19:59:10.616Z",
        "responseTime": "163ms",
        "code": 200,
        "status": "OK"
    },
    "links": {
        "self": {
            "rel": "self",
            "href": "localhost:3333/api/contact/yQg9OD4KRTNywa2fHwxN",
            "method": "GET"
        },
        "create": {
            "title": "POST /",
            "rel": "create",
            "href": "localhost:3333/api/contact/",
            "method": "POST"
        },
        "collection": {
            "title": "GET /",
            "rel": "collection",
            "href": "localhost:3333/api/contact/",
            "method": "GET"
        },
        "item": {
            "title": "GET /:id",
            "rel": "item",
            "href": "localhost:3333/api/contact/yQg9OD4KRTNywa2fHwxN",
            "method": "GET"
        },
        "update": {
            "title": "PUT /:id",
            "rel": "update",
            "href": "localhost:3333/api/contact/yQg9OD4KRTNywa2fHwxN",
            "method": "PUT"
        },
        "partial-update": {
            "title": "PATCH /:id",
            "rel": "partial-update",
            "href": "localhost:3333/api/contact/yQg9OD4KRTNywa2fHwxN",
            "method": "PATCH"
        },
        "delete": {
            "title": "DELETE /:id",
            "rel": "delete",
            "href": "localhost:3333/api/contact/yQg9OD4KRTNywa2fHwxN",
            "method": "DELETE"
        },
        "documentation": {
            "rel": "documentation",
            "href": "localhost:3333/docs",
            "method": "GET",
            "title": "API Documentation"
        }
    }
}

POST http://localhost:3333/api/contact validation fail

{
    "success": false,
    "message": "Validation Error",
    "error": true,
    "metadata": {
        "description": "The server could not understand the request due to invalid syntax.",
        "documentation": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
        "timestamp": "2025-01-18T17:15:59.353Z",
        "responseTime": "76ms",
        "code": 400,
        "status": "BAD_REQUEST"
    },
    "errors": [
        {
            "field": "lastName",
            "message": "Required"
        },
        {
            "field": "email",
            "message": "Required"
        },
        {
            "field": "phone",
            "message": "Required"
        }
    ],
    "links": {
        "self": {
            "rel": "self",
            "href": "localhost:3333/api/contact",
            "method": "POST"
        },
        "create": {
            "title": "POST /",
            "rel": "create",
            "href": "localhost:3333/api/contact/",
            "method": "POST"
        },
        "collection": {
            "title": "GET /",
            "rel": "collection",
            "href": "localhost:3333/api/contact/",
            "method": "GET"
        },
        "item": {
            "title": "GET /:id",
            "rel": "item",
            "href": "localhost:3333/api/contact/:id",
            "method": "GET"
        },
        "update": {
            "title": "PUT /:id",
            "rel": "update",
            "href": "localhost:3333/api/contact/:id",
            "method": "PUT"
        },
        "partial-update": {
            "title": "PATCH /:id",
            "rel": "partial-update",
            "href": "localhost:3333/api/contact/:id",
            "method": "PATCH"
        },
        "delete": {
            "title": "DELETE /:id",
            "rel": "delete",
            "href": "localhost:3333/api/contact/:id",
            "method": "DELETE"
        },
        "documentation": {
            "rel": "documentation",
            "href": "localhost:3333/docs",
            "method": "GET",
            "title": "API Documentation"
        }
    }
}

http://localhost:3333/api/contactssssssss route not found

{
    "success": false,
    "message": "The requested resource was not found.",
    "error": true,
    "metadata": {
        "description": "The server cannot find the requested resource.",
        "documentation": "https://tools.ietf.org/html/rfc7231#section-6.5.4",
        "timestamp": "2025-01-18T20:07:28.241Z",
        "responseTime": "9ms",
        "code": 404,
        "status": "NOT_FOUND"
    }
}

GET localhost:3333/api/contact/yQg9OD4KRTNywa2fHwxN not login

{
    "success": false,
    "message": "Unauthorized: No token provided",
    "error": true,
    "metadata": {
        "description": "The client must authenticate itself to get the requested response.",
        "documentation": "https://tools.ietf.org/html/rfc7235#section-3.1",
        "timestamp": "2025-01-18T20:08:32.986Z",
        "responseTime": "4ms",
        "code": 401,
        "status": "UNAUTHORIZED"
    }
}

projet: https://github.com/phamhung075/AIanalist-bun-express

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

79367899

Date: 2025-01-18 20:13:14
Score: 0.5
Natty:
Report link

In Chrome you can do:

  1. Press F12 (fn + F12 if mac)
  2. Go to 'Sources' tab
  3. Go to 'Workspace' tab
  4. From your localhost page, 'Add folder' to the wwwroot of your blazor app

This lets DevTools have access to your wwwroot folder meaning updates you make in your IDE is now linked to the browser. Caveat: you will need to refresh the page (F5 or cmd + R on mac) to see the changes, sometimes the browser caches the CSS so a hard refresh (CTRL + F5 if windows) (CMD + SHIFT + R on mac) is required.

Also works for any CSS isolation you may have in your Blazor application.

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

79367889

Date: 2025-01-18 20:08:13
Score: 2
Natty:
Report link

This is possible in Chrome-based browsers through the File System API but is not supported by Firefox, currently. This was hotly debated on the Firefox web standards git repo, so I wouldn't hold my breath on this being implemented soon.

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

79367882

Date: 2025-01-18 20:05:11
Score: 6.5 🚩
Natty:
Report link

what is the actual problem you have?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): what is the
  • Low reputation (1):
Posted by: Ibrat Usmonov

79367878

Date: 2025-01-18 20:01:10
Score: 2
Natty:
Report link

Try the -privileged option. This gives the docker container full access to the host hardware.

I have not tried this - I have read about it!!!

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

79367873

Date: 2025-01-18 19:56:08
Score: 6 🚩
Natty: 5
Report link

THE DELAY ISNOT A PROBLEM ITS CLEAR THAT HE PUT IT TO SEE THE ACTION ,JUST TO SEE THE ACTION IF YOU DELETE THE DELAY INTRRUPT TWO WILLNOT RUN ELSE, WITH FALLING EDGE OR WITH RISING ONE I HAVE THE SAME PROBLEM BUT WITHOUT #iclude

Reasons:
  • Blacklisted phrase (1): I HAVE THE SAME PROBLEM
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I HAVE THE SAME PROBLEM
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29259337

79367866

Date: 2025-01-18 19:51:07
Score: 1
Natty:
Report link

you can profile the code to see which parts of it take mnore time to narrow down functions which you could optimize

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

79367856

Date: 2025-01-18 19:42:04
Score: 3
Natty:
Report link

Is the database showing under Databases on SSMS? If not, then right click on databases and click refresh. Also make sure you are connected to the right server instance that you used when creating the database.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is the
  • Low reputation (1):
Posted by: david warui

79367853

Date: 2025-01-18 19:41:04
Score: 3
Natty:
Report link

Alt + Enter and add word to dictionary. its your code you tell its correct word LOL

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

79367834

Date: 2025-01-18 19:33:03
Score: 1
Natty:
Report link
  1. Ensure you have the CA Certificate (ca.pem), Client Certificate (client-cert.pem), Client Key (client-key.pem) certificates

  2. Copy the certificates (ca.pem, client-cert.pem, and client-key.pem) to a secure directory on your WordPress server (e.g., wp-content/ssl/).

  3. Add the following lines to wp-config.php to configure WordPress to use SSL and the client certificate:

    define('MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL); define('MYSQL_SSL_CA', WP_CONTENT_DIR . '/ssl/ca.pem'); define('MYSQL_SSL_CERT', WP_CONTENT_DIR . '/ssl/client-cert.pem')
    define('MYSQL_SSL_KEY', WP_CONTENT_DIR . '/ssl/client-key.pem');

  4. Confirm that MySQL server is configured to accept SSL connections and that the CA certificate is correctly installed on the server And test the connection

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

79367812

Date: 2025-01-18 19:14:59
Score: 2
Natty:
Report link

Just pass the --disable-dev-shm-usage flag to your Chromium.

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

79367806

Date: 2025-01-18 19:09:58
Score: 3
Natty:
Report link

Late to the party here, but if you are sure about the export method of your component, simply kill the server and run again. It will be fixed.

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

79367803

Date: 2025-01-18 19:06:58
Score: 0.5
Natty:
Report link

Done this way:

Scaffold(modifier = Modifier.fillMaxSize())
{ innerPadding ->
    Column(
        modifier = Modifier
            .padding(innerPadding)
            .consumeWindowInsets(innerPadding)
            .fillMaxSize()
    )
    {
        val list = remember { (1..130).map{ it.toString() }.toList() }
        LazyColumn(
            reverseLayout = true,
            modifier = Modifier
                .fillMaxWidth()
                .weight(1f)
                .fillMaxHeight(0.9f)
                .border(2.dp, Color.Red)
        )
        {
            items(list.size) { message ->
                Text(text = message.toString())
            }
        }

        TextField(
            value = "",
            onValueChange = { },
            modifier = Modifier
                .imePadding()
                .fillMaxWidth()
                .border(2.dp, Color.Black)
        )
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Raphael

79367780

Date: 2025-01-18 18:51:55
Score: 3
Natty:
Report link

My settings were already that way. I use a giant cursor for visual purposes. I hate when it gets locked into a vertical line. This only happens when I use Chrome.

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

79367773

Date: 2025-01-18 18:46:54
Score: 3
Natty:
Report link

I had the same problem. You probably have wrong CHARACTERISTIC_UUID's. Check your firmware, I updated mine to this [Firmware]: https://bitbucket.org/movesense/movesense-device-lib/src/master/samples/bin/release/default_firmware/Movesense-default_firmware-SS2_w_bootloader.zip and everything works.

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

79367763

Date: 2025-01-18 18:39:52
Score: 4.5
Natty:
Report link

Remove path for websocket.request.path

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

79367762

Date: 2025-01-18 18:39:52
Score: 2
Natty:
Report link

After tinkering and re-rereading documentation I found another header to pass to wikimedia which does change the output, confirming that my headers are being received correctly.

wikiheaders=Dict("User-Agent"=>"learning_julia_test(;)julia1_11","Accept-Encoding"=>"gzip")# for testing

When I pass "Accept Encoding" : "gzip" the file that is returned is in a gzip format which confirms wikimedia is correctly interpretting what I send.

Thank you @C3roe for what I consider to be a better and more universal approach of using a service like requestcatcher.com (which appears to be owned by a company called Omni) to test if my code was behaving as expected and not depending on the intended recepient for confirmation. In cases where each api get request might have a significant cost or a consequence, this would be be much more preferable.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @C3roe
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Justworks

79367759

Date: 2025-01-18 18:37:51
Score: 3
Natty:
Report link

The directory my playwright tests were in did not have permissions to use rmvdir, which the html reporter uses at the end of a run to clear previous run results. Changing the directory solved the issue.

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

79367753

Date: 2025-01-18 18:34:51
Score: 0.5
Natty:
Report link

You can either use Decomposed swift package, or use this code that calculates eulerAngles from the matrix.

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

79367743

Date: 2025-01-18 18:29:50
Score: 0.5
Natty:
Report link

First of all, you have to do:

newIndex, indexer = a.reindex(b)

reindex returns two things. You need/want to get only the indexer.

So now you can get what you want:

indexerWithNan = np.where(indexer == -1, np.nan, indexer)

Why was your initial code wrong? The reindex() method does not support the fill_value parameter for pandas.Index objects as it does for pandas.Series or pandas.DataFrame.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Skapis9999

79367738

Date: 2025-01-18 18:21:47
Score: 4
Natty:
Report link

yeah its dumb(i made the same)

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

79367736

Date: 2025-01-18 18:20:47
Score: 2
Natty:
Report link

To make icons bigger, I have updated the Zoom Level to 1 in the settings, which is now better.

For

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

79367734

Date: 2025-01-18 18:19:47
Score: 3
Natty:
Report link

Got this error ValueError: Color #CCC"> not found

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

79367729

Date: 2025-01-18 18:15:46
Score: 1
Natty:
Report link

Used Apache BeanUtils to access the nested value -

try { 
    Object value = PropertyUtils.getProperty(givenMap, path);
} catch (Exception e) {
    // log
}

This expects path to be dot separated keys.

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

79367724

Date: 2025-01-18 18:13:46
Score: 3
Natty:
Report link

As of v2.0 (Aug 18, 2022) self-bots are no longer supported by discord.py. They are also against Discord's Terms of Service.

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

79367722

Date: 2025-01-18 18:12:45
Score: 1.5
Natty:
Report link

Perhaps Workshop wasn't capable of this back in the day, but nowadays you can create a string array variable and select the multi pass group option. It will return all the groups the user is a part of, which might be useful.

Obviously, you have to hardcore the group into the workshop, but it seems like you were going down that route anyway.

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

79367721

Date: 2025-01-18 18:12:45
Score: 3.5
Natty:
Report link

Found this tool which easily converts survey questions to Qualtrics-compatible TXT or CSV files. Survey import tools. We can easily generate questions for qualtrics for different type of questions.

can be useful for people looking for seamless conversion into qualtrics

https://youtube.com/shorts/KV5v5IsQXjM?feature=share

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: tharun

79367713

Date: 2025-01-18 18:09:44
Score: 1.5
Natty:
Report link

I was able to generate scripts for definitions of the four tables being referenced and create those tables. I was also able to populate records into those tables. I was able to successfully run the script you have shared. It appears that there is an invalid value in one or more records in either (or both) of the fields ExitDate and AccountDate. If the values are validated, this should be resolved.

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

79367712

Date: 2025-01-18 18:09:44
Score: 1
Natty:
Report link

If this happened after you update flutter or dart this means one of your global packages is back to the disabled state.

in order to fix this just re-activate it. for me it was flutterfire and to fix it just run.

dart pub global activate flutterfire_cli
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: specOper99

79367710

Date: 2025-01-18 18:08:44
Score: 1
Natty:
Report link

Changing y from dictionary to a list within model.fit resolved the error.

history = model.fit(
    X,
    [y_regression, y_classification],
    epochs=10,
    batch_size=32,
    sample_weight=sample_weights,
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Vaida

79367705

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

Its finally possible now, AWS announced this feature

https://aws.amazon.com/about-aws/whats-new/2025/01/aws-management-console-simultaneous-sign-in-multiple-accounts/

https://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/multisession.html

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

79367695

Date: 2025-01-18 18:00:42
Score: 2.5
Natty:
Report link

This was a useful thread. Finally figured the following to getting relative references that I think is similar to what the original poster asked.

=OFFSET(INDIRECT(TEXTAFTER(FORMULATEXT(A1),"=")),0,1)

Would give value one column to the right of the cell that A1 references in another sheet (or file as well).

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

79367693

Date: 2025-01-18 17:57:41
Score: 1
Natty:
Report link

You can get size of table (total no of bytes reserved by table data) using below query:

DECLARE @TableSchema VARCHAR(50) = 'dbo', @TableName VARCHAR(50) = 'Student', @Qry VARCHAR(MAX)

SELECT 
    @Qry = CONCAT('SELECT ', STRING_AGG(CONCAT('SUM(DATALENGTH(',[COLUMN_NAME],'))'), ' + '), ' [Total Bytes] FROM [', @TableSchema, '].[', @TableName,']')
FROM 
    INFORMATION_SCHEMA.COLUMNS
WHERE 
    TABLE_SCHEMA = @TableSchema
        AND TABLE_NAME = @TableName

EXEC(@Qry)

Just replace value of @TableSchema and @TableName variables for which you want to get size.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @TableSchema
  • User mentioned (0): @TableName
  • Low reputation (1):
Posted by: Harsh Varde

79367692

Date: 2025-01-18 17:56:41
Score: 0.5
Natty:
Report link

Implement a custom converter that handles the serialization and deserialization of the Stroke object. since this class does not have a constructor parameter less.

public class StrokeConverter : JsonConverter
{
//overrides here
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Migue Ang Rdz

79367689

Date: 2025-01-18 17:55:41
Score: 1
Natty:
Report link

If you have the setting that "updates imports on paste" enabled, that's probably your issue, see this issue report.

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

79367685

Date: 2025-01-18 17:54:41
Score: 0.5
Natty:
Report link

I haven't usex rxjs, so this may not be right, but I'm going to assume that the .subscribe() function sets a callback for some time in the future, so the console.log(this.total) runs before it's actually updated from the subscription thing.

Are you sure you want to be subscribing in a callback, and not during the class creation?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: whiterook6

79367684

Date: 2025-01-18 17:53:40
Score: 1
Natty:
Report link

I don't know since when, but all gradients have withOpacity method now. https://api.flutter.dev/flutter/painting/Gradient-class.html

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

79367674

Date: 2025-01-18 17:47:39
Score: 2
Natty:
Report link

im a js i dont work with py but pump provides many apis that works , here : https://frontend-api.pump.fun/api/#/default/TradesController_getAllByMint you can find any endpoint you need to interact with pump i could help if that was a js project , i made a trading bot out of this apis with websocket

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

79367669

Date: 2025-01-18 17:45:38
Score: 1.5
Natty:
Report link

The error occurs because CMake detects a mismatch between the cached paths and the current paths of your project. This happens when you move the project directory or use a different source directory after generating the CMakeCache.txt.

cmake -S windows -B build/windows/x64

Delete the Cache Files:

Navigate to the build directory: D:/application/news_app/build/windows/x64 Delete the CMakeCache.txt file and the entire CMakeFiles directory.

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

79367660

Date: 2025-01-18 17:39:37
Score: 0.5
Natty:
Report link

If you're building using the cloud build default worker pool, you need to add access to the cloud build iam.

gcloud projects add-iam-policy-binding PROJECT_ID \
    --member="serviceAccount:[email protected]" \
    --role="roles/cloudbuild.serviceAgent"

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

79367652

Date: 2025-01-18 17:36:35
Score: 6.5 🚩
Natty: 4
Report link

Which ingress rule was exactly creating the issue ? I am facing same issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which in
  • Low reputation (1):
Posted by: sanjay bajaj

79367651

Date: 2025-01-18 17:35:35
Score: 1
Natty:
Report link

I found... really silly error, not concerning asynchronous stuff. It works with $

  public static void PrintMembers(ref IList<User> ms)
    {
        foreach (var m in ms)
        {
            Console.WriteLine($"{m.FullName}",  m);
        }
        Console.WriteLine();
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: JeeyCi

79367636

Date: 2025-01-18 17:25:32
Score: 2
Natty:
Report link

You only need the .MDF (primary data file) and .LDF (transaction log file) associated with the database you want to attach. In this case, it sounds like you need HOPE_WW2.MDF and HOPE_WW2.LDF.

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

79367632

Date: 2025-01-18 17:18:31
Score: 1
Natty:
Report link

In Laravel 11 with Breeze, tailwind.config.js

/** @type {import('tailwindcss').Config} */
export default {
    //add after existing code...
    darkMode: 'class',
};

Then in your blade layout files toggle dark mode in html class <html class="dark"> and in light mode remove the class

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

79367627

Date: 2025-01-18 17:14:30
Score: 2
Natty:
Report link

One related question. How do we undo changelist 101 and 106 and nothing in between in GUI ? I do not see that option anywhere in the GUI. If I try to do that, the message says that the file is already checked out and cannot perform Undo. This get complex as 101 and 106 contains some same file and some different files

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

79367625

Date: 2025-01-18 17:13:30
Score: 2
Natty:
Report link

I just wanted to update everyone: The issue was caused by a margin: 0 style applied to the <p> element in the main.css file. Once I removed that, everything aligned perfectly, with the <p> starting below the <h3> and the number and <h3> remaining in the same row.

Thanks to everyone for the suggestions!

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

79367612

Date: 2025-01-18 17:06:28
Score: 1
Natty:
Report link

I changed this in "@ext:JuanBlanco.solidity" config user settings :

"solidity.packageDefaultDependenciesContractsDirectory": "", "solidity.packageDefaultDependenciesDirectory": "node_modules",

it's work for me

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

79367610

Date: 2025-01-18 17:05:28
Score: 5
Natty: 4
Report link

Here's the array of all free font-awesome (v6.7.2) icon classes.

https://gist.github.com/mohiwalla/aa0546840e2c2f1bb84bab7f7f94e6dd

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

79367607

Date: 2025-01-18 17:02:27
Score: 2.5
Natty:
Report link

I also got that error when creating new react app. But after running npm set strict-ssl false.i got this error ERR_SSL_CIPHER_OPERATION_FAILED. then again run the same command and then got created the app

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

79367599

Date: 2025-01-18 16:57:26
Score: 1.5
Natty:
Report link

If a remote system is the aim I’d recommend checking out an SSH app I wrote using the fyne terminal library - it probably does what you need.

https://github.com/andydotxyz/sshterm/blob/57557c8e6ab083370f00acd21d228b0bbd692518/main.go#L170

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

79367552

Date: 2025-01-18 16:48:24
Score: 1
Natty:
Report link

Not a direct anwser to this post but I ended in the same error and I can share another resolution.

In a big project with lazy loading sub-routers, I did the mistake to includes lazy loaded modules to the main AppModule. All routes were confused and redirected to main module. The sub modules should only be loaded by the router and nothing else.

Hopping this help somebody

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

79367542

Date: 2025-01-18 16:46:23
Score: 1.5
Natty:
Report link

same shit, as im understood, u should be have in zip: obj_train_data folder inside this txt files with annotations and names like urs images, obj.data with count classes, links to train.txt(train with links as data/obj_train_data/{name_image}, obj.names with classes names. But when u import this in task\job u will has only classes without boxes, idk how it fix, and in internet havent information about this.

upd. im using windows so maybe we has different ways

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

79367534

Date: 2025-01-18 16:43:22
Score: 0.5
Natty:
Report link

This code will do what you want:

minsign = M_top__z if abs(M_top__z) < abs(M_bot__z) else M_bot__z
M_01__z = min((abs(M_top__z), abs(M_bot__z))) + N_Ed*e_0__z
if minsign < 0:
    M_01__z *= -1
print(F"{minsign = } {M_01__z = }")

Even though the printed answer is mathematically incorrect.

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

79367528

Date: 2025-01-18 16:39:21
Score: 1.5
Natty:
Report link

Why Packages Are Not Found When you run go run main.go inside the api folder, Go can't resolve imports because the project is not properly set up with Go Modules.

What to do:

Check for a go.mod file in the root directory. If it doesn't exist, you need to initialize the module:

bash Copy Edit go mod init myapp Replace myapp with the name of your module.

Ensure that dependencies are properly listed in the go.mod file. If not, run:

bash Copy Edit go mod tidy Fix import paths in the code:

If the api folder is the root of your project, imports should use the module name (e.g., myapp/package1).

Specifying Packages in go run To run your application, use the go run command at the root of the module (where go.mod resides):

bash Copy Edit go run ./api/main.go If dependencies are missing or not found, ensure go mod tidy is run to download and set them up.

Is This a Good Practice? The structure you described is not recommended for modern Go development. The current best practice for Go projects is to use a flat and simple structure with Go Modules.

Recommended Structure:

css Copy Edit |-MyApp |--api/ # Application code |----main.go # Entry point |----package1/ # Sub-packages |----package2/ # Sub-packages |--go.mod # Go Modules file |--go.sum # Dependency checksums Key Points:

Go Modules:

Dependencies are managed via go.mod and go.sum. No need to include src, github.com, golang.org, or gopkg.in in your repo. Flat Structure:

Avoid unnecessary nesting (src or bin folders are redundant for most projects). Keep code and dependencies clearly separated. Imports:

Use proper module-based imports. For example: If your module is myapp, import packages as myapp/package1. Steps to Refactor the Project Move the api folder to the root of the repository:

go Copy Edit MyApp/ ├── api/ ├── go.mod Initialize the module (if not done yet):

bash Copy Edit go mod init myapp go mod tidy Update all imports in your code to use the module name:

go Copy Edit // Instead of this: import "package1" // Use: import "myapp/package1" Run the application:

bash Copy Edit go run ./api/main.go Why Modules are Better No Manual Dependency Management: Go Modules fetch and manage dependencies automatically. Portable and Clean: Your repo only needs your code (api folder), go.mod, and go.sum. No vendor directories or dependency code.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (1):
Posted by: codeScoop

79367519

Date: 2025-01-18 16:33:20
Score: 2
Natty:
Report link

I found the issue: the message did not show properly because I used add attribute, and I should use addFlashAttribute.

It does not work with:

    redirectAttributes.addAttribute("msg", msg);

It works with:

   redirectAttributes.addFlashAttribute("msg", msg);

Based on this explanation, my understanding is that it makes sense to use FlashAttribute after a modal window, because FlashAttribute uses a map stored in the session, which would be updated after I close my modal, vs. addAttribute, which would need to reload the original page.

If this understanding is not correct, I will be grateful if someone can explain why in my case FlashAttribute works and not Attribute.

Reasons:
  • RegEx Blacklisted phrase (2): I will be grateful
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Guillaume

79367513

Date: 2025-01-18 16:27:19
Score: 2
Natty:
Report link

sounddevice did not work directly. it needed an intermedite virtual device. I used Voicemeeter https://voicemeeter.com/ After instalation the output of print(sd.query_devices()) will include the Voicemeeter devices.
Setup your machine sound Output to Voicemeeter Input (VB-Audio Voicemeeter VAIO)
In Voicemeeter Click Hardware out and select Speakers. Now in Python you select "Voicemeeter Out" device number (9 on my Windows Desktop)
sound will be routed through voicemeeter, now run your code with sounddevice library

Reasons:
  • Blacklisted phrase (1): did not work
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: FEldin

79367509

Date: 2025-01-18 16:27:19
Score: 1
Natty:
Report link

CONSILE:Webpack is configured while Turbopack is not, which may cause problems.

Turn off the turbopack

next.config.mjs

/** @type {import('next').NextConfig} */
const nextConfig = {
  webpack: (config) => {
    config.module.rules.push({
      test: /\.svg$/i,
      issuer: /\.[jt]sx?$/,
      use: ['@svgr/webpack'],
    });

    return config;
  },

};

export default nextConfig
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Eugeney

79367504

Date: 2025-01-18 16:24:19
Score: 3
Natty:
Report link

Your Business' Promo has an erroneous definition:
Promos []Promo `json:"promos" gorm:"foreignKey:CompanyID

Shouldn't it be PromoID?

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

79367502

Date: 2025-01-18 16:23:18
Score: 0.5
Natty:
Report link

public static class SeedExtension { public static void UseUserSeed(this IApplicationBuilder app) { using (var scope = app.ApplicationServices.CreateScope()) { var roleManager = scope.ServiceProvider.GetRequiredService<RoleManager>(); var userManager = scope.ServiceProvider.GetRequiredService<UserManager>(); CreateRoles(roleManager).Wait(); CreateUsers(userManager).Wait(); } } private static async Task CreateRoles(RoleManager _roleManager) { if (!await _roleManager.Roles.AnyAsync()) { foreach (Roles item in Enum.GetValues(typeof(Roles))) { await _roleManager.CreateAsync(new IdentityRole(item.GetRole())); } } } private static async Task CreateUsers(UserManager _userManager) { if (!await _userManager.Users.AnyAsync(u => u.NormalizedUserName == "ADMIN")) { AppUser user = new AppUser(); user.UserName = "admin"; user.Email = "[email protected]"; user.Fullname = "admin"; user.EmailConfirmed = true; string role = nameof(Roles.Admin); await _userManager.CreateAsync(user, "admin123"); await _userManager.AddToRoleAsync(user, role); } }

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

79367499

Date: 2025-01-18 16:22:18
Score: 2.5
Natty:
Report link

I created New Token with Download:read permission at https://console.mapbox.com/account/access-tokens.

  1. Add new genereted secret key to app.json 0r app.config.js -> "plugins": [ [ "@rnmapbox/maps", { "MAPBOX_TOKEN" } ] ]

  2. add MAPBOX_DOWNLOADS_TOKEN to gradle.properties -> MAPBOX_DOWNLOADS_TOKEN= MAPBOX_TOKEN

  3. add mapbox authentication to build.gradle->Allprojects -> repositories:

enter image description here

  1. Run "npm run android" and app will be installed in emulator/android device/
Reasons:
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Low reputation (1):
Posted by: jyoti

79367497

Date: 2025-01-18 16:22:18
Score: 3
Natty:
Report link

A hidden bug:

Inside get_best_action method there are the following lines of code:

qvalues = [self.get_qvalue(state, action) for action in possible_actions]
max_qvalue = max(qvalues)
best_actions = [action for action, qvalue in enumerate(qvalues) if qvalue == max_qvalue]
return random.choice(best_actions)

possible_actions is a list of numbers, each one being an action from those currently available. The latter means that the list does not always contain all the actions necessarily of course. Later you enumerate the qvalues and assume that the index of the current qvalue is the action, which is the cause of the bug.

Let's say for example possible_actions is only actions [0, 3]. Then we would calculate their q values resulting in a list with two elements, say [q_value_for_action_0, q_value_for_action_3] (I am just giving names to the q values for simplicity). Lastly, upon enumerateing the qvalues we get two pairs in format action, qvalue, but since we use enumerate then the actions will always be 0, 1, 2, etc... But the qvalue will in this case be q_value_for_action_0 and then q_value_for_action_3. The problem is that q_value_for_action_3 would be matched against action with index 1 (as per the enumerate operation), but it is action 3!

To fix this, just replace enumerate(qvalues) with zip(possible_actions, qvalues) inside the method.

A potential bug in the long run:

When updating the agent (ie inside update method) you calculate the next action with:

next_action = self.get_action(next_state)

As far as I know, in Q learning, we need here the maximum reward estimate that can be obtained for the next state. If this is true, we must use get_best_action here instead of just get_action, since the latter will (at some point) give us a random action, based on epsilon parameter, and we don't want that, because the randomly chosen action may not be the best one at the same time. Based on epsilon, sometimes we get the best action indeed, but some other times we get a random action which does not coincide with the best and this messes the calculation following later.

To be honest, I observed improvement by fixing the hidden bug stated initially, but no noticeable improvement was observed by replacing self.get_action(next_state) with self.get_best_action(next_state) inside agent's update method, but I think this is indeed a bug, at least according to my understanding on the topic. Also, it doesn't really seem to me that you are properly implementing Q learning updates, but I will go through it in a later section.

Hyperparameter tuning:

I increased the number of episodes, because 2k was never enough for the player to reach the exit. After fixing the above bugs and setting episodes to 20k I started seeing the player exploring greater portions of the map, with better distribution in visited locations, and actually making it to the exit for about 240 (~1%) of the episodes. At the same time of course I had also configured epsilon_decay to 0.9998 in order to reach the minimum epsilon within the first about 15k episodes, since with the original 0.995 it was decaying too fast and I thought this would harm exploration. I also used half of the learning rate (ie alpha = 0.05) because 0.1 seems a bit too big, taking into account that greater portion of the episodes has now a greater epsilon (ie more random moves initially).

I understand though that we have to fix bugs first and then go to hyperparameter tuning, so I am not blaming you for anything here of course, I am just saying how I started to observe desired results.

Q learning updates and features:

Where are you implementing Q learning agent's updates from? Please give me a reference so that I know what's going on with the agent's update (ie if it needs fixes, or it's just my lack of knowledge). There is something called weights in the agent which seems to be the Q learning matrix or something similar, but I don't know what it is, so I just assumed it works fine and moved on with the previous bugs. I also don't know why you are interfering your weights with features via a dot product.

I am saying this because as far as I know traditional Q learning does not have a concept of weights like Neural Networks do, nor does it encode features this way. Instead, features are implemented in the state of the agent [1]. For example your features are already the location of the player and the location of the monster. In case you would need more features then you would need to encode them in state, again at least as far as my understanding and knowledge goes, so please tell me if I am wrong (citing references would be even more exciting, so that I can proofread your agent's updates).

I insist on all of these things in this section, because as far as I know, Q learning requires storing Q values (for example in a matrix) for each state-action pair. Then it uses the Bellman equation (as seen in Wikipedia here). I have implemented Q learning this way in the past and got acceptable results.

In fact, I also tried this on your environment and got the player to reach the exit for more than 10k (>50%) of the episodes at times. Specifically, I commented out get_features, updated the get_qvalue method to read the Q matrix and updated the update method with the Bellman equation and storing the new Q values back in their matrix. I will later post the full code for this at some point, summarizing all the answer.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please give me
  • RegEx Blacklisted phrase (2.5): please tell me
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: gthanop

79367495

Date: 2025-01-18 16:20:18
Score: 0.5
Natty:
Report link

sounddevice did not work directly for me and I do not think it works without an intermedite virtual device. So the the only workaround I could record audio through Python was through Voicemeeter https://voicemeeter.com/ After instalation the output of print(sd.query_devices()) will include the Voicemeeter devices. Setup your machine sound Output to Voicemeeter Input (VB-Audio Voicemeeter VAIO) and in Voicemeeter Click Hardware out and select Speakers. Now in Python you select "Voicemeeter Out" device number (9 on my Windows Desktop) and run

data = sd.rec(int(sample_rate * duration), samplerate=sample_rate, channels=2, dtype='int16', device=input_device)

If this is close to what you are looking for let me know and I can provide more details

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FEldin

79367492

Date: 2025-01-18 16:19:17
Score: 2
Natty:
Report link

As @AlwaysLearning pointed out, the option to load some or all table information from an existing database is called reflection (https://docs.sqlalchemy.org/en/20/tutorial/metadata.html#table-reflection).

from sqlalchemy import select, Table, MetaData, create_engine, URL
import pandas as pd

metadata_obj = MetaData()
url_object = URL.create(
    "mssql+pyodbc",
    host="abgsql.xx.xx.ac.uk",
    database="ABG",
    query={
        "driver": "ODBC Driver 18 for SQL Server",
        "TrustServerCertificate": "yes",
    },
)
engine = create_engine(url_object)
products = Table("products", metadata_obj, autoload_with=engine)
stmt = select(products)
df = pd.read_sql(sql=stmt, con=engine)
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @AlwaysLearning
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Howard

79367490

Date: 2025-01-18 16:17:17
Score: 1.5
Natty:
Report link

I was having this problem, and simply copied and pasted the folders from one Python into another, and it worked fine. Not an ideal fix, but worked for me.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mark

79367485

Date: 2025-01-18 16:15:16
Score: 3
Natty:
Report link

dunno if you still seeking answers but use "var health: int = 0" instead of: "var health = 0"

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

79367479

Date: 2025-01-18 16:14:15
Score: 12 🚩
Natty: 5.5
Report link

I have same issue. Do you know how to fix ?

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): how to fix ?
  • RegEx Blacklisted phrase (2.5): Do you know how
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: LITTE_BOY

79367478

Date: 2025-01-18 16:14:15
Score: 2
Natty:
Report link

I found the right answer for react on the API documentation https://docs.amplify.aws/react/start/quickstart/

import { useAuthenticator } from "@aws-amplify/ui-react";

const { signOut } = useAuthenticator();

I use signOut to log out

Log out

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

79367475

Date: 2025-01-18 16:12:14
Score: 0.5
Natty:
Report link

Apparently you can use the quser command to fetch the user dynamically and create a scheduled task accordingly. However, this has its own limitation as quser is not supported in every Windows version.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dev4Life

79367472

Date: 2025-01-18 16:11:14
Score: 1
Natty:
Report link

With the "camera" package 0.11.0+, the "camera_android_camerax" package is the default package for Android, and it causes the orientation problem.

You don't need to downgrade the camera package. Just add the "camera_android" package for it. ;)

$ flutter pub add camera_android
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jaepil Koh

79367469

Date: 2025-01-18 16:08:12
Score: 8 🚩
Natty: 6
Report link

I concur with @Deb. This is annoying. And the responses as well. It is common practice even in a non-shared system (private computer) to run all commmands as a standard non-privileged user, and install software packages using sudo.

In a fresh system (Ubuntu), to install the base R you will have to use sudo. In my case, for the specific R packages I need, I have to install also some dev packages as follows:

sudo apt install r-base
sudo apt install build-essential libcurl4-gnutls-dev libxml2-dev libssl-dev
sudo apt install libfontconfig1-dev libharfbuzz-dev libfribidi-dev
sudo apt install libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev

Then, even if following all tutorials about using private R libs, e.g. in my case:

export R_LIBS_USER="/home/fernan/R/x86_64-pc-linux-gnu-library/4.4"

running R as myself without sudo, and trying to install packages would work most of the time (e.g. install.packages("devtools"), install.packages("BiocManager")) but frustratingly, then something like this would happen in the very same R session:

> BiocManager::install(c("Biostrings", "rtracklayer"))
'getOption("repos")' replaces Bioconductor standard repositories, see
'help("repositories", package = "BiocManager")' for details.
Replacement repositories:
    CRAN: https://cloud.r-project.org
Bioconductor version 3.20 (BiocManager 1.30.25), R 4.4.2 (2024-10-31)
Installing package(s) 'Biostrings', 'rtracklayer'
trying URL 'https://bioconductor.org/packages/3.20/bioc/src/contrib/Biostrings_2.74.1.tar.gz'
Content type 'application/x-gzip' length 12823307 bytes (12.2 MB)
==================================================
downloaded 12.2 MB

trying URL 'https://bioconductor.org/packages/3.20/bioc/src/contrib/rtracklayer_1.66.0.tar.gz'
Content type 'application/x-gzip' length 4112666 bytes (3.9 MB)
==================================================
downloaded 3.9 MB

* installing *source* package ‘Biostrings’ ...
** package ‘Biostrings’ successfully unpacked and MD5 sums checked
** using staged installation
** libs
using C compiler: ‘gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0’
gcc -I"/usr/share/R/include" -DNDEBUG  -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/S4Vectors/include' -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/IRanges/include' -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/XVector/include'     -fpic  -g -O2 -fdebug-prefix-map=/build/r-base-LHi8Yy/r-base-4.4.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2  -c BAB_class.c -o BAB_class.o
[...]
[... chunks ommitted for clarity ...]
[...]
installing to /home/fernan/R/x86_64-pc-linux-gnu-library/4.4/00LOCK-Biostrings/00new/Biostrings/libs
** R
** data
** inst
** byte-compile and prepare package for lazy loading
in method for ‘twoWayAlphabetFrequencyByQuality’ with signature ‘"QualityScaledXStringSet"’: no definition for class “QualityScaledXStringSet”
Creating a new generic function for ‘strsplit’ in package ‘Biostrings’
Creating a generic function for ‘ls’ from package ‘base’ in package ‘Biostrings’
Creating a new generic function for ‘pattern’ in package ‘Biostrings’
Creating a new generic function for ‘offset’ in package ‘Biostrings’
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
** checking absolute paths in shared objects and dynamic libraries
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (Biostrings)
* installing *source* package ‘rtracklayer’ ...
** package ‘rtracklayer’ successfully unpacked and MD5 sums checked
** using staged installation
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for OPENSSL... yes
configure: creating ./config.status
config.status: creating src/Makevars
** libs
using C compiler: ‘gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0’
gcc -I"/usr/share/R/include" -DNDEBUG -DUSE_SSL -D_FILE_OFFSET_BITS=64 -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/S4Vectors/include' -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/IRanges/include' -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/XVector/include'     -fpic  -g -O2 -fdebug-prefix-map=/build/r-base-LHi8Yy/r-base-4.4.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2  -c S4Vectors_stubs.c -o S4Vectors_stubs.o
gcc -I"/usr/share/R/include" -DNDEBUG -DUSE_SSL -D_FILE_OFFSET_BITS=64 -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/S4Vectors/include' -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/IRanges/include' -I'/home/fernan/R/x86_64-pc-linux-gnu-library/4.4/XVector/include'     -fpic  -g -O2 -fdebug-prefix-map=/build/r-base-LHi8Yy/r-base-4.4.2=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2  -c IRanges_stubs.c -o IRanges_stubs.o
[...]
[... chunks ommitted for clarity ...]
[...]
** R
** data
** demo
** inst
** byte-compile and prepare package for lazy loading
Creating a generic function for ‘offset’ from package ‘stats’ in package ‘rtracklayer’
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
** checking absolute paths in shared objects and dynamic libraries
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (rtracklayer)

The downloaded source packages are in
        ‘/tmp/RtmpXhTi2g/downloaded_packages’
Installation paths not writeable, unable to update packages
  path: /usr/lib/R/library
  packages:
    codetools, lattice, spatial

Why is R not using R_LIBS_USER???

Can someone help out here? Much appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (3): Can someone help
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Deb
  • Low reputation (1):
Posted by: fernan

79367468

Date: 2025-01-18 16:07:11
Score: 1
Natty:
Report link

It's a bad idea to use LoadLibrary here to get a module handle to ntdll.dll. For one thing, unless the call is balanced by a call to FreeLibrary it causes the process's reference count on ntdll.dll to continually increase. Secondly, its completely unnecessary because ntdll.dll is already loaded into every Win32 process. If you need to get a module handle to ntdll.dll, just use GetModuleHandleA("ntdll.dll").

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dave Mc in Cork

79367463

Date: 2025-01-18 16:06:11
Score: 1
Natty:
Report link

Register your site with Google Search Console. Then look at the details on the pages.

For example

enter image description here

Do note that Google is increasingly strict that the website should render correctly on a mobile.

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

79367459

Date: 2025-01-18 16:04:10
Score: 3
Natty:
Report link

Got Fixed, As there were some external dependencies in my project which were of no use. I removed them and updated the existing ones to latest version. Now query params are working as expected

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

79367458

Date: 2025-01-18 16:04:10
Score: 3
Natty:
Report link

The cell is being loaded in the opposite direction. Up needs to be down and down up. Also please check your wiring first and then try the above.

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

79367441

Date: 2025-01-18 15:55:09
Score: 0.5
Natty:
Report link

I found a way to get three sentences

<?php
$content = "My name is Luka. I live on the second floor. I live upstairs from you. Yes I think you've seen me before. ";
$dot = ".";

$number_of_sentences = substr_count($content, '.');

$first_dot = stripos ($content, $dot, 0);
$second_dot = stripos ($content, $dot, $first_dot+1);
$third_dot = stripos ($content, $dot, $second_dot+1);

if ($first_dot) {
    $first_sentence = substr($content, 0, $first_dot);
}
if ($second_dot) {
    $second_sentence = substr($content, 0, $second_dot);
}
if ($third_dot) {
    $third_sentence = substr($content, 0, $third_dot);
}


if ($number_of_sentences > 0) {
    echo $first_sentence . '.<hr>'; //first sentence
}
if ($number_of_sentences > 1) {
    echo $second_sentence . '<hr>'; //second sentence
}
if ($number_of_sentences > 2) {
   echo $third_sentence . '<hr>'; // third
}

echo $number_of_sentences;

?>

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: SuperMan

79367436

Date: 2025-01-18 15:51:08
Score: 2.5
Natty:
Report link

the Android Gradle plugin might get updated when you update android studio so it might be not compatible with your kotlin version.

take a look at kotlin multiplatform compatibility guide

and try to downgrade the agp version to the old one or upgrade the kotlin version maybe.

take a look also at this it might be helpful Unable to find method ''java.io.File > org.jetbrains.kotlin.gradle.tasks.KotlinCompile.getDestinationDir()

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

79367420

Date: 2025-01-18 15:41:06
Score: 0.5
Natty:
Report link

const AuthContext = createContext()

const AuthProvider = ({ children }) => { const [user, setUser] = useState(null);

useEffect(() =>{ const storedUser = JSON.parse(localStorage.getItem(${user})) setUser(storedUser) },[])

const login = (userData) => { localStorage.setItem(${user}, JSON.stringify(userData)); setUser(userData); };

const getUser = () => { return JSON.parse(localStorage.getItem(${user})) }

Are you trying to reference the variable? I think you need string interpolation for your "user". I changed it for you in the code above thinking it should work if you're trying to reach that variable. String interpolation is what I normally use when trying to put a variable inside a string using proper syntax ${varName} inside a ` (it's esc key on the keyboard) quotation marks for this to work. It will not work with the other quotation marks, but only that one.

I hope this works.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: AcidSnake

79367418

Date: 2025-01-18 15:40:06
Score: 2.5
Natty:
Report link

You should not add a comma(,) after a rest patter. In this case you added a comma after ...props and now it is not the last element anymore. That's what it is showing you in the error.

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

79367415

Date: 2025-01-18 15:40:06
Score: 1
Natty:
Report link

function extractNumberFromString(inputString){

const number=[];

for(const char of inputString){

if(!isNaN(char)){

number.push(parseInt(char));

}

}

return number;

}

const i="election2025india";

console.log(extractNumberFromString(i));

//OUTPUT :- [ 2, 0, 2, 5 ]

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

79367413

Date: 2025-01-18 15:39:05
Score: 0.5
Natty:
Report link

Creating a Packing for PHPMyAdmin and Column-Level Privileges

Managing database access and setting column-level privileges through PHPMyAdmin is straightforward. You can grant or restrict specific column-level access for users based on your project's requirements. Below is a step-by-step guide to create a proper setup:

  1. Create a User (if not already created):

Open PHPMyAdmin and go to the "User Accounts" tab.

Click on "Add User Account" to create a new user.

Enter the username, password, and configure the host (e.g., %, localhost, or a specific IP).

  1. Select the Database:

Assign the user to a specific database by choosing the "Database-Specific Privileges" option.

You can select one or more databases depending on the requirement.

  1. Set Column-Level Privileges:

Open the database where you want to set privileges.

Navigate to the "Structure" view of the relevant table.

Go to the "Privileges" tab and select the user.

Click on "Column Privileges" and configure the required permissions (e.g., SELECT, INSERT, UPDATE, DELETE) for individual columns.

  1. Test Permissions:

After saving privileges, test the access using the user credentials.

Ensure the user can only interact with the columns for which they have been granted permissions.


Important Tips:

Security: Always follow the principle of least privilege—grant only the access necessary for a user’s role.

Testing: Verify permissions after setting them to avoid any configuration errors.

Error Handling: If a user cannot access required columns, check logs or error messages to troubleshoot.

By following this packing, you can effectively manage database access and column-level privileges, ensuring security and functionality for your application.

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

79367411

Date: 2025-01-18 15:37:05
Score: 2.5
Natty:
Report link

I am pretty sure the issue is caused by a limitation in Google Script's generation of the web app. The same code written in HTML for a GIT Pages site correctly adds an icon when copied to an iPhone home screen.

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

79367405

Date: 2025-01-18 15:26:03
Score: 3
Natty:
Report link

Google knows how to screw people over with update's that are bugged it started this month only I got extra ram and space, so I know it's not that video card is working fin I play on my emulator MeMu playing war robots! now my whole computer crashes thank you google trash for ruining my day!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Charles Moran

79367400

Date: 2025-01-18 15:22:02
Score: 0.5
Natty:
Report link

You need to put these two styles

  div.col-md-6 > div.secText {
    /*Meant to mimic the spacing when in Tablet size for 1st 2 grid components*/
    width: 90%;
    margin-left: auto;
    margin-right:auto;
    margin-bottom: 16px;
  }
  
  div.col-md-12 > div.secText {
    /*Meant to be picked up in Tablet size for the 3rd, wrapped grid component and set
      different margin width so that it aligns with the unwrapped grid components*/
    width: 95%;
    margin-left: auto;
    margin-right:auto;
    margin-bottom: 16px;
  
  }

INSIDE of the @media (min-width: 768px) and (max-width: 921px) { block.

screenshot of the fixed website

The reason it was happening is because you had col-md-12 class on the third block, and since those styles were outside of the @media selector, they were being applied in all scenarios.

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

79367396

Date: 2025-01-18 15:19:01
Score: 2
Natty:
Report link

I added physical address in account settings on my phone (not in developer account) from this instruction: https://support.google.com/android/answer/12761393

I will check warning on next release.

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

79367393

Date: 2025-01-18 15:16:00
Score: 1.5
Natty:
Report link

I've been searching and came across this answer. It didn't work for me, maybe they updated syntax!!

What I used was just adding as followed by any of my existing table names, but please note this won't be good if the table names get changed. Also union types doesn't work, because typescript won't be able to narrow down the type and will throw another error!

You can still use as any like so:

await (prisma[tableName] as any).findUnique({..})
Reasons:
  • Blacklisted phrase (1): It didn't work for me
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jimmy Mohamad

79367388

Date: 2025-01-18 15:13:59
Score: 0.5
Natty:
Report link

That's also heppened if you try to init new Swiper without slides or swiper-wrapper. I mean

<div class="swiper">
    <div class="swiper-wrapper"></div>
</div> 
<script>
    new Swiper('.swiper', {...})
</script>

OR

<div class="swiper">

</div>    
<script>
    new Swiper('.swiper', {...})
</script>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Galaxy IT

79367383

Date: 2025-01-18 15:11:59
Score: 1.5
Natty:
Report link

app.use() is especially designed for middlewares.

app.all(*) is intended to handle all the request coming to only & only to particular path only "/PATH" not for /PATH/MOREPATH, unless explicitly specified with wildcards or regex.

To handle /path and all sub-paths, you would need to use a wildcard like app.all('/path*', ...).

So , that's a basic difference .

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

79367381

Date: 2025-01-18 15:10:58
Score: 1
Natty:
Report link

The most common pattern is to use Rails Engines for that matter. Rather than interacting with a real database, Rails engines would allow you to replicate the functionality of ActiveRecord::Base (and other Rails classes) by injecting its behaviour into your gem. By doing so, you can test the implementation without the need for an actual database connection. By doing so

One of the most popular use cases for that can be seen on Devise codebase. You can check some examples here.

For more info see: Getting Started with Engines docs

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Lidiane T.

79367379

Date: 2025-01-18 15:09:57
Score: 6 🚩
Natty:
Report link

Could you provide full code AuthProvider component? It seems issue in passing values in AuthContext.Provider, but I don't see this part

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nikolay Kazmirchuk

79367376

Date: 2025-01-18 15:08:57
Score: 2.5
Natty:
Report link

Add the following text to the video filename: #t=[h:]mm:ss. So, supposing the video file is named myvideo.mp4 and it starts at 30'', the source attr should be src="myvideo.mp4#t=00:30". If you want to start the video at 1h12min34sec: src="myvideo.mp4#t=1:12:34".

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christian Höhne

79367373

Date: 2025-01-18 15:06:57
Score: 0.5
Natty:
Report link

I was still looking for an answer given that the above options did not work for me in vs studio 2022. This is what worked for me.

Reset of vs settings :

  1. From the menu bar, select Tools > Import and Export Settings.
  2. In the Import and Export Settings Wizard, select Reset all settings, and then select Next.
  3. On the Save Current Settings page, select either Yes, save my current settings or No, just reset settings, overwriting my current settings, and then select Next.
  4. On the Choose a Default Collection of Settings page, select a collection, and then select Finish.

**There will be an option to backup your current settings after you choose to reset all settings, I personally did.

Microsoft reference

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: NewBie1234

79367368

Date: 2025-01-18 15:03:56
Score: 0.5
Natty:
Report link

For anyone looking for this in version 15 the method is now:

Tone.getTransport().bpm.value = some_new_bpm
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Sam0

79367362

Date: 2025-01-18 15:00:55
Score: 3
Natty:
Report link

Update has no conditions? It seems that you used user_id, so you can create an index on user_id, and the update will be completed soon.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: RP.S

79367357

Date: 2025-01-18 14:57:54
Score: 2
Natty:
Report link

I experienced the same error. However, I could not reconcile the reason for this being that the query was being executed twice. I eventually determined that my insert was referencing a column that did not exist in the table. Creating the table definition with the missing column fixed the problem.

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