79113178

Date: 2024-10-22 08:54:14
Score: 1
Natty:
Report link

is Ctrl + c by default but you can remap it, it is the same thing as or any other command that you can remap (like for exemple), it will change it for all of your commands

see :help map-CTRL-C.

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

79113168

Date: 2024-10-22 08:52:13
Score: 1
Natty:
Report link

Using migration:


Schema::table('posts', function (Blueprint $table) {
   $table->string('title_body')->virtualAs("CONCAT(title, ' ', body)");
});

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

79113164

Date: 2024-10-22 08:51:13
Score: 1.5
Natty:
Report link

I created sample Asp. net core 3.1 application and deployed to the Azure Web App service.

It Good to update your app .net 3.1 version to .net 8 as @LexLi suggested.

If you want to continue with .net 3.1 version deploy your app to Azure Web app service through Visual Studio.

I selected my project -> Right Click -> Publish -> Azure -> Azure App service (Windows) -> Create new.

enter image description here

enter image description here

enter image description here

enter image description here

After Create new I filled the necessary details and clicked the Create button.

enter image description here

I selected the newly created web app and clicked Finish button.

enter image description here

It is successfully published to Azure as shown below.

enter image description here

You can check Runtime Stack - Dotnetcore in Overview page of Azure Web app.

enter image description here

Azure Web App Output:

enter image description here

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

79113163

Date: 2024-10-22 08:51:13
Score: 0.5
Natty:
Report link

You need to add analysis_options.yaml inside the lib/ folder of your project core.

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

79113160

Date: 2024-10-22 08:50:12
Score: 4.5
Natty:
Report link

I'm also having the same issue,This looks like a hardware issue. I found that the frequency of this problem is very high in the powered state of the chip, and the operation in the non-powered state is almost non-existent

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm also having the same issue
  • Low reputation (1):
Posted by: 郑在忙

79113157

Date: 2024-10-22 08:50:12
Score: 1.5
Natty:
Report link

Selenium is the slowest of most web scraping libraries, but compared to others (Scrapy, Requests etc.) it's the only one that can scrape from dynamic websites. A dynamic website is one which the html is constructed at run time, and must be loaded for any information to be present. Other scraping libraries don't load the website, they just use the URL to retrieve the data associated with it within the web, which is why they run faster. However, with scraping from instagram, a dynamic website, there are no faster alternatives to selenium.

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

79113152

Date: 2024-10-22 08:49:12
Score: 3
Natty:
Report link

Apparently I find all of these encodings (done by Visual Studio Code) encodings (Windows-1252, ISO8859-1, ISO8859-3 and ISO8859-15) to be different than what Notepad++ does as ANSI. It seems there is a different encoding of the degree sign (°).

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

79113145

Date: 2024-10-22 08:47:11
Score: 1.5
Natty:
Report link

I have found solution here https://github-wiki-see.page/m/FlaUI/FlaUI/wiki/Common-Issues

So my problem occured because I am using DevExpress controls, so all I had to do was to disable this static property:

ClearAutomationEventsHelper.IsEnabled = false;

I am leaving the comment here if someone else has similar problem.

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

79113128

Date: 2024-10-22 08:43:10
Score: 0.5
Natty:
Report link

You're correct that custom rules can only be implemented as plugins. SQLFluff uses pluggy as it's plugin engine, which relies on the python packaging index to discover installed plugins. You don't need to publish your plugin publicly for this to work, you only need to be able to install it locally (i.e. pip install -e /path/to/my/local/plugin). For the necessary structure your plugin has to have there's an example plugin in the SQLFluff GitHub repository.

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

79113109

Date: 2024-10-22 08:37:09
Score: 0.5
Natty:
Report link

If you only need to test string, and don't need to capture text, the fastest way is:

$(?<!a) // 39 steps

This regex: $ puts cursor to the end of the string and then (?<!a) look (negative) behind.

Check it here https://regex101.com/r/VZ5Aqa/1

Compared with:

.*(?<!a)$ // 66 steps
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Argimko

79113106

Date: 2024-10-22 08:37:07
Score: 9 🚩
Natty:
Report link

Did you find any answer for this--> how to make i2c-core as module.I'm also facing the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you find any answer
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same issue
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any answer for this
  • Low reputation (1):
Posted by: Jagappradeep S

79113104

Date: 2024-10-22 08:36:06
Score: 2
Natty:
Report link

I have been facing a similar issue when trying to run Ray head as a docker container with the command

ray start --head --block --dashboard-host=0.0.0.0

One of the things that worked for me (I don't know why, yet) is getting rid of the --dashboard-host command line argument.

Although my issue was regarding raylet failing, causing Ray to return with error code 1

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Has code block (-0.5):
  • Me too answer (2.5): facing a similar issue
  • Low reputation (1):
Posted by: stwq

79113095

Date: 2024-10-22 08:35:06
Score: 3.5
Natty:
Report link

I have fixed the issue. I was trying html2canvas and changed it to html2canvas-pro and this can make the function work without a problem.

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

79113089

Date: 2024-10-22 08:33:06
Score: 2.5
Natty:
Report link

solution implementation ‘androidmads.library.qrgenearator:QRGenearator:1.0.3’ - instead of 1.0.4. implementation ‘com.github.androidmads:QRGenerator:1.0.1’.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: s.tunahan üstüntepe

79113086

Date: 2024-10-22 08:32:05
Score: 3
Natty:
Report link

Fantasy XI using AI" ke interface par jana Hai mughe link dijiye/ mai kase ja sakta hu Fantasy XI using AI" ke interface par

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

79113085

Date: 2024-10-22 08:32:05
Score: 3
Natty:
Report link

I've also managed to fix this issue by closing and re-opening CloudShell

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

79113082

Date: 2024-10-22 08:31:05
Score: 0.5
Natty:
Report link

If you add the shared library to a parent folder of the target job, and not use it globally, then you will get separate boxes for the code when running "Replay" for the shared lib functionality used as well.

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

79113063

Date: 2024-10-22 08:25:04
Score: 4
Natty:
Report link

Here is some tips(please Checkout):

https://github.com/spring-attic/top-spring-boot-docker/pull/33

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

79113062

Date: 2024-10-22 08:25:04
Score: 2
Natty:
Report link

Upgrading to Jest v.29.6.4 worked for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sue Maurizio

79113059

Date: 2024-10-22 08:24:03
Score: 3
Natty:
Report link

Under Extensions->Pylance->Features->Settings

Search for: python.analysis.inlayHints and disable all of them. Should do the trick.

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

79113019

Date: 2024-10-22 08:15:02
Score: 2
Natty:
Report link

I was missing another property: Dcucumber.filter.tags, to specify which example I want to use.

gradle clean e2e-test -Denvironment=dev -Dcucumber.filter.tags="@dev"
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Ragnarsson

79113013

Date: 2024-10-22 08:14:01
Score: 3.5
Natty:
Report link

Paho MQTTv3 library works with Azure Iot Hut therefore I have added Paho MQTTv3 library into the application and toggle between 3 and 5 as needed.

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

79113005

Date: 2024-10-22 08:11:00
Score: 1.5
Natty:
Report link

Project Names:Continuous CCTV Live Stream Integration

I need a professional with expertise in live video streaming to embed a continuous CCTV camera live feed onto a website dashboard. The live stream will need to incorporate certain security features, namely IP restriction.

Key Responsibilities:

Ideal Skills and Experience:

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rvm Infotech Solutions

79113001

Date: 2024-10-22 08:11:00
Score: 0.5
Natty:
Report link

this code worked in IIS:

Explanation of the Code:

Obtaining Host and Port:

var host = context.Request.Host.Host; var port = context.Request.Host.Port ?? 44318; Here, you're getting the host (hostname) from the HTTP request context using context.Request.Host.Host. If the port isn't explicitly specified, you're defaulting it to 44318. This would typically be a fallback to a port used by the server.

Creating a TCP Client and Establishing SSL:

using (var client = new TcpClient(host, port))
{
   using (var sslStream = new SslStream(client.GetStream(), false, new 
        RemoteCertificateValidationCallback(ValidateServerCertificate!), 
        null))
   {
        sslStream.AuthenticateAsClient(host);
        localCertificate = sslStream.RemoteCertificate as 
        X509Certificate2;
   }
}

A TcpClient is being created that connects to the specified host and port. Then, an SslStream is created using the network stream from the TCP client. SslStream allows you to securely communicate using SSL/TLS by encrypting data. The second parameter (false) specifies that you won't need to leave the stream open after the SslStream is disposed.

You're passing in a RemoteCertificateValidationCallback delegate (ValidateServerCertificate!) that will handle validation of the server's certificate.

sslStream.AuthenticateAsClient(host) authenticates the client to the server, initiating an SSL/TLS handshake. Finally, you're obtaining the remote server's certificate (sslStream.RemoteCertificate) and casting it to X509Certificate2. Certificate Validation Callback:

private static bool ValidateServerCertificate(object sender, 
X509Certificate? certificate, X509Chain chain, SslPolicyErrors 
sslPolicyErrors)
{
    if (certificate == null)
    {
        return false;
    }

    if (sslPolicyErrors == SslPolicyErrors.None)
    {
        return true; // No errors, certificate is valid
    }

    return false;
}

This callback function is used during the SSL handshake to validate the server's certificate. If no certificate is received (certificate == null), the validation fails, returning false. If no SSL policy errors are found (SslPolicyErrors.None), the validation is considered successful (true). Otherwise, if any errors are present, it returns false, rejecting the certificate.

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

79112998

Date: 2024-10-22 08:10:00
Score: 2
Natty:
Report link

1.Uninstall your vlc 2.Search 'libvlc.dll' on your local disk, and delete them all. 3.Install vlc(x64) again, and note that don't install it under 'program files', Then it will work.

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

79112994

Date: 2024-10-22 08:10:00
Score: 1.5
Natty:
Report link

document.body.scrollTop = document.documentElement.scrollTop = 0; window.print();

worked for me

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

79112990

Date: 2024-10-22 08:08:00
Score: 2
Natty:
Report link

try

sudo gem install -n /usr/local/bin cocoapods
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AnjanaJoseph

79112981

Date: 2024-10-22 08:05:59
Score: 0.5
Natty:
Report link

Probably your bindings are done incorrectly. Try something like this:

query = "SELECT * FROM accounts WHERE name = $1 AND description = $2"
ActiveRecord::Base.connection.exec_query(query, "SQL", [[nil, "Some account"], [nil, "Some Desc"]])
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Taras

79112973

Date: 2024-10-22 08:02:58
Score: 0.5
Natty:
Report link

Following up on @ver-greeneyes response with the latest Object.groupBy static function:

function chunkArray(array, perChunk) {
  return Object.values(Object.groupBy(array, (_, i) => i / perChunk | 0));
}
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: RecuencoJones

79112971

Date: 2024-10-22 08:01:58
Score: 3.5
Natty:
Report link

I have fixed the problem by modifying the font family.

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

79112949

Date: 2024-10-22 07:56:57
Score: 1
Natty:
Report link

You may use @checked in Laravel 9+ like this:

@checked(old('is_featured', $post->is_featured))

Where $post->is_featured is the fallback or the default value to be sent when the session has no is_featured old value

Blade Additional Attributes

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

79112944

Date: 2024-10-22 07:53:56
Score: 0.5
Natty:
Report link

Thanks to @deceze and @Keitetsu. This pip install msvc-runtime works for me too. But there is one important thing about it: it must be installed in main python, not in a venv! (even if an error occurs in the venv) It takes me a long time to realize it, and I hope this will help someone else.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): hope this will help
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @deceze
  • User mentioned (0): @Keitetsu
  • Low reputation (1):
Posted by: Sergey Vturin

79112936

Date: 2024-10-22 07:50:54
Score: 6.5 🚩
Natty:
Report link

I also have the same problem. Whenever I add a phone number and verify the business name after it’s approved, I receive the message shown in image 1. After that, I download the certificate, but I’m not sure what to do next. I’m stuck. Have you researched this? I’ve read all the documents but can’t find any clues, and I also used AI to get any clue but couldn’t find it. If you get any clues, please ping me here. If I find anything, I’ll ping you here with the solution.

Reasons:
  • RegEx Blacklisted phrase (1.5): m stuck
  • No code block (0.5):
  • Me too answer (2.5): I also have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AYUSH JOSHI 2

79112932

Date: 2024-10-22 07:49:53
Score: 2.5
Natty:
Report link

I have found this solution, however could not make it work... I am trying to run it for Push Notifications, neither:

XCODE_ATTRIBUTE_ENABLE_PUSH_NOTIFICATIONS YES

either:

XCODE_ATTRIBUTE_ENABLE_PUSH_NOTIFICATIONS TRUE

does not work

also I am very wondering how do I from xcode open this "Quick Help" to see this attribute if I spelled correctly

Reasons:
  • Blacklisted phrase (1): how do I
  • Blacklisted phrase (1): I am trying to
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jiri Zaloudek

79112930

Date: 2024-10-22 07:48:53
Score: 3.5
Natty:
Report link

Have a look at Powertools for AWS Lambda (Python)

https://docs.powertools.aws.dev/lambda/python/3.1.0/core/logger/

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

79112925

Date: 2024-10-22 07:47:53
Score: 1
Natty:
Report link

Try:

py -m pip install --upgrade package_name

See the duplicate Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: [duplicate] - Stack Overflow.

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

79112913

Date: 2024-10-22 07:42:52
Score: 3
Natty:
Report link

Starting with APEX 22.2, you can navigate to your page item attributes in Page Designer, look up the Session State section and change the session state data type to CLOB. That is available for Hidden, Textarea and Rich text items. Once that is in place, you should be able to receive large responses also ... does that work?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: Carsten

79112909

Date: 2024-10-22 07:41:49
Score: 7 🚩
Natty: 5
Report link

Have you found solution to this??? I'm looking to subscribe buy/sell txns.

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (2.5): Have you found solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ajaythxkur

79112899

Date: 2024-10-22 07:38:48
Score: 2.5
Natty:
Report link

if weaklock does not work please add weaklock_plus version at starting of dependencies as first line of dependencie and flutter clean flutter pub get and flutter build apk

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: swargam vinay sunny

79112895

Date: 2024-10-22 07:36:48
Score: 2
Natty:
Report link

That plugin.zip file creates a compressed folder of plugin. All you need is a compressed structure like this

before : plugin.zip -> plugin -> [all files]

after : plugin.zip -> [all files]

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

79112881

Date: 2024-10-22 07:32:46
Score: 2.5
Natty:
Report link

Thanks for reply. I manage to find a solution.

const number = mobileNumber.trim().replace(/[^\d]/g, "");
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: deniz demiieras

79112878

Date: 2024-10-22 07:30:46
Score: 1.5
Natty:
Report link

implementation ‘me.dm7.barcodescanner:zxing:1.9.13’ --> I updated with version 1.9.8 and then in build.gradle(project:...).

jcenter() --> mavenCentral()
updated with
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: s.tunahan üstüntepe

79112868

Date: 2024-10-22 07:26:45
Score: 2
Natty:
Report link

I fixed it by creating a new environment and reinstalling jupyter in the environment.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rafaella Chiarella

79112861

Date: 2024-10-22 07:25:45
Score: 0.5
Natty:
Report link

this code returns only the DOM element, not the jquery object

$(".btn")[0].toggleClass("pressed");

but if you want to toggle the class on the first specific button you should use this:

$($(".btn")[0]).toggleClass("pressed");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kvz

79112859

Date: 2024-10-22 07:25:45
Score: 3
Natty:
Report link

Just create the git repo using git plugins in your IDE and commit that chnages your build will be successful

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

79112851

Date: 2024-10-22 07:22:42
Score: 6 🚩
Natty: 4.5
Report link

can any one explain this i am not getting it . it is showing error for any value of connection timeout

Reasons:
  • RegEx Blacklisted phrase (2.5): can any one explain
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can any one
  • Low reputation (1):
Posted by: Manikanta Perneedi

79112847

Date: 2024-10-22 07:21:42
Score: 3.5
Natty:
Report link

Also if you have CCleaner - go to performance optimizer tab and wake up the programs that you're trying to open without success.

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

79112844

Date: 2024-10-22 07:20:41
Score: 2.5
Natty:
Report link

It was the same for me but actually it makes sense:

  1. You refer to a function time() of the module time to avoid name collisions.
  2. The main function of such modules is the name of the module otherwise you would have undescriptive names for your modules or functions, which leads to unreadable code.
  3. (I also started to do the same scheme in my own modules)

What would be a better alternative?

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

79112842

Date: 2024-10-22 07:19:41
Score: 2.5
Natty:
Report link

To solve the issue: I move the management folder one level up in my folder tree. In other words, in the same folder as settings.py

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

79112833

Date: 2024-10-22 07:17:41
Score: 1
Natty:
Report link

From how I understand your problem and testcontainers, the problem is setting this property on the container: .withReuse(true). With this property set to true, containers will be reused across JVM processes, meaning that the framework will not remove them after a test run finishes.

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

79112827

Date: 2024-10-22 07:16:40
Score: 5
Natty:
Report link

Kotlin has a specific extension for reading contents of InputStream.

val inputAsString = input.bufferedReader().use { it.readText() }

You can try reading about this at this stack overflow post: In Kotlin, how do I read the entire contents of an InputStream into a String?

Reasons:
  • Blacklisted phrase (1): how do I
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Epidermis

79112819

Date: 2024-10-22 07:12:39
Score: 3
Natty:
Report link

The link does not opens:

I am also try to dump VHDL design signals in VCD file in VCS.

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

79112817

Date: 2024-10-22 07:12:39
Score: 1.5
Natty:
Report link

Used a sed. Sed read and print is parallels.

echo " Return top 10 words from 2000gb of data with memory constraints"|sed -r 's/(([^ ]+ ){10}).*/\1/'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dmitry Lvov

79112797

Date: 2024-10-22 07:06:38
Score: 1.5
Natty:
Report link

<form (submit)="addTodo()">
  <input type="text" placeholder="Admin" [(ngModel)]="text" name="text">
</form>

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

79112794

Date: 2024-10-22 07:05:38
Score: 2
Natty:
Report link

I haved a similar problem, but only on version with proguard. In my case helped add exception to proguard: -keep class com.<YOUR.PATH.TO.FOLDER.** {*;}

YOUR.PATH.TO.FOLDER - in this folder I have object with names of firebase Performance custom tracks, and classes with Throwable for firebase Crashlytics.

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

79112791

Date: 2024-10-22 07:04:38
Score: 1
Natty:
Report link
var oldculture = CultureInfo.CurrentCulture; //to check what culture your c# app is using

Thread.CurrentThread.CurrentCulture = new CultureInfo("EN-US"); //to override the current culture of your c# app

Convert.ToDateTime uses the current datetime culture on your system but there is a twist..

if you are running visual studio in admin mode, it will utilize the datetime culture set on the admin user.

to change windows datetime:

Goto adjust datetime settings

here change the region setting

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

79112769

Date: 2024-10-22 06:59:36
Score: 1.5
Natty:
Report link

jitsi sdk/android/src/jni/jni_generator_helper.cc, line 27

It also worked for me in flutter when i tried using release build and get above error

and this resolved me

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

79112756

Date: 2024-10-22 06:54:34
Score: 1
Natty:
Report link

in client add:

 <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter</artifactId>
    </dependency>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Guaru

79112749

Date: 2024-10-22 06:53:34
Score: 3.5
Natty:
Report link

Enable Firebase Authentication First then it will start showing "Continue Anyway" button as Dynamic Links is no longer supported, and will stop working on August 25, 2025. Button

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Syeda Soghat Zehra Jaffri

79112747

Date: 2024-10-22 06:52:34
Score: 1
Natty:
Report link

Very easy, on the target SharePoint Online site (mySite2):

  1. Open Content Site
  2. Click on New > List > Create a list > From existing list
  3. Select an existing list
  4. Browser the source list from the source SharePoint site (mySite1)
  5. Click on Next, enter a new name and description

From an existing list Select existing list Create new list

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

79112737

Date: 2024-10-22 06:48:33
Score: 4
Natty:
Report link

You could try to use sync function in sharepoint. enter image description here

Please refer to following document

https://support.microsoft.com/en-us/office/sync-sharepoint-files-and-folders-87a96948-4dd7-43e4-aca1-53f3e18bea9b

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

79112725

Date: 2024-10-22 06:42:31
Score: 1.5
Natty:
Report link

2024 update:

in Material UI TextField, it works like this:

  <TextField
    slotProps={{
      htmlInput: {
        maxLength: 12,
        minLength: 12,
      },
    }}
  />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arshia.O

79112724

Date: 2024-10-22 06:41:31
Score: 2
Natty:
Report link

Many drone users, nowadays, use a drone signal booster, and this type of external amplifier, once used, has an actual signal that is much higher than the displayed output signal. Not sure if DJI will launch their own amplifier module in the future, and if this is a possibility, perhaps they will take this into account when adding the signal display feature. Off topic, right now there are only third party options for external signal amplifiers. For example,Better Signal™'s A3D drone signal booster.

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

79112721

Date: 2024-10-22 06:40:30
Score: 3
Natty:
Report link

You can't use middleware in static export as middleware requires a server

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

79112711

Date: 2024-10-22 06:35:27
Score: 9 🚩
Natty:
Report link

How do I mark this post solved and close it?

Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (1.5): solved and close it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Claes A

79112660

Date: 2024-10-22 06:22:24
Score: 2
Natty:
Report link

Changing a java.lang.Number type property to java.lang.Double worked for me.

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

79112654

Date: 2024-10-22 06:20:24
Score: 3
Natty:
Report link

I think that code works as expected because, regardless of the time each promise takes, promise.all returns the results in the same order as the input

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

79112653

Date: 2024-10-22 06:20:24
Score: 1
Natty:
Report link

Follow these steps

  1. composer self-update
  2. composer clear-cache
  3. rm -rf vendor/
  4. composer install
  5. composer outdated
  6. composer update
  7. php artisan package:discover
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ferid

79112649

Date: 2024-10-22 06:19:24
Score: 2
Natty:
Report link

Not the best solution, the only thing that I found excluding recompiling the source code(rmb in the desired line->edit class or function) with your comments and exporting the viewed executable as a project(File->Export to Project) is adding a bookmarks, you can add them with Ctrl+K+K hotkey and view/edit them using Ctrl+W

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

79112647

Date: 2024-10-22 06:19:23
Score: 4
Natty: 4
Report link

Working fine for me on more than 200 records uploading through webclient request.

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

79112643

Date: 2024-10-22 06:18:23
Score: 1.5
Natty:
Report link

The easiest way to complete authorization in Postman:

  1. Select Firebase Cloud Messaging API.
  2. Press the Authorize button.

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

79112637

Date: 2024-10-22 06:15:22
Score: 1.5
Natty:
Report link

To avoid exceeding your Google Analytics quota when fetching page views more than one URL's

Batch Requests: Combine URLs into a single request using an or condition, if feasible.

Limit Concurrency: Control the number of simultaneous requests to prevent quota overages.

Implement Caching: Store results temporarily to reduce the frequency of API calls.

Reduce Time Range: Query shorter periods.

Error Handling: Catch quota limit errors and implement a retry strategy.

I hope this will be helpful.

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

79112636

Date: 2024-10-22 06:14:22
Score: 1
Natty:
Report link

As commented by @Paul Maxwell, for your requirement, you can include a row number calculation such as given below,

row_number() over(partition by date, product, country order by total_sales) as rn then filter for where rn <= 10 .

Posting the answer as community wiki for the benefit of the community that might encounter this use case in the future. Feel free to edit this answer for additional information.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Paul
  • Low reputation (0.5):
Posted by: Dhiraj Singh

79112630

Date: 2024-10-22 06:11:19
Score: 6 🚩
Natty:
Report link

If someone is facing similar issue with newRelic, you can see this:

Zoned Guard issue NewRelic

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Low reputation (0.5):
Posted by: Peter Bk

79112626

Date: 2024-10-22 06:09:18
Score: 2.5
Natty:
Report link

this worked:

$middleware->validateCsrfTokens(except: ['success/*']);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Mehdi Yaghoubi

79112625

Date: 2024-10-22 06:09:18
Score: 1.5
Natty:
Report link

Finally I resolved this problem. It was missing configuration in file which was used to run tests. When I change configuration everything works fine.

Reasons:
  • Whitelisted phrase (-2): I resolved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andyy

79112623

Date: 2024-10-22 06:08:18
Score: 3
Natty:
Report link

i have problem with WebView - Neve - have just 2 X when i tray to expand Menu

where to insert this one : mWebView.getSettings().setDomStorageEnabled(true);

thanks best emil

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: emil herceg

79112612

Date: 2024-10-22 06:02:17
Score: 2
Natty:
Report link

If you have permission to connect to the db. Find the table flyway_schema_history, and delete the corresponding row.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Goffee Chen

79112610

Date: 2024-10-22 06:00:17
Score: 1.5
Natty:
Report link

FOR BRAVE BROWSER: In the browser settings (URL: brave://settings/content/javascript?search=permission)

Under Customized behaviors > Allowed to use JavaScript > click on the ADD button and input the following URL:

"drive.google.com"

Then reload the Google Colab web page. It worked for my Brave Browser.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: y0ung0d

79112603

Date: 2024-10-22 05:58:16
Score: 2.5
Natty:
Report link

Inside your project structure find a gradle->wrapper folder. Replace this any of the working project wrapper and then build gradle again. I tried this and it solved my issue.

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

79112597

Date: 2024-10-22 05:55:16
Score: 1.5
Natty:
Report link

May be I am late here. The best bet is download the gradle-x.x.x-bin.zip file manually and copy in to the directory - <user's home directory >/.gradle/wrapper/dists/gradle-x.x.x-bin/<some_random_chars>/

then run your gradlew commands then it will not try to download from internet

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: bimlesh prasad singh

79112594

Date: 2024-10-22 05:54:15
Score: 1.5
Natty:
Report link

I had trouble using chepner's answer while using variables. Instead I ended up using the following:

$ version="15.12"
$ major="${version%%.*}"
$ echo "$major"
15
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Johnny 5

79112578

Date: 2024-10-22 05:49:14
Score: 0.5
Natty:
Report link

When trying to import the class in Oracle Forms Builder, ensure you are using the fully qualified class name. For example, if your class is CatFactBean inside a package com.example, use:

import com.example.CatFactBean;

If there is no package declaration in your CatFactBean class, simply import it like this:

import CatFactBean;

Make sure the case of the class name matches exactly what is in the code.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Vimal

79112568

Date: 2024-10-22 05:46:13
Score: 3
Natty:
Report link

Create ERD and LRS from product table, supplier table, warehouse table, purchase transaction table,And warehouse stock table

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

79112554

Date: 2024-10-22 05:36:11
Score: 1
Natty:
Report link

The sequence would be the following upon appending <BOS> and <EOS> tags:

<BOS> <BOS> There is a monkey <EOS>.

Therefore, the first trigram would be

<BOS> <BOS> There

The last trigram would be

a monkey <EOS>

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

79112540

Date: 2024-10-22 05:30:10
Score: 3.5
Natty:
Report link

This shows up in the google question list and made me think gson was depricated...

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

79112539

Date: 2024-10-22 05:30:10
Score: 2
Natty:
Report link

As suggested in the error response, you need to add in an API key.

I'd suggest reading the documentation properly and using the requests library for API calls, the method you're using right now is performing a simple GET request without any parameters.

Could you also share the API documentation? Because I could not find any API documentation for the v3 API.

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

79112530

Date: 2024-10-22 05:25:09
Score: 0.5
Natty:
Report link
import ballerina/lang.regexp;

function extractContentDispositionParams(string contentDisposition) returns map<string> {
    map<string> params = {};
    string[] parts = regexp:split(re `;`, contentDisposition);

    foreach string part in parts {
        string[] keyValue = regexp:split(re `=`, part.trim());
        if (keyValue.length() == 2) {
            string key = keyValue[0].trim();
            string value = re `"`.replace(keyValue[1].trim(), "");
            params[key] = value;
        }
    }

    return params;
}

You can learn more about Ballerina regex in here.

https://ballerina.io/learn/by-example/regexp-type/ https://central.ballerina.io/ballerina/lang.regexp/latest

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

79112518

Date: 2024-10-22 05:21:08
Score: 4
Natty:
Report link

i got the solution for this is by using angular concept of reactive forms by using the reactive_forms

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

79112516

Date: 2024-10-22 05:19:07
Score: 0.5
Natty:
Report link

I see a couple of issues with the JavaScript part of the code. Let's walk through them and correct them:

  1. document.querySelectorAll(".numbers") returns a NodeList, but in your for loop, you're using numberOfbuttons directly, which will result in an error because you can't iterate over a NodeList like an integer. Instead, you need to get the length of the NodeList.
  2. The grid-area for the button[value="0"] is incorrect (grid-area: 5/2/5/2;). The grid-area property should be written as four values representing the start-row, start-column, end-row, and end-column, but the values you used are duplicated. If this was intended to position the button, it might need adjusting.
  3. You are statically setting the result to "1" for all buttons. You might want to dynamically set the result to the button's value when clicked.

let numberOfButtons = document.querySelectorAll(".numbers");

for (let i = 0; i < numberOfButtons.length; i++) { numberOfButtons[i].addEventListener("click", function() { document.querySelector(".result").innerHTML = this.innerHTML; // Update result with clicked button's value }); }

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

79112511

Date: 2024-10-22 05:12:06
Score: 0.5
Natty:
Report link

After some gnashing of teeth I got it to work by changing the mousemove event's code to:

    const { offsetX, offsetY } = e,
          gw = glass.offsetWidth / 2,
          gh = glass.offsetHeight / 2;

    glass.style.left = `${offsetX - gw}px`;
    glass.style.top  = `${offsetY - gh}px`;

    const x = -Math.floor((offsetX / width)  * (width * zoom)  - gw),
          y = -Math.floor((offsetY / height) * (height * zoom) - gh);
    
    glass.style.backgroundPosition = `${x}px ${y}px`;
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Andrew Foulds

79112507

Date: 2024-10-22 05:09:03
Score: 11 🚩
Natty: 5.5
Report link

I am testing the scopus api and got the same error as you. How did you fix this error?

Reasons:
  • Blacklisted phrase (1): How did you fix
  • RegEx Blacklisted phrase (3): did you fix this
  • RegEx Blacklisted phrase (1.5): fix this error?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tran Bao Linh K17 HL

79112505

Date: 2024-10-22 05:08:03
Score: 2.5
Natty:
Report link

raceback (most recent call last): File "./prog.py", line 9, in ModuleNotFoundError: No module named 'arithmetic'

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

79112498

Date: 2024-10-22 05:03:02
Score: 1
Natty:
Report link

I Was Facing the same issue and fixed it using the following command in the terminal in the project directory.

npm audit --fix

This resolved the issue.

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

79112493

Date: 2024-10-22 04:58:01
Score: 0.5
Natty:
Report link

Before you access the property of any array/object check whether it has value or not using isset or empty functions.

For an example

if(!empty($image_meta['width'])){ }

It will solve your problem!

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

79112492

Date: 2024-10-22 04:58:01
Score: 0.5
Natty:
Report link

a bit late but I noticed this today. It appears that Laravel uses a cache in sessions, so the SESSION_STORE is this cache store thing. If you go to cache config file you'll see these stores. So is to define an specific cache store of the cache config file. This is independent from the SESSION_DRIVER and SESSION_CONNECTION (database config file connection)

Reasons:
  • No code block (0.5):
Posted by: Francisco Daniel

79112489

Date: 2024-10-22 04:57:01
Score: 3
Natty:
Report link

ksp.incremental=false

working as per previous comment.

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

79112486

Date: 2024-10-22 04:56:01
Score: 3.5
Natty:
Report link

Definitely a Unity bug, even in Unity 6 still.

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

79112476

Date: 2024-10-22 04:52:58
Score: 6 🚩
Natty: 5
Report link

I'm getting the same issue with create_pandas_dataframe_agent:


from langchain_experimental.agents import create_pandas_dataframe_agent
from langchain.agents.agent_types import AgentType

agent = create_pandas_dataframe_agent(
    llm,
    df_chart,
    verbose=True,
    allow_dangerous_code=True,
    agent_type="zero-shot-react-description",
    include_df_in_prompt=True,
    number_of_head_rows=5
)


agent.invoke("what is the combined remaining balance of patient 3 and patient 39?")



> Entering new AgentExecutor chain...
Thought: I need to find the remaining balance of patient 3 and patient 38 in the dataframe.
Action: python_repl_ast
Action Input: `df.loc[df['Patient Name'] == 'Patient_3', 'Balance Remaining'].values[0]`
ObservSyntaxError: invalid syntax (<unknown>, line 1)The error message indicates that there is a syntax error in the code. Upon reviewing the code, I notice that the column name is actually 'Balance Remaining', not 'Balance'. I will correct the code.

output is causing the input line to have a newline then followed by the word "Observ". It seems like a problem with the embedded system prompt but how do you change this???

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): how do you
  • Blacklisted phrase (1): ???
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm getting the same issue
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: texasdave

79112472

Date: 2024-10-22 04:51:58
Score: 1.5
Natty:
Report link

00 05 73 a0 00 00 e0 69 95 d8 5a 13 86 dd 60 00 00 00 00 9b 06 40 26 07 53 00 00 60 2a bc 00 00 00 00 ba de c0 de 20 01 41 d0 00 02 42 33 00 00 00 00 00 00 00 04 96 74 00 50 bc ea 7d b8 00 c1 d7 03 80 18 00 e1 cf a0 00 00 01 01 08 0a 09 3e 69 b9 17 a1 7e d3 47 45 54 20 2f 20 48 54 54 50 2f 31 2e 31 0d 0a 41 75 74 68 6f 72 69 7a 61 74 69 6f 6e 3a 20 42 61 73 69 63 20 59 32 39 75 5a 6d 6b 36 5a 47 56 75 64 47 6c 68 62 41 3d 3d 0d 0a 55 73 65 72 2d 41 67 65 6e 74 3a 20 49 6e 73 61 6e 65 42 72 6f 77 73 65 72 0d 0a 48 6f 73 74 3a 20 77 77 77 2e 6d 79 69 70 76 36 2e 6f 72 67 0d 0a 41 63 63 65 70 74 3a 20 2a 2f 2a 0d 0a 0d 0a

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