79370963

Date: 2025-01-20 10:29:21
Score: 0.5
Natty:
Report link

I am not sure for record simultaneously, You need to explore camerawesome package.

Detailed Documentation:
https://docs.page/Apparence-io/camera_awesome/getting_started/multicam

Code Snippet:

CameraAwesomeBuilder.awesome(
    sensorConfig: SensorConfig.multiple(
        sensors: [
            Sensor.position(SensorPosition.back),
            Sensor.position(SensorPosition.front),
        ],
        flashMode: FlashMode.auto,
        aspectRatio: CameraAspectRatios.ratio_16_9,
    ),
    // Other params
)

Expected Result:
Result

Related link for How to use Concurrent cameras:
https://pub.dev/packages/camerawesome#--concurrent-cameras

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

79370961

Date: 2025-01-20 10:28:20
Score: 1.5
Natty:
Report link

check if input name have [] in the last like this

  <input type="file" name="images[]" id="images" multiple> 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahmod Algeriany

79370957

Date: 2025-01-20 10:27:20
Score: 1.5
Natty:
Report link

The options here mention mostly passing of a simple data, some (comments) mentioned using context. But you do not always want to pass simple data and using context for this is, in my opinion, not an ideal solution1.

If your use case is similar to mine - you want to avoid refetching data that had already been fetched by parent component - I found out that the best solution for me is using the SWR library (it was created by Next.js developers).

You can even find it mentioned in the official Next.js docs here.

If you haven't heard of it

Basically it's a client-side cache that manages key-value pairs, where keys are URLs you fetched and values are the data returned by this fetch. If you then try to refetch the same URL, it will (practically immediatelly) return the cached response.

So in our scenario, you fetch the data in the parent component, and then can fetch as many times as you want in other (bonus: not limited to child) components, basically working as using data from context.


1 Mostly because I find it annoying to specify context everywhere I want to use this logic, but also my spidey-sense is tingling, there are gonna be more gotchas.

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

79370956

Date: 2025-01-20 10:27:20
Score: 1
Natty:
Report link

having this same issue today with:

"expo": "~52.0.25",
"react-native": "0.76.6",
"expo-camera": "~16.0.12",

"expo-camera": "~16.0.13", released 15 minutes ago If you want, try it with that one

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

79370955

Date: 2025-01-20 10:26:20
Score: 0.5
Natty:
Report link

Shop and Single Product pages in WooCommerce are often controlled by the theme or WooCommerce itself, and typically can't be edited directly in Beaver Builder like regular pages.

Here's how you can edit them:

  1. Shop Page: Go to WordPress Dashboard > Pages > Shop (if the shop page is set as a regular page). If you're using a theme with custom WooCommerce templates, you won't be able to edit it directly in Beaver Builder. You'd need to use Beaver Themer to customize the Shop Page Layout (through Beaver Builder > Themer Layouts). If it’s not appearing in Themer Layouts, you may need to override your theme's template files via child theme or custom CSS.

  2. Single Product Page: Use Beaver Themer to create or edit the Single Product layout: Go to Beaver Builder > Themer Layouts. Look for or create a layout for Single Product.

If you’re using WooCommerce, it’s common to need a custom template (usually PHP) for detailed customization, so be sure to check if your theme offers custom single product templates.

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

79370941

Date: 2025-01-20 10:23:19
Score: 3
Natty:
Report link

From the Edit menu in Visual Studio 2022 you can see this:

enter image description here

So press CTRL + R followed by CTRL + the - minus key on your numeric keypad to do this. I've been looking for this for years - not sure if it's just been added?

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Andy Brown

79370936

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

I encounter the same issue; I wonder why you ask this question here and not in https://github.com/mozilla/pdf.js/issues

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

79370929

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

Just use resizeToAvoidBottomInset in Scaffold

like : Scaffold( resizeToAvoidBottomInset: true, )

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

79370925

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

The problem is that the SIGPIPE signal terminates the program and the connection to the server is not implemented securely. It would be safer to entrust the reconnection work to one thread.

To ignore SIGPIPE:

#include <signal.h>
...
...
...
int main():
    signal(SIGPIPE, SIG_IGN);
...

And from thread1 need to remove reconnection part:

{
std::lock_guard<std::mutex> lock(atom_mtx);
            if (!connected.load())
            {
                std::cerr << "No connection to the server" << std::endl;
                connect_to_server();
            }
}
         
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: crono

79370917

Date: 2025-01-20 10:15:16
Score: 2
Natty:
Report link
u can do it by using css like

    .legend
{
          border-radius: 20px;
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Md.Tanvir Hossain

79370914

Date: 2025-01-20 10:14:15
Score: 1.5
Natty:
Report link

For me, this problem seems to have appeared following a signing issue in Docker: https://github.com/docker/for-mac/issues/7527 (I restarted my computer to try to fix this problem, and this new issue about Docker containing malware appeared).

Simply reinstalling Docker fixed the problem.

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

79370909

Date: 2025-01-20 10:13:15
Score: 2.5
Natty:
Report link

This api key is working for me apikey: "7O07VN664O10JW6A9ESS113p8sf9JeGzr6_2haC9F9m_ANtLM",

but this is not my api how to get my own apikey ? in visanet dashboard any one give me full intruction how to get my apikey and how to do this verification steps

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

79370893

Date: 2025-01-20 10:05:13
Score: 0.5
Natty:
Report link

In current Flyway (at least as of now, version 10) for that Mixed migration mode should be use with executeInTransaction=false value in the script configuration file. See more for details:

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

79370885

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

Correct answer and to reiterate what was said ! email-js removed the Papu value from the dashboard. And user-Id has now been replaced by "public key" which is found under the account section on the email.js dashboard. Your contact form should now be sending email using emailjs. When the user submits the form, the handleSubmit function will send an email to your designated email address with the form data.

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

79370872

Date: 2025-01-20 09:58:12
Score: 1.5
Natty:
Report link

Changing config key "user" to "username" worked for me.

user: envVars.SQL_USERNAME to username: envVars.SQL_USERNAME

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

79370868

Date: 2025-01-20 09:57:11
Score: 4.5
Natty: 5
Report link

THANKS. Worked perfectly, no hassle

Reasons:
  • Blacklisted phrase (0.5): THANKS
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cedric Stj

79370861

Date: 2025-01-20 09:54:10
Score: 1
Natty:
Report link

You should use reset_actions() which clears actions that are already stored locally and on the remote end.

You can add some time delay while performing mouse movement operations.

for i in range(4000):
  actions.reset_actions()
  actions.click(cookie)
  actions.perform()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Koushik

79370859

Date: 2025-01-20 09:53:09
Score: 4.5
Natty: 4
Report link

Самый действующий способ, которым я пользуюсь.
Не забудьте указать вашу ссылку.

<Link to={`your_link`} query={{test: this.props.test}} target={'_blank'}>Test</Link>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Jin Drew

79370808

Date: 2025-01-20 09:26:03
Score: 3
Natty:
Report link

Just add new plugin https://wpcode.com/ using this plugin add your custom code

avoid adding code in functions.php it will break core functionality. Use Perfect hook for update product type at create time.

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

79370807

Date: 2025-01-20 09:26:03
Score: 1.5
Natty:
Report link

I encountered this issue as well, where the text-to-speech feature wasn't working in Arabic. To resolve the problem, follow these steps:

Go to your device's settings and select Arabic (Saudi Arabia) as the preferred language and drop it to be the first. Ensure the Arabic (Saudi Arabia) voice is installed, as it supports speech functionality. If necessary, update your Windows or restart your device. This should fix the issue.

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

79370806

Date: 2025-01-20 09:25:58
Score: 7 🚩
Natty: 6
Report link

Do you have any update on this? I tried your override on my side but the deprecation warning is still getting displayed.

Reasons:
  • Blacklisted phrase (1): update on this
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Julien68

79370805

Date: 2025-01-20 09:25:58
Score: 3
Natty:
Report link

--cr-fallback-color-neutral-outline: rgb(199, 199, 199);--cr-fallback-color-neutral-outline: rgb(199, 199, 199);--cr-fallback-color-neutral-outline: rgb(199, 199, 199);--cr-fallback-color-neutral-outline: rgb(199, 199, 199);

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

79370804

Date: 2025-01-20 09:25:58
Score: 2
Natty:
Report link

I've been seeing the exact same thing. Did some of your steps to solve it as well and eventually found out, that one of my workers was having intermittent network connectivity issues. I got to that, because I was seeing DNS queries failing randomly. That said, it could also be coredns not having enough resources to cope with the clusters demands. You could also check that.

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

79370803

Date: 2025-01-20 09:25:57
Score: 9.5 🚩
Natty: 5
Report link

hey i am also try to change the virtual background so have resolve it?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve it?
  • RegEx Blacklisted phrase (2): hey i am
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Naman

79370801

Date: 2025-01-20 09:24:57
Score: 2
Natty:
Report link

I faced same issue and found out, that this is caused by button with name "action". Changing name on the button fixes the issue.

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

79370770

Date: 2025-01-20 09:12:54
Score: 1.5
Natty:
Report link

thanks for the help. I was able to find the cause or the issue. I was trying to play the audio wav file in Postman but the API was returning random data as shown in the picture above and for some reason, the Postman was not able to process the file to play. I thought the decryption is not done properly.

Once I deployed and ran the code in my web application (voice recording solution), the decryption and audio files were playable.

So again thanks all for the help.

PS: Both the scripts are working.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Amjad

79370767

Date: 2025-01-20 09:11:54
Score: 1.5
Natty:
Report link

Handsontable can be used for free for non-commercial and evaluation purposes. If you intend to use it for a commercial project before going live, you'd need to purchase a license. You can read more about it at https://handsontable.com/docs/javascript-data-grid/software-license/ and ask [email protected] to specify if you qualify for the non-commercial use if that is unclear.

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

79370765

Date: 2025-01-20 09:08:53
Score: 5.5
Natty:
Report link

In my browers, running the code you provide, the result is '0'.Please provide more information

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jerry-lzj

79370763

Date: 2025-01-20 09:07:52
Score: 1
Natty:
Report link

If I understood your question correctly, the issue might be that there isn’t an explicit Allow statement, which results in access being denied by default. In your policy, I don’t see any Allow for s3:... or sts:... actions.

Try adding a new statement that explicitly allows the actions you need.

Don’t hesitate to comment if you need further assistance :)

Reasons:
  • Blacklisted phrase (1): to comment
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Danilo Cacace

79370747

Date: 2025-01-20 09:00:51
Score: 1.5
Natty:
Report link

tls (and http) is Traefik dynamic config. Place it in a separate file and load it in static config via providers.file (doc).

Your http-to-https redirect can be placed globally on entrypoint, ceck simple Traefik example.

Note that you should update your Traefik image version.

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

79370746

Date: 2025-01-20 08:59:51
Score: 3.5
Natty:
Report link

Use this library import- org.apache.commons.text.StringEscapeUtils

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

79370743

Date: 2025-01-20 08:58:50
Score: 0.5
Natty:
Report link

Commentators explained that the reason why nWrap can't produce an optimized return value here is because it would change the return type of the (non-templated) function.

With that, I found that embedding nCalls return value into another lambda definition (and thus a distinct type), will enable compilers to eliminate the loop:

static inline constexpr auto nWrap(std::size_t n) {
    return [n]() { for (std::size_t i = 0; i != n; ++i) call(); };
};

std::function<void()> nCalls(std::size_t n) {
    if (n == 1) {
        return []{nWrap(1)();};  // Return value embedded into another lambda
    }
    return nWrap(n);
}

std::function<void()> oneCall() { return nCalls(1); }

Results in oneCall always returning an optimized std::function and nCalls deciding at runtime what to return – which isn't what I asked for, but it's what I'm currently settling with.

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

79370740

Date: 2025-01-20 08:57:50
Score: 1
Natty:
Report link

Have a look at QSV.

I would select the columns, pipe through either a search (if simple regex will do or luau filter if more complicated stuff is required and then redirect to the new file name for R to read.

Very fast. Has an index feature which could speed the search up even more.

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

79370738

Date: 2025-01-20 08:57:50
Score: 1.5
Natty:
Report link

I have identified the root cause being:

.table {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

specifically overflow: hidden;

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

79370734

Date: 2025-01-20 08:56:50
Score: 2.5
Natty:
Report link

Try this: https://github.com/marco-prontera/vite-plugin-css-injected-by-js

For me this plugin solved all my needs.

Reasons:
  • Blacklisted phrase (1): this plugin
  • Whitelisted phrase (-2): Try this:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: jeron-diovis

79370730

Date: 2025-01-20 08:53:49
Score: 0.5
Natty:
Report link

Powershell's -replace supports lookaheads:

(Get-Content -Raw file.tsv) -replace '(?<=\t)\\N(?=\t)','' | Set-Content file.tsv

It removes \N from empty tsv cells for 900mb file in 7s. But beware of possibly converted line breaks.

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

79370714

Date: 2025-01-20 08:46:47
Score: 3
Natty:
Report link

I've try both the solutions, reset the form when closing and use only one method for get the values, but still doesn't works. I really have no idea...

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

79370712

Date: 2025-01-20 08:45:47
Score: 4
Natty:
Report link

I use a turborepo, and I get this error because I was in the wrong path. Not in the root.

Reasons:
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Csutkas

79370711

Date: 2025-01-20 08:44:46
Score: 3.5
Natty:
Report link

I have the same issue but finally found a way out!

First,check ur project csproj file make sure packages are set suitable for Avalonia 11.Mine as following:

<PackageReference Include="Avalonia" Version="11.2.1" />    
<PackageReference Include="OxyPlot.Core" Version="2.2.0" />
<PackageReference Include="OxyPlot.Avalonia" Version="2.1.0-Avalonia11" />

Second,the App.axaml should set like:

<Application.Styles>
  <FluentTheme />
  <StyleInclude Source="avares://OxyPlot.Avalonia/Themes/Default.axaml"/>
</Application.Styles>

Finally,add xmlns:oxy="http://oxyplot.org/avalonia" in your view's axaml then try yo add

<oxy:Plot Height="150"
         PlotMargins="50 0 0 0"
         PlotAreaBorderColor="#999999">
  <oxy:Plot.Series>
    <oxy:AreaSeries
        DataFieldX="Index"
        DataFieldY="Value"
        Color="#fd6d00" />
  </oxy:Plot.Series>
</oxy:Plot>

for test. Anythings further can check in this github issues page

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Martin Hung

79370697

Date: 2025-01-20 08:35:45
Score: 0.5
Natty:
Report link

I second the answer of @Friedrich as it is good practice for "real" projects, but for completeness you can try to work from the output of the dir() function :

def check_ascii(args: list[str]) -> bool:
    for s in args:
        if not s.isascii():
            return False
    return True

a, b, c = 5, 7, 0
print(dir())
# ['__annotations__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'check_ascii', 'a', 'b', 'c']
check_ascii(dir())
# True

èé = True
print(dir())
# ['__annotations__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'check_ascii', 'a', 'b', 'c', 'èé']
check_ascii(dir())
# False
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Friedrich
  • Low reputation (0.5):
Posted by: globglogabgalab

79370692

Date: 2025-01-20 08:33:44
Score: 2.5
Natty:
Report link

I'm having the same issue, with a more complex case: In my angular app, I use the attribute ngCspNonce for all inline scripts and styles. For analytics, I load a first script (gtm.js) from googletagmanager and send it the nonce with the help of the page https://developers.google.com/tag-platform/security/guides/csp?hl=en then gtm fires a call to onetrust script, automatically adding the nonce. Inside onetrust you must be sure that the option

Enabled Content Security Policy support If enabled, the polyfill allows us to add inline styles, style tags with a nonce are allowed by the CSP

is checked at the publishing stage (both for test and production). And it's actually working!! except for a little thing: the onetrust script adds a

<div style="display: none; visibility: hidden;">

which is of course blocked by csp and breaks the page style. I submitted a case for their support team and waiting for an answer.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: kerfall

79370688

Date: 2025-01-20 08:32:43
Score: 5
Natty:
Report link

i am getting an error message while working in IIs server can anpy one can help me out on this error message

below is the details

Server Error in '/' Application.

JobStorage.Current property value has not been initialized. You must set it before using Hangfire Client or Server API. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: JobStorage.Current property value has not been initialized. You must set it before using Hangfire Client or Server API.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (1): i am getting an error
  • RegEx Blacklisted phrase (2): help me out
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nitin J

79370679

Date: 2025-01-20 08:29:42
Score: 1
Natty:
Report link

I just had success with a simpler version of the solution on Mac OS X:

brew update brew remove svn brew reinstall svn --build-from-source

I didn't want to change the sqlite version because I have other stuff which use it, so I correctly guessed that rebuilding svn from source would make it compatible with the sqlite I already have.

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

79370678

Date: 2025-01-20 08:29:42
Score: 1
Natty:
Report link

Not via roads directly, afaik.

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

79370669

Date: 2025-01-20 08:25:40
Score: 7.5 🚩
Natty: 6
Report link

I used rpc pinging method for these URLs but they are still not indexed on google, any thoughts? https://nextgen-educator.blogspot.com/2025/01/free-guest-post-sites-2025.html

Reasons:
  • Blacklisted phrase (1.5): any thoughts
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rahul Sharma

79370666

Date: 2025-01-20 08:24:40
Score: 1.5
Natty:
Report link

If you are importing any dependencies that will behave like SDK, then replace the android:icon as : <application tools:replace="android:icon" </application>

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

79370662

Date: 2025-01-20 08:22:39
Score: 2.5
Natty:
Report link

Just add barrierDismissible: false, in your showDialog

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

79370660

Date: 2025-01-20 08:21:39
Score: 1.5
Natty:
Report link

i dont know why but i had the same issue. STRIPE_PUBLISHABLE_KEY for example worked fine. I think there is something wrong with the variable name itself (STRIPE_SECRET_KEY)

Reasons:
  • Whitelisted phrase (-1): i had the same
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hussein Elsayed

79370659

Date: 2025-01-20 08:21:39
Score: 3
Natty:
Report link

Press Win+R, type services.msc, and press Enter. Search for the Mysql80 service and start it if it exists, otherwise install it.

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

79370646

Date: 2025-01-20 08:16:38
Score: 3
Natty:
Report link

It seems the metals extension download failed. For any assistance or to explore high-quality metal products, visit Tiwari Metals Raipur. Tiwari Metals offers reliable solutions for your construction needs!

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

79370642

Date: 2025-01-20 08:15:38
Score: 3
Natty:
Report link

WCAG does not require you to have a submit button. However there are recommended techniques on wcag saying you could use it to fullfill rule 3.2.2.

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

79370634

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

I didn't look at your code, but faced a similar issue, the problem is the child row widget needs width info from the parent. If there is no width info given by parents, the child row takes only the necessary space needed for each of its children, thus the main axis alignment won't work, cuz there is no space to align. Give some width info to the parent, so that the child row can get enough space to play around

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

79370623

Date: 2025-01-20 08:08:36
Score: 2.5
Natty:
Report link

There is a SoundCloud app available in your Google Store. You can install it on your Android. You can also use Macsome Music One to download SoundCloud songs and playlists to MP3 so that you can transfer SoundCloud music to Android devices for playback.

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

79370608

Date: 2025-01-20 08:00:34
Score: 1
Natty:
Report link

i think separate tables is better .because you can right easy query and you dont need to fetch unwanted details for login etc

Separation of Concerns: By storing sensitive information like passwords in a separate table, you can apply stronger security measures, like encryption or hashing, without risking exposing non-sensitive user details.

Minimizing Risk: If a malicious actor gains access to the user information table, they will only have access to non-sensitive data (name, email, etc.). The passwords remain secure in the authentication table.

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

79370602

Date: 2025-01-20 07:58:34
Score: 1
Natty:
Report link

To search a file

(make sure to open cmd as admin):

forfiles /p C:\ /m myfile.pdf /s

here,

/p C:\: is starting path for the search,

/m myfile.pdf is your file name,

/s this searches all subdirectories.

To delete a file

del "myfile.pdf"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shantanu

79370600

Date: 2025-01-20 07:56:33
Score: 2.5
Natty:
Report link

we are using ImageMagick for image processing, when we create cmd object as following, it could start 1000+ IM convert process in one Server in high concurrent env. The IM convert process will be killed by Linux, and return exit code 137 error.

 ConvertCmd cmd = new ConvertCmd(false);

Are you able to release a similar PooledIMService for ImageMagick ?

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

79370597

Date: 2025-01-20 07:53:33
Score: 0.5
Natty:
Report link

I was facing the same issue.

I don't know why, but even if the beans.xml (the CDI deployment descriptor) is not required, it seems that putting it in your web application archive resolves the problem.

It should be located in the WEB-INF directory :

For a web application, the beans.xml deployment descriptor, if present, must be in the WEB-INF directory. For EJB modules or JAR files, the beans.xml deployment descriptor, if present, must be in the META-INF directory.

Introduction to Jakarta Contexts and Dependency Injection > Configuring a CDI Application

By convention, META-INF and WEB-INF folders are located under the webapp directory (Getting Started with Web Applications > The Web Application Archive > Building The Example Projects).

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

79370586

Date: 2025-01-20 07:48:32
Score: 1.5
Natty:
Report link

In your code snippet I see that your delete form is nested inside the update form. I assume that sometimes the wrong form gets triggered and that is causing the issue.

In the w3 docs you can read the following: "Note you are not allowed to nest FORM elements!"

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

79370582

Date: 2025-01-20 07:47:31
Score: 4
Natty: 5
Report link

Thank you for the script, confirmed it is working as a charm :).

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

79370581

Date: 2025-01-20 07:47:31
Score: 2.5
Natty:
Report link
  1. editing file /usr/share/filebeat/module/wazuh/alerts/ingest/pipeline.json

  2. apply changes

    sudo filebeat setup --pipelines

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

79370570

Date: 2025-01-20 07:43:30
Score: 2
Natty:
Report link

Most likely cause is that rate limits are applied per Ingress NGINX controller replica.

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

79370568

Date: 2025-01-20 07:43:30
Score: 1.5
Natty:
Report link

Is that "Pages" a folder of you site pages library? From the Get-PnPPage examples:

EXAMPLE 3

Get-PnPPage "Templates/MyPageTemplate"

Gets the page named 'MyPageTemplate.aspx' from the templates folder of the Page Library in the current SharePoint site

"pages" should be a folder of the Page library.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is that
  • Low reputation (0.5):
Posted by: Allen_MSFT

79370566

Date: 2025-01-20 07:42:30
Score: 0.5
Natty:
Report link

After a lot of tinkering, I finally figured out the solution myself.

There are two options:

Option 1: Save the file as a TXT instead of CSV. Then, open Excel (just Excel, not the file itself) ... and in Excel go to File -> Open and open the TXT file. There, you can specify a desired delimiter, and it will split the content into three columns.

Option 2: This is even simpler:
db2 "export to users.csv of del modified by coldel0x3b select userid, name, description from users"
This way, everything is done automatically. It directly writes the data into columns "A," "B," and "C."

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

79370547

Date: 2025-01-20 07:33:28
Score: 1
Natty:
Report link
Intent(Settings.ACTION_DATA_ROAMING_SETTINGS)

Supplying the result of the above into startActivity does it for me in Android 15.

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

79370539

Date: 2025-01-20 07:28:27
Score: 2
Natty:
Report link

Both approaches have the same time complexity of 𝑂(𝑛), but std::find_if is generally preferred for its clarity.In real-world scenarios, compilers optimize both approaches effectively,so the performance difference is often negligible.

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

79370538

Date: 2025-01-20 07:27:27
Score: 2
Natty:
Report link

You don't need UDP hole punching, just send a dummy load to server, because the packet has the source ip and port the server will figure the right port. Simply writing anything back will get back to udpcon you created

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

79370536

Date: 2025-01-20 07:25:27
Score: 1
Natty:
Report link

To create a context menu in a Vue 3 form for selecting adult and children guests, follow these steps:

Custom Input Component: Build a reusable Vue component for the input field. Use v-model to bind the values of adults and children to the parent form.

Add Context Menu: Implement a dropdown or popover (using a library like Vue3-Popper) that appears when clicking the input.

Emit Values: Use Vue’s emit to send the selected values (adult_guests and children) to the parent form.

Hidden Fields for Form Submission: Include hidden inputs to pass these values when the form is submitted to Laravel.

For expert guidance, check out Bizmia for Laravel and Vue development support. Let me know if you need further clarification!

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

79370527

Date: 2025-01-20 07:19:25
Score: 3.5
Natty:
Report link

nice but can be better if you followed the rules correctly

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

79370506

Date: 2025-01-20 07:09:23
Score: 4
Natty:
Report link

I would recommend you to use OAuth 2.0 to access sharepoint.You could refer to following article to use credentials.

https://medium.com/@martin-jurran/authentificating-with-oauth-2-0-to-sharepoint-online-rest-service-in-net-guide-ae0e984aa9dd

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: RaytheonXie-MSFT

79370501

Date: 2025-01-20 07:05:22
Score: 1
Natty:
Report link
enter code herein Game component 
const {stage, setStage } = useGame()

and pass setStage as prop to <Start setStage={setStage}/>

in Start component
const {setStage} = props
and in handleClick use this 

 const handleClick = () => {
        setStage(STAGE.PLAYING);
    };

it working and checked.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: rohit kesharwani

79370495

Date: 2025-01-20 07:03:22
Score: 0.5
Natty:
Report link

Not sure if I should close this question (if someone thinks I should please vote so). There seems to be a much simpler and out-of-the-box solution for awaiting a value from a publisher. It's not a exact one-to-one replacement for my requirement, but this works for my use case for now.

I just need to call .values and that would convert the publisher to a AsyncPublisher. One could iterate the async stream and apply logic to wait till the the requirements dictate

@MainActor
class ThingClass {
    
    let intPTS = PassthroughSubject<Int, Never>()
    var anyCancellables: Set<AnyCancellable> = []
    
    init() {
        
        Timer.publish(every: 5, on: .main, in: .common)
            .autoconnect()
            .sink { _ in self.intPTS.send(10) }
            .store(in: &anyCancellables)
    }
    
    func doSomething() async {

        for await num in intPTS.values {
            if num == 10 {
                break
            }
        }
        print("intPTS is 10 now!")
    }
}
Reasons:
  • RegEx Blacklisted phrase (1): I should please
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Aswath

79370493

Date: 2025-01-20 07:03:22
Score: 1
Natty:
Report link

You can check the data and time, And fix it.

for my case, time is incorrect, which is resolve after setting the right time.

I hope this will help a bit :)

Reasons:
  • Whitelisted phrase (-1): hope this will help
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Dubey Ravi vinod

79370491

Date: 2025-01-20 07:02:21
Score: 1
Natty:
Report link

Oh, I just knew the problem. In Lua, we can not create keys from this source.

A_PRIVATE_KEY="w2UwuwmF9h5p02fnr3MkxtKoDTl8aTtJXqLbsPwbqPg="
B_PRIVATE_KEY="ZyoPMal0TZzNwDyUUE30iThXCKgPOthPaIN2qnOhkNs="

So, these syntaxes are wrong.

local a_key = openssl_pkey.new({
  type = "EC",
  params = {
    private = a_bn,
    group = "prime256v1"
  }
})
local b_key = openssl_pkey.new({
  type = "EC",
  params = {
    private = b_bn,
    group = "prime256v1"
  }
})

These AI-suggested syntaxes are also wrong.

local a_key = openssl_pkey.new({
  type = "X25519",
  curve = "prime256v1",
  private_key = a_decoded_key,
})

We need to convert the source to the PEM keys first. So, the correct source would be like this.

A_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nYOUR_CONTENT_HERE\n-----END PRIVATE KEY-----"
B_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nYOUR_CONTENT_HERE\n-----END PRIVATE KEY-----"

Then, the correct Lua syntax would be like this.

local a_key = openssl_pkey.new(a_private_key)
local b_key = openssl_pkey.new(b_private_key)
Reasons:
  • Blacklisted phrase (1): ThX
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user29212913

79370488

Date: 2025-01-20 07:00:21
Score: 0.5
Natty:
Report link

I think I discovered the problem. This was in the POM.

<dependency>
    <groupId>com.google.endpoints</groupId>
    <artifactId>endpoints-management-control-appengine-all</artifactId>
    <version>1.0.14</version>
</dependency>

It seems to work when the version is changed to 1.0.15. I don't quite trust it yet. So, I'll have to work with it for a while longer.

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

79370484

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

Every time you use setCurrentBotId it causes a rerender for App component and it recreates a new instance of query client. To fix this, define the query client like below

const [queryClient] = useState(new QueryClient())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: abolfazl shamsollahi

79370483

Date: 2025-01-20 06:56:20
Score: 1.5
Natty:
Report link

I've found the solution to my problem. Weld CDI did not scan my CDI annotated classes in dependent liantis-faces-layout JAR. Adding a beans.xml file in the META-INF directory solved the issue.

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

79370475

Date: 2025-01-20 06:50:19
Score: 1
Natty:
Report link
 <Bar
      width="100%"
      height={300}
      data={coloredData}
      margin={{
        top: 50,
        right: 30,
        left: 20,
        bottom: 5,
      }}
      activeBar={{ fill: "blue", opacity: 0.7 }}
    />

here I used activeBar prop to change the color of active bar when hovered

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

79370466

Date: 2025-01-20 06:46:18
Score: 4.5
Natty: 4.5
Report link

**EXP DP **

I WELL ME COME BACK

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

79370456

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

Does anyone have any suggestions? I don't understand why Azure adds these arbitrary container limits.

The container limits in Azure's backup and replication solutions, such as the 100-container limit for Vaulted Backup and the 1000-container limit for Object Replication, are not arbitrary, It is based on a combination of technical, scalability, and performance considerations that Microsoft has designed into the platform.

I agree Gaurav Mantri's comment, you can use Multiple Azure Storage Accounts to Stay Within Azure Limits for Backup.

The above approach balances scalability and compliance without requiring a complete restructuring of your system.

Reference:

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (2): any suggestions?
  • RegEx Blacklisted phrase (3): Does anyone have any suggestions
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Venkatesan

79370450

Date: 2025-01-20 06:38:15
Score: 0.5
Natty:
Report link

Please check the token using https://jwt.io/ to see if any value is passed on the claims. If not, please add those claims while generating the token. We have shared the following details on how to fetch claims from the token.I hope this solution is okay for you.

var age =info.Principal.Claims.FirstOrDefault(x => x.Type == "").Value;

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dattatray Patil

79370445

Date: 2025-01-20 06:36:15
Score: 3.5
Natty:
Report link

I have managed to fix it by putting „.WithNonce“ on the default src CSP as well.

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

79370444

Date: 2025-01-20 06:34:15
Score: 0.5
Natty:
Report link

Possible Causes:

  1. Incorrect Credentials: The username or password in the .env file does not match the credentials configured in the database server.

  2. Insufficient Privileges: The user solvrcyi_admin does not have the necessary privileges to access the database or perform the DELETE operation.

  3. Database Server Configuration:

    • The user solvrcyi_admin is not allowed to connect from the localhost host.
    • The database server may require a different host (e.g., % for any host).
  4. Password Encoding Issue: If the password contains special characters, they may need to be escaped or quoted in the .env file.

  5. MySQL/MariaDB Authentication Method: The user might be using an authentication method that is not compatible with the application (e.g., caching_sha2_password).

How to Resolve:

  1. Verify Credentials: Ensure that the username and password in the .env file match the credentials used to access the database manually (via a MySQL client or command line).

  2. Check Database User Privileges: Log in to the database as a root or admin user and verify the privileges:

    SHOW GRANTS FOR 'solvrcyi_admin'@'localhost';

    If privileges are missing, grant them:

    GRANT ALL PRIVILEGES ON your_database_name.* TO 'solvrcyi_admin'@'localhost' IDENTIFIED BY 'your_password'; FLUSH PRIVILEGES;

  3. Use the Correct Host: If the application runs on the same server as the database, use DB_HOST=127.0.0.1 or DB_HOST=localhost in the .env file. If on a different server, set DB_HOST to the database server's IP address or hostname.

  4. Escape Special Characters: If the password contains special characters, enclose it in quotes in the .env file:

    DB_PASSWORD="your_complex_password!"

  5. Verify Authentication Method: Ensure the user solvrcyi_admin is using a compatible authentication method (e.g., mysql_native_password):

    ALTER USER 'solvrcyi_admin'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password';

  6. Test the Connection: Try connecting manually using the same credentials as in the .env file:

    mysql -u solvrcyi_admin -p -h 127.0.0.1

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

79370443

Date: 2025-01-20 06:34:15
Score: 3.5
Natty:
Report link

the mediasession delegate is supposed to run on the ui thread. You need the annotation @UiThread on it and also, I have noticed that the mediasession works when the app has notifications turned on and does not work while the notifications are blocked for the app.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @UiThread
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jash Asiamah

79370438

Date: 2025-01-20 06:29:14
Score: 3.5
Natty:
Report link

Solution provided by Gregg Browinski is work for me. Its a great help me and saves my time.

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sanjeev Pundir

79370434

Date: 2025-01-20 06:27:13
Score: 2
Natty:
Report link

In Delphi 12 you can write:

TPath.GetAppPath();

https://docwiki.embarcadero.com/Libraries/Athens/en/System.IOUtils.TPath.GetAppPath

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

79370430

Date: 2025-01-20 06:24:12
Score: 9 🚩
Natty: 5
Report link
Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2.5): can you provide me some
  • RegEx Blacklisted phrase (3): can you help me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ankit Kumar_17

79370428

Date: 2025-01-20 06:24:11
Score: 3
Natty:
Report link

in windows 11, i change keyboard layout type to ENG-US (not international )

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

79370425

Date: 2025-01-20 06:23:11
Score: 3
Natty:
Report link

Check in your code have you used this "//ignore: must_be_immutable" comment any where. If yes then remove it, because it prevent class to update it's state.

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

79370421

Date: 2025-01-20 06:20:10
Score: 1
Natty:
Report link

make a babel.config.cjs file at the root and add the below as the content

module.exports = {
    presets: [
        [
            '@babel/preset-env',
            {
                targets: {
                    node: 'current'
                }
            }
        ]
    ]
};

Trust me it works as magic!

Please upvote if it helped :)

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Basith

79370418

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

I can reproduce the same 500 error when trying to add an AAD group to Project Collection Valid Users group. If you add an AAD group manually to this group, you will get the same 500 error in the UI. enter image description here

According to the official doc, this group contains all users and groups added anywhere within the collection. You can't modify the membership of this group. That is why you get 500 error.

enter image description here

It's suggested that you add your AAD group to other groups at organization level, whether a built-in group or your custom group.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ziyang Liu-MSFT

79370415

Date: 2025-01-20 06:17:10
Score: 0.5
Natty:
Report link
String rgbToHex(Color color) {
  return '${color.red.toRadixString(16).padLeft(2, '0')}${color.green.toRadixString(16).padLeft(2, '0')}${color.blue.toRadixString(16).padLeft(2, '0')}';
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Akhil George

79370400

Date: 2025-01-20 06:04:22
Score: 2.5
Natty:
Report link

I found that xvfb was running in different run block from pytest.

So running xvfb in same run block with pytest is the solution.

Thank you all..!

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

79370391

Date: 2025-01-20 05:59:21
Score: 1
Natty:
Report link

As noted in the breaking changes for Next.js 15, both page/layout params and searchParams will now be of type Promise<...>. This and other breaking changes can be found here: https://nextjs.org/docs/app/building-your-application/upgrading/version-15#asynchronous-page.

For your use case,

interface PageProps {
  params: Promise<{
    slug: string;
  }>
}

export default async function PropertyDetailPage({ params }: PageProps) {
  const { slug } = await params
  const property = await getPropertyBySlug(slug);
  ...
}

should do the trick!

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

79370380

Date: 2025-01-20 05:52:20
Score: 0.5
Natty:
Report link

This

.separator COL ,

is a misreading of the help.

You don't write literal COL and ROW. .separator COL ?ROW? means to put column separator first, then optionally row separator.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Matthew Hannigan

79370379

Date: 2025-01-20 05:51:18
Score: 10.5 🚩
Natty: 5
Report link

I`m trying to write upload service with Minio. I have everything Endpoints, accesskey, secretkey. When I try to upload something this exception is coming in this part of my code.

enter image description here

enter image description here

can someone help me to solve this?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (3): can someone help me
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Anvar Hishimov

79370371

Date: 2025-01-20 05:47:15
Score: 9 🚩
Natty:
Report link

Can you share the code changes?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share the code
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you share the code
  • Low reputation (1):
Posted by: Prabhat Kumar singh

79370364

Date: 2025-01-20 05:42:14
Score: 1
Natty:
Report link

z.infer<typeof schema> will always resolve to the output of the provided zod schema (z.output<typeof schema>). Using z.input<typeof schema> i.e. useForm<z.input<typeof schema>>(...) will resolve to your expected types.

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

79370363

Date: 2025-01-20 05:42:14
Score: 1.5
Natty:
Report link

if you are using the web for react-native use this code inside your index.jsx or App.js

import { NativeWindStyleSheet } from "nativewind";

NativeWindStyleSheet.setOutput({
  default: "native",
});

source : https://github.com/nativewind/nativewind/issues/470

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

79370352

Date: 2025-01-20 05:27:10
Score: 1.5
Natty:
Report link

Have you ever used stencils to draw something? It makes it very easy to draw even complex objects. Now, imagine instead of using a stencil to draw with, you use one to pass over a drawing to see if you can find that object.

So if I had a stencil of a cat, I would pass that stencil over every part of the drawing to see if at any time the stencil passes over the shape of a cat, in other words, I would try to make this stencil "fit" over any cats drawn in the image.

Now, imagine the stencil can grow a little or shrink a little on any of its borders, so if a cat was a little smaller, or wider, or taller, etc... we could still "fit" over any cats.

To me, that is one of the most impressive mechanisms in neural networks, their ability to fit on top of complex patterns with a ability to change that fit using "bias".

But what if I need to fit over cats, ducks, horse and dogs? Things get complex quickly and the stencil may need to become much more complex. The activation function can let you create much more complex stencils by allowing the stencils to do things like add another dimension for your stencil so it can fit over much more complex spaces.

There are other useful mechanisms, such as, imagine a huge number of people, and each one had a statement and a number that rated how confident they were that the statement was true. Now Imagine that there are rows of these people, and each one in every row knew what every other person in the rows next to them statements and confidence were too. The speed and efficency of being able to cross check and consolidate information from person to all people in the row before and after them is a huge feat and benefit.

I like to think of things in simpler terms, in ways I can truly understand and relate to, and these types of analogies are helpful to me. So the people (neurons) line up in rows (layers), share information with each other (connections) and can make simple changes to a stencil (model's fit) so it fits over things easier. If the shapes the stencil needs to fit over are too complex for a simple 2d stencil, then it can use another trick (activation method) to allow the stencil to be much more flexible and complex, like adding another dimension, to the stencil.

The best book I ever read for having true insight into neural networks was "Building neural networks from scratch in Python". It is totally worth it even though it's a thick book.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Trevor Chandler

79370345

Date: 2025-01-20 05:24:09
Score: 2
Natty:
Report link

https://developers.google.com/analytics/devguides/config/admin/v1#user_permissions_management

I think this block is the API DOC you are looking for.

GA4_admin_api_User permissions management

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