79346925

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

Prompt Templates (this were probably the causing of the error) allowed me to execute and edit prompt templates.

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

79346913

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

I am getting this same error, running:

/**
 * @title Contract Title
 * @dev An ERC20 token implementation with permit functionality.
 * @custom:dev-run-script scripts/deploy_with_web3.ts
 */

I have got this error and solved it before, but I forget how. However, running this code I am still getting the error:

You have not set a script to run. Set it with @custom:dev-run-script NatSpec tag.

According to the docs, it looks like this should work. So, I'm not sure what I'm missing. Any suggestions would be appreciated. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Whitelisted phrase (-2): this should work
  • RegEx Blacklisted phrase (2): Any suggestions
  • RegEx Blacklisted phrase (1): I am still getting the error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BSH180_44

79346906

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

I had the same error and it was because I did not have iproxy installed, use the command

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

79346905

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

My code I just pass into the animator a bool for if the player is walking or not. And if the player is walking then I pass in the X and Y or its directions to the animator's floats X and Y which are used by the blend tree. I'm using two blend trees as you can see. One for idle and one for walking

Vector2 direction;
[SerializeField] float playerSpeed;
Animator animator;
private void Update()
{
    float horizontal = Input.GetAxis("Horizontal");
    float vertical = Input.GetAxis("Vertical");
    direction = new Vector2(horizontal, vertical).normalized * playerSpeed;

    animator.SetBool("Walking", direction != Vector2.zero);
    if (direction != Vector2.zero)
    {
        animator.SetFloat("X", horizontal);
        animator.SetFloat("Y", vertical);
    }

}

Base LEvel Blend Tree

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

79346904

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

private _isAuthenticated = new BehaviorSubject(false); _isAuthenticated$ = this._isAuthenticated.asObservable();

then you either subscribe on the _isAuthenticated$ or await it with const isAuth = await firstValueFrom(auth.isAuthenticated);

As it is atm you only check the initial value with the get property. you never subscribe for changes.

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

79346897

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

You can install previously the local web server, for example apache2, php and mariaDB

Regards.

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Santi Fri

79346895

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

The new package for .Net 8 is Microsoft.Azure.Functions.Worker.Extensions.ServiceBus, found here.

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

79346888

Date: 2025-01-10 20:05:00
Score: 3
Natty:
Report link

The problem turned out to be related to a proxy that was setup. Disabling the proxy allows calls to be made to services in LocalStack.

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

79346886

Date: 2025-01-10 20:05:00
Score: 2.5
Natty:
Report link

My 2 cents: I've used the suggested solution and I was successful. However, I had to use the "samaccountname" property instead, which was more adequate for my needs, since I wanted to use the regular LOGIN name in the authentication process.

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

79346882

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

https://vercel.com/guides/what-can-i-do-about-vercel-serverless-functions-timing-out

it might be because you are using a free tier qouting the docs

Maximum function durations

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

79346881

Date: 2025-01-10 20:02:59
Score: 5
Natty:
Report link

Facing the same issue with AISearch as the source. In playground, it's working, but can't deploy... I know it's in preview, but this vicious circle is a bit sad.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Facing the same issue
  • Low reputation (1):
Posted by: user29146796

79346875

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

man sprof will give you a full example, including example executable and shared library source code, compilation and linking, environment exports, and sprof commands for final analysis.

https://man7.org/linux/man-pages/man1/sprof.1.html

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

79346872

Date: 2025-01-10 19:59:58
Score: 3
Natty:
Report link

Six years later, here with the same issue and wracking my brain for two days to figure out!

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

79346869

Date: 2025-01-10 19:56:57
Score: 0.5
Natty:
Report link

I accidentally ran amplify push while I my amplify mock config was active and faced this same issue. I thought I was cooked and needed to rebuild my entire app from scratch...

Thankfully, running amplify pull reset the config to communicate with the real server instead of the mock server. Problem solved. 😁

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

79346860

Date: 2025-01-10 19:53:57
Score: 3
Natty:
Report link

This setting is (unhelpfully) found here: Tools > Options > Environment > Fonts and Colors > Text Editor > Peek Background Unfocused.

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

79346859

Date: 2025-01-10 19:52:55
Score: 9 🚩
Natty: 5.5
Report link

i have the same problem is there any progress

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Blacklisted phrase (1): is there any progress
  • Blacklisted phrase (1): is there any
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: süleyman Mercan

79346856

Date: 2025-01-10 19:50:55
Score: 1
Natty:
Report link

I had the same problem on Ubuntu 24. Rebooting did not help. I uninstalled/reinstalled git via APT and it started working again. Hope this helps.

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

79346855

Date: 2025-01-10 19:49:54
Score: 0.5
Natty:
Report link

Free proxy lists usually don't work.

You might consider buying some proxies. Enure that they don't use socks5 and aren't authentificated.

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

79346846

Date: 2025-01-10 19:46:53
Score: 2.5
Natty:
Report link

Check the language. There are 3 english (en, en_US, en_UK). Make sure you use the right one!

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

79346843

Date: 2025-01-10 19:44:53
Score: 0.5
Natty:
Report link
It worked for me:
Linux:
1)
pwd (print working directory)
/tmp/projectname 
contents:
/tmp/projectname/jars/....
/tmp/projectname/test/Simple.class

2)
java -classpath ".:/tmp/projectname/jars/*" test.Simple
Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anil

79346841

Date: 2025-01-10 19:43:53
Score: 1.5
Natty:
Report link

My solution is this code (please tell me if you think to a better code) :

// returns the path that will not erase any existing file, with added number in filename if necessary
// argument : the initial path the user would like to save the file
QString incrementFilenameIfExists(const QString &path)
{
    QFileInfo finfo(path);
    if(!finfo.exists())
        return path;

    auto filename = finfo.fileName();
    auto ext = finfo.suffix();
    auto name = filename.chopped(ext.size()+1);

    auto lastDigits = name.last(4);

    if(lastDigits.size() == 4 && lastDigits[0].isDigit() && lastDigits[1].isDigit() && lastDigits[2].isDigit() && lastDigits[3].isDigit() && lastDigits != "9999")
        name = name.chopped(4)+(QString::number(lastDigits.toInt()+1).rightJustified(4,'0'));
    else
        name.append("-0000");

    auto newPath = (path.chopped(filename.size()))+name+"."+ext;
    return incrementFilenameIfExists(newPath);
}
Reasons:
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (2.5): please tell me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Amir Hammoutene

79346836

Date: 2025-01-10 19:40:52
Score: 0.5
Natty:
Report link

I used this google link: https://lh3.googleusercontent.com/d/${id}=w1000.

It worked perfectly for me.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alessandro Rios

79346834

Date: 2025-01-10 19:39:52
Score: 1
Natty:
Report link

var client = new AmazonCognitoIdentityProviderClient("MYKEY", "MYSECRET", RegionEndpoint.USEast1);

var request = new AdminGetUserRequest();
request.Username = "USERNAME";
request.UserPoolId = "POOLID";

var user = client.AdminGetUserAsync(request).Result;                      

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

79346833

Date: 2025-01-10 19:38:51
Score: 2
Natty:
Report link

You already have done group by year and product, if you need to select each year instead of only 2015 you can delete where year = "2015" and it will work

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

79346828

Date: 2025-01-10 19:37:51
Score: 3.5
Natty:
Report link

Probably, you just don't have git installed on the minion.

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

79346824

Date: 2025-01-10 19:36:51
Score: 2.5
Natty:
Report link

In configure.ac replace [OpenSSL_add_all_ciphers] with [OPENSSL_init_crypto] on line 332, finally... AC_CHECK_LIB([crypto], [OPENSSL_init_crypto], , [have_libcrypto="0"])

Then run ./autogen.sh

Continue make and make install.

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Santi Fri

79346811

Date: 2025-01-10 19:28:49
Score: 1
Natty:
Report link

Try

Image.asset(
  food.imagePath,
  height: 120,
  width: 120,
  fit: BoxFit.cover, 
),
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: rstrelba

79346810

Date: 2025-01-10 19:28:49
Score: 0.5
Natty:
Report link

it's an interpolation error. when calling kickoff(), you are giving 'topic' as the only variable name to interpolate but have no reference to it (i.e. {topic}), but in week_0_ramp_up_task you are interpolating url (item a. you have {url}) but aren't passing it as an input in kickoff().

editing the code as follows resolved any errors for me:

from typing import List

from crewai import Agent, Task, LLM, Crew
from crewai.tools import tool

inputs={
        'topic': 'Internal experts in mining technology',
        'url': 'https://privatecapital.mckinsey.digital/survey-templates'
}

llm = LLM(
    model="gpt-4o",
    base_url="https://openai.prod.ai-gateway.quantumblack.com/0b0e19f0-3019-4d9e-bc36-1bd53ed23dc2/v1",
    api_key="YOUR_API_KEY_HERE"
)

ddagent = Agent(role="Assistant helping in executing due diligence steps",
                goal="""To help an user performing due diligence to achieve a specified task or multiple tasks. "
                      Sometimes multiple tasks need to be performed. The tasks need not be in a sequence""",
                backstory='You are aware about all the detail tasks of due diligence. You have access to the necessary content and best practices',
                verbose=True,
                memory=True,
                llm=llm
                )


@tool("get_experts")
def get_experts(topic: str) -> List[str]:
    """Tool returns a list of expert names."""
    # Tool logic here
    expert_list = []
    expert_list.append("Souradipta Roy")
    expert_list.append("Dushyant Agarwal")
    return expert_list


@tool("get_documents")
def get_documents(topic: str) -> List[str]:
    """Tool returns a list of document names."""

    # Tool logic here
    documents_list = []
    documents_list.append("document 1")
    documents_list.append("document 2")
    return documents_list


research_task = Task(
    description="""
        Respond withe appropriate output mentioned in the expected outputs when the user wants
        to create a survey or wants to know anything about survey creation or survey analysis.
    """,
    expected_output="""
        Respond with the following:
        Great, to create surveys and drive analytics, there are currently two resources to utilize:
    a.    Survey Templates - Discover our collection of survey templates. The link for that tool is **https://privatecapital.mckinsey.digital/survey-templates**
    b.    Survey Navigator - Streamline survey creation, analysis, and reporting for client services team. The link for that tool is ** https://surveynavigator.intellisurvey.com/rel-9/admin/#/surveys**
    """,
    agent=ddagent,
    verbose=True
)

internal_experts_task = Task(
    description=f"""
        Respond with an appropriate sentence output listing the firm experts based on the {inputs["topic"]} mentioned.
    """,
    expected_output=f"""
        Respond with an appropriate sentence output listing the firm experts based on the {inputs["topic"]} mentioned.
        The firm experts are retrieved from the tool get_experts.""",
    agent=ddagent,
    tools=[get_experts],
    verbose=True
)

week_0_ramp_up_task = Task(
    description="""
        You are responsible for helping the user with Week 0 ramp up. There will be 6 sub-steps in this. If user chooses any of below sub-steps except document recommendations then provide details on respective option chosen.
    """,
    expected_output=f"""
        If user chooses any of below sub-steps except document recommendations then provide details on respective option chosen.

    a.    Get transcript for pre-reads or generate an AI Report - “For transcript recommendations, please go to the Interview Insights (Transcript Library) solution to read up on transcripts relevant to the DD topic.” Here is the link for Interview Insights {inputs["url"]}. The Interview Insights platform includes AI-driven insights of thousands of searchable transcripts from prior ENS projects to generate AI Reports.
    b.    Get document recommendations - When this sub-step is chosen by user, do get_documents function calling to provide document recommendations based on the topic mentioned.
    c.    Look at past Due Diligences - “For past Due Diligence research, please go to the DD Credentials tools.” Here is the link for DD Credentials: **https://privatecapital.mckinsey.digital/dd-credentials** The DD Credentials tool can help you uncover past targets, outsmart competitors with our expertise, and connect with PE-qualified experts in seconds.
    d.    Review Past Interview Guides - “A comprehensive collection of modularized question banks for use in creating customer interview questionnaires.” Here is the link for the Interview Guides: **https://privatecapital.mckinsey.digital/interview-guide-templates**
    e.    Review Module Libraries - “Each Market Model folder includes a ppt overview, data sources, and an Excel model.” Here is the link for the Module Libraries: ** https://privatecapital.mckinsey.digital/market-models**
    f.    Private Capital Platform - “Resources and central hub for Private Capital and due diligence engagements.” Here is the link for the Private Capital Platform: **https://privatecapital.mckinsey.digital/**""",
    agent=ddagent,
    tools=[get_documents],
    verbose=True
)


crew = Crew(
    agents=[ddagent],
    tasks=[research_task, internal_experts_task, week_0_ramp_up_task],
    verbose=True
)
result = crew.kickoff(inputs)
print(result)

Also, FWIW, you should revoke that api key and avoid exposing your keys in the future.

Reasons:
  • Blacklisted phrase (1): Here is the link
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: joshua k

79346797

Date: 2025-01-10 19:23:48
Score: 2
Natty:
Report link

This turned out to be a simple miss...

The last parameter to the `SQLBindParameter() needs to be initialized with 0.

Thx everybody and sorry for the time waste.

Reasons:
  • Blacklisted phrase (1): Thx
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Igor

79346796

Date: 2025-01-10 19:23:48
Score: 0.5
Natty:
Report link

You may want to try hetcor from John Fox's polycor package. Revelle (the creator and maintainer of psych) notes that convergence problems can happen with mixedCor. I have had better luck with hetcor, and it detects data types automatically, BUT you should make sure that your binary and ordered categorical variables are converted to factors (ordered factors for the ordinal categorical variables) with the correct ordering. Otherwise, neither function works.

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

79346793

Date: 2025-01-10 19:22:47
Score: 1.5
Natty:
Report link

The tutorial you are following uses a package called @angular/localize, which is a part of Angular's native i18n system for translating applications.

When you internationalize with @angular/localize, you have to build a separate application for each language.

I recommend using ngx-translate instead, as it allows you to dynamically load translations at runtime without the need to compile your application with a specific locale.

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

79346792

Date: 2025-01-10 19:22:47
Score: 3.5
Natty:
Report link

i know im few years late. ive had an idea from Philia Fan comment of using the :scriptnames to search for my config files location, then problem from user2138149, i create an empty ~/.vimrc files and add "source /etc/vimrc", based on my vimrc location, then only add my custom configuration at the bottom. it works.

do you guys know if running it like this would have a negative effects?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): user2138149
  • Low reputation (1):
Posted by: Hexorz NH

79346786

Date: 2025-01-10 19:14:46
Score: 3.5
Natty:
Report link

There is a requires_file param that can be used in place of requires. See https://rules-python.readthedocs.io/en/0.32.1/api/packaging.html#py-wheel-rule-requires-file

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

79346774

Date: 2025-01-10 19:06:44
Score: 0.5
Natty:
Report link

It won't. At least with Nextjs App router because it is able to interleave client and server components:

When interleaving Client and Server Components, it may be helpful to visualize your UI as a tree of components. Starting with the root layout, which is a Server Component, you can then render certain subtrees of components on the client by adding the "use client" directive.

Within those client subtrees, you can still nest Server Components or call Server Actions.

From the Posthog docs:

Does wrapping my app in the PostHog provider de-opt it to client-side rendering?

No. Even though the PostHog provider is a client component, since we pass the children prop to it, any component inside the children tree can still be a server component. Next.js creates a boundary between server-run and client-run code.

The use client reference says that it "defines the boundary between server and client code on the module dependency tree, not the render tree." It also says that "During render, the framework will server-render the root component and continue through the render tree, opting-out of evaluating any code imported from client-marked code."

Pages router components are client components by default.

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

79346762

Date: 2025-01-10 19:01:42
Score: 1.5
Natty:
Report link

In my opinion the reason of the observable difference in performance may be the fact that methods/functions containting try/catch block will not be inlined, at least for sure not by MSVC compiler (see https://learn.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-4-c4714?view=msvc-170 )

Before the change void foo(int a) couldn't be inlined. After the change it may have been inlined.

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

79346758

Date: 2025-01-10 19:00:42
Score: 1.5
Natty:
Report link

don't use limit

// Trade Logic
if (longCondition)
    strategy.entry("Long", strategy.long)

test

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

79346755

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

Okay, it was a bug in Android. Updated to the latest one - Android Studio Ladybug Feature Drop | 2024.2.2 and it works fine for my popup previews.

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

79346754

Date: 2025-01-10 18:59:42
Score: 3.5
Natty:
Report link

Consider to use migration plugin Magic Export & Import with full support of Polylang.

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

79346742

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

I was getting this error on a unit test project. It was odd because this was the result of a refactor exercise, everything was working before

There were 2 things I did, and I can not say exactly which solved the problem, but I just spent a 1/2 day on this so I want to maybe save someone else time.

I introduced a subclass in a new project that was .NET Framework 4.8.1 Other projets depending on this new project had lower .Net versions. I brought them all up to 4.8.1 (I dont think that exercise caused or resolved the problem. )

I also had a unit test project to test the new class. Somehow (I assume I did it) the project reference to Microsoft.CSharp had been removed.

Chatgpt suggested ensuring this reference. I added a reference in the solution explorer.

That solved the problem for me.

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

79346740

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

This code has solved my problem.

Android.Webkit.WebStorage.Instance.DeleteAllData();
Android.Webkit.CookieManager.Instance.RemoveAllCookies(null);
Android.Webkit.CookieManager.Instance.Flush();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Filipe Piletti Plucenio

79346738

Date: 2025-01-10 18:53:40
Score: 2.5
Natty:
Report link

I faced this error message in mac when the file I was reading was open. When I closed the file and ran the code again, the issue was resolved.

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

79346737

Date: 2025-01-10 18:53:40
Score: 4
Natty:
Report link

In case anyone having the same issue. I've found a fix from this Forum:

Basically you need to clear the code by using the WCH LinkUtility app and WCH LinkE. Make sure to set the WCH LinkE link mode to WCH-LinkRV then clear All Code Flash by Power Off. For those with the black Ch32V003 F4P7 board if your green LED is blinking it wont upload any code due to the led is connected to the upload pin enter image description here

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Jeffrey Chua

79346724

Date: 2025-01-10 18:48:38
Score: 2.5
Natty:
Report link

You Wrote UIColor.whiteColor(), try switching it to UIColor.blackColor()

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

79346720

Date: 2025-01-10 18:46:38
Score: 0.5
Natty:
Report link

Looks like I fixed it by selecting Arduino IDE - Sketch - Optimize for debugging.

I checked it on 2 different nucleos stm32.

Unfortunately I can't see variable's value in registers but it's shown in variables section.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pasha4ur

79346711

Date: 2025-01-10 18:43:37
Score: 1
Natty:
Report link

for debug, plot the line 10% to upTrend

upTrendLine = direction < 0 ? supertrend : na
upTrend10 = upTrendLine * 1.1
plot(upTrend10)

Now create the alert

croosUpTrend10 = ta.crossunder(low, upTrend10)
plotshape(croosUpTrend10)
alertcondition(croosUpTrend10, "croosUpTrend10" )

test

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

79346709

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

alist = [] result = ["".join(alist[:i]) for i in range(1, len(alist)+1]

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

79346705

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

What about a log scale on Y ?

plt.yscale('log')

plot

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
Posted by: rehaqds

79346685

Date: 2025-01-10 18:31:33
Score: 10 🚩
Natty: 5.5
Report link

I have the same issue. Any updates?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (0.5): Any updates
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: chantal boado

79346680

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

Try: xdotool key --clearmodifiers shift && xdotool type 'date;'

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

79346679

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

There are 2 options now, Places API and the Places API (New) check both.

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

79346672

Date: 2025-01-10 18:25:32
Score: 0.5
Natty:
Report link

Essa resposta salvou meu dia! 11

I fixed the problem. Bootstrap modals have a property tabindex="-1", which made the CKEDITOR plugins inputs to loose their focus. Just delete it!

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rafael Furtado

79346671

Date: 2025-01-10 18:24:31
Score: 0.5
Natty:
Report link

I've come across similar situations in the past, and I would usually either do one of these:

  1. Put the entire contents of the .npmrc file into a GitHub actions secret, then print it to a new .npmrc file in your action.
  2. Store the token and other info as a secret, then create a new .npmrc file and inject the secrets into the file.

If you were to go the second route, you would probably have something like this in your GitHub actions workflow:

# ...

jobs:
  publish-npm:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Publish
        run: |
          # These use the variables defined in step's env
          echo "registry=${NPM_REGISTRY}" > .npmrc
          echo "registry/:_authToken=${NPM_TOKEN}" >> .npmrc

          npm publish
        env:  # Secrets from GitHub are injected below
          NPM_REGISTRY: ${{ secrets.NPM_REGISTRY }} 
          NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

In your GitHub repository, define NPM_REGISTRY and NPM_TOKEN as secrets (docs) by going to Settings > Security > Actions > Secrets.

Resources

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ikehunter5

79346667

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

i appreciate those who tried to help , apparently through small debuging steps i noticed that the window.open was not being called and when changed to window.location with a small time delay the chat worked

window.location = "test2.php?units="+units+"&&price="+price+"&down="+down+"&&space="+space+"";

apologies if any part of the question was not clear and thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Hossa The Coder

79346666

Date: 2025-01-10 18:23:31
Score: 3
Natty:
Report link

How we can compare below in ORACLE.

values '["b", "a"]' and '["a", "b"]' stored in VARCHAR datatype

'["b", "a"]' = '["a","b"]' ==> TRUE

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): How we can
  • Low reputation (1):
Posted by: Dave

79346663

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

Thank you everyone, all were relevant and helpful! The AddOnDepot's response is spot on. For my incredibly unsavvy code, I ended up using something like:

for (const [dataKey, peopleValues] of Object.entries(jsonParsed.data)) {
  Logger.log(`${dataKey}`);
  Logger.log(peopleValues.name);
  Logger.log(peopleValues.title);
  /* And was able to apply the same concept to access deeper nested values!
  for( const [deeperNestedKeys, deeperData] of Object.entries(peopleValues))
  {
      Logger.log(deeperData.otherValue);
  }
  */
}

My first tip off was actually from an old stackoverflow post that I didn't fully understand at first, so credit also to: https://stackoverflow.com/a/62735012/645379

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

79346651

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

The solution to go offline before starting a download didn't work for me, but I've found a better one.

Enable the Auto-open DevTools for popups option in DevTools preferences. It makes Chrome open the DevTools window for a new window/tab of the download URL just before the Save dialog appears.

DevTools Preferences

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

79346645

Date: 2025-01-10 18:13:29
Score: 1
Natty:
Report link

File Permissions Issue:

1: In the Docker build context, the files you copy into the container retain their permissions unless explicitly changed.

2: If the configure file does not have execute (+x) permissions locally, it will not be executable in the container.

Updated Dockerfile:

FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base

RUN apt-get update RUN apt-get install -y libmotif-dev build-essential

COPY . /usr/src/myapp

WORKDIR /usr/src/myapp/oracle-outside-in-content-access-8.5.7.0.0-linux-x86-64/sdk/samplecode/unix/

RUN chmod +x ./configure

RUN ls -l

RUN make

WORKDIR /app

RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R

appuser /app

USER appuser

COPY . .

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

79346640

Date: 2025-01-10 18:11:29
Score: 3
Natty:
Report link

decode/swscale directly into the buffer

That would be so fantastic, but how? Like:

(AVCodecContext)  int (*get_buffer2)(struct AVCodecContext *s, AVFrame *frame, int flags);

?

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

79346636

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

In my case i renamed my file from .yaml to .yml and it started working

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

79346629

Date: 2025-01-10 18:08:28
Score: 3
Natty:
Report link

Github issue: https://github.com/psycopg/psycopg/issues/962

PR/resolution: https://github.com/psycopg/psycopg/pull/975

Thank you Daniele Varrazzo!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: codeech

79346623

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

my English is not that good,

With some code language (jython or SQL for example) in a step of a procedure I generate a value, for that value, is it possible to assign it to a value of the option of that step and that in a later step of a package ( a variable for example), Can I obtain the value generated in the previos step of the procedure? Or if you have any documentation on how it could be done in almost affirmative

With jython I managed to pass, but I encapsulated it with the <@ Test = "testvalue" @> and then assigned it to an ODI variable with <@=Test@> and used it.,

I don't want to encapsulate the following code Jython

# Name of the library you want to check
library_name = "smtplib" # Change this according to your need

# Output variable for the result
output_message = ""

try:
# We try to import the library
exec("import " + library_name)
output_message = "Library '" + library_name + "' exists in the environment."
except ImportError:
# If it doesn't exist, we catch the error
output_message = "Library '" + library_name + "' does NOT exist in the environment."

If I encapsulate it I don't get the result correctly because it's jython and I call a library of it

I don't know how to get output_message and then be able to use the value in some other step of the package.

I found ideas like

Assign the value to the ODI variable

odiRef.setVariable("LIBRARY_CHECK_RESULT", output_message)

But I can't get them to work, it shows errors that this way of getting the value is not enabled, it's not available for ODI12c

I don't have the right way to do it anyway

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Elmer Alavid

79346619

Date: 2025-01-10 18:03:26
Score: 1.5
Natty:
Report link

You have to add username and password on the rtsp_url

const std::string rtsp_url = "rtsp://<username>:<password>@192.168.2.100:5010/video.sdp";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ítalo Lins

79346617

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

Having this same issue as well. It seems that the connections in Foundry are not connecting to blobs properly. I'm seeing the error DatastoreNotFound in the connections menu when trying to update existing connections to blob (where the flows exist). And when trying to create a new connection, nothing is even showing up under "Data". Think this is a Microsoft issue...

enter image description here

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

79346600

Date: 2025-01-10 17:53:23
Score: 5.5
Natty:
Report link

you can read this solution Android Studio Emulator Running but Not Visible (Out of View)

specially enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: bugaboo

79346588

Date: 2025-01-10 17:50:22
Score: 1
Natty:
Report link

I could happens when the pathname of the resource starts with a double slashes

like https://example.org//resource/to/get

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

79346572

Date: 2025-01-10 17:46:21
Score: 3.5
Natty:
Report link

The package is not very well documented unfortunately. You can find a lot of answers in the examples though. This shows how to set up an early stopping function:

https://github.com/robertfeldt/BlackBoxOptim.jl/blob/master/examples/early_stopping_in_callback.jl

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

79346569

Date: 2025-01-10 17:45:21
Score: 0.5
Natty:
Report link

If you're using Git Bash, use conda init bash.

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

79346568

Date: 2025-01-10 17:44:21
Score: 1
Natty:
Report link

This is what worked for me (using yarn)

yarn && export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && nvm use
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Larissa

79346560

Date: 2025-01-10 17:41:18
Score: 6 🚩
Natty: 4.5
Report link

I know this topic is very old but i am encoutering the same problem here.

I tried your solution and it works on a .doc file. But failed on an OLE that embedded an .xls file. I Can provide the referencer OLE file as example.

@Hardy, you said that it works for you, was it on excel ? Did you use Hardy code as this or did you had to make some adaptation ?

I would be interesting to speak with one of you if you are still there (such a specific subject...)

Kinds regards, Damien

Reasons:
  • Blacklisted phrase (1): regards
  • Contains signature (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Hardy
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Damien

79346559

Date: 2025-01-10 17:40:18
Score: 2.5
Natty:
Report link

You'll get this error if you're using an emulator. Try to use a physical device.

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

79346556

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

What instance are you using? The hard limit is indeed 25 users, but you can see in this doc that "The default maximum number of members is equal to the memory of the instance for that environment divided by 60 MB, with results rounded down." If you are using a nano instance, it only has 0.5 GiB and, therefore, a limit of 8 users.

To increase the maximum number of members, you can upgrade the cloud9's memory by changing it's instance type. You can follow these steps to achieve that:

  1. Stop the instance on the EC2 console.
  2. Change it's type to one with more than 0.5 GiB of memory.

*If you choose one with 1 GiB you will have up to 17 members.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What in
  • Low reputation (1):
Posted by: Daniel Chiyo

79346545

Date: 2025-01-10 17:36:17
Score: 0.5
Natty:
Report link

To generate thumbnail from rtmp video feed use ffmpeg tool. I have used this on Android app, NodeJS server and it never disappoints. And not just thumbnail. And it work like a charm.

ffmpeg -i <rtmp_feed_url> -frames:v 1 <destination_filepath>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sole007

79346544

Date: 2025-01-10 17:36:17
Score: 3
Natty:
Report link

I did a little digging and you should try Reinstalling Python or there might be a Path problem.

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

79346542

Date: 2025-01-10 17:36:17
Score: 1.5
Natty:
Report link

You need to pass a raw json string to the service w/ the byte[] in the form of a int32 array. For example if your service takes an object w/ a parameter FileBytes:Byte[] then you'd provide the json string {"FileBytes": [5,12,13,200,...,10]}. This should be the format that a restful service needs to properly convert to the byte[] of the application

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

79346537

Date: 2025-01-10 17:35:17
Score: 3.5
Natty:
Report link

same issue here i dont know from where the padding is comming , some screens have the issues somes works perfectly

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Heithem Kacem

79346529

Date: 2025-01-10 17:31:15
Score: 0.5
Natty:
Report link

I am able to get the current row by doing this

for index, row in enumerate(sheet.iter_rows(min_row=2, max_row=2613, values_only=False)):
    print(row[0].row)

Note that values_only=False for this to work

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

79346528

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

To include the missing segments in the fitted ellipse, try these approaches:

  1. Weighted Fitting: Assign higher weights to the points in the missing segments using scipy.optimize.least_squares for weighted ellipse fitting.

  2. Add Missing Points: Manually add synthetic points along the missing segments and refit the ellipse using cv2.fitEllipse.

  3. Custom Optimization: Use scipy.optimize.minimize to define a custom loss function that prioritizes including the missing parts in the fit.

These methods give more control than RANSAC or cv2.fitEllipse.

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

79346522

Date: 2025-01-10 17:28:15
Score: 0.5
Natty:
Report link

Sorry for the necro-post but I've gotten the same error today in a different context, so for posterity:

https://github.com/r-lib/progress/issues/137

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

79346520

Date: 2025-01-10 17:28:15
Score: 2
Natty:
Report link

Without logs, my best guess would be that you're running into some of the restrictions on background activity launching.

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

79346513

Date: 2025-01-10 17:26:14
Score: 2
Natty:
Report link

It sounds like you're asking about modifying Banno's login process itself. There are product configurations available for such a thing (see your Jack Henry rep for details on the options). However, the Banno Digital Toolkit does not offer APIs to accomplish what you're looking to accomplish.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jaime Lopez Jr.

79346510

Date: 2025-01-10 17:25:14
Score: 1
Natty:
Report link

You can look in the Arm Software Ecosystem Dashboard to see if the Python package is supported. It does not list all Python packages, but contains context for bigger ones such as PyTorch, Numpy, PyInstaller, etc.

The dashboard contains a list of what packages in general work on Arm Linux servers (aarch64), beyond Python packages, if you find that useful.

The contents are community-driven, so if you don't see a package listed that does support Arm, there is an option to add it via a GitHub PR in the main repository as well.

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

79346497

Date: 2025-01-10 17:22:13
Score: 3
Natty:
Report link

Ensure your command is not missing the parameter "-KeyEncryptionKeyVaultId $keyVaultResourceId$"

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

79346494

Date: 2025-01-10 17:20:12
Score: 4.5
Natty: 4.5
Report link

Good morning colleagues!

There is a control called MS ORACLE Source and MS ORACLE Destination.

I leave you the download link:

https://www.microsoft.com/en-us/download/details.aspx?id=105811

For them to implement it in their projects, it is faster.

Greetings from Monterrey Mexico.

Jorge Leal.

Reasons:
  • Blacklisted phrase (1): Good morning
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jorge Leal

79346490

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

To view the script in Crystal report without logging in the DB

  1. In Crystal Report for to Database Expert
  2. right click the command in the database under Selected Tables (right side) and select view/edit command
  3. And will open the OLE DB or the datasource information.
  4. Make the User ID and Password blank
  5. Make the Integrated Security value as checked.
  6. Click Finished
Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29145046

79346488

Date: 2025-01-10 17:17:10
Score: 2
Natty:
Report link

I believe it is best if you ask this question at the OpenDaylight Discuss mailing list. You may find it here:

https://lf-opendaylight.atlassian.net/wiki/spaces/ODL/overview

Alternatively, you may try to send an email to: [email protected]

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

79346475

Date: 2025-01-10 17:13:09
Score: 2
Natty:
Report link

Check if Ctrl+Shift+Space works. If yes it probably means your operating system or some other app use Ctrl+Space shortcut. To fix it find who use it and change it. In my case it was PowerToys on Windows.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tomek Michałowski

79346468

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

Unfortunately, for my testing, I need to change the default host to our azure front door host. When I do that, I get the cached version of my policy for a while. This is extremely annoying. While not a solution to the problem, I add a 'version' claim to my policy so I can tell when the new one is finally updated.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jerry Goldin

79346463

Date: 2025-01-10 17:08:08
Score: 0.5
Natty:
Report link

After research and trial and error, I discovered that I simply needed to remove Modifier.focusable() from the Box modifier.

Updated code... SettingsScreen.kt

@Composable
fun SettingsScreen(onBackClick: () -> Unit) {
    val focusRequester = remember { FocusRequester() }
    BackHandler {
        Log.e("TAG", "SettingsScreen: BackHandler Called Close")
        onBackClick()
    }
    Box(
        modifier = Modifier
            .fillMaxSize()
            .background(color = SettingsBG)
            .focusRequester(focusRequester = focusRequester)
    ) {
        Column {
            MPButton(text = "Text 1") {
                Log.e("TAG", "SettingsScreen: text 1 click")
            }
            MPButton(text = "Text 2") {
                Log.e("TAG", "SettingsScreen: text 2 click")
            }
        }
    }

    LaunchedEffect(Unit) {
        focusRequester.requestFocus()
    }
}

Let me know if you need any help with Jetpack Compose. We need to build a large community for Jetpack Compose.

Reasons:
  • Blacklisted phrase (1): any help
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Vishal Bhimporwala

79346456

Date: 2025-01-10 17:05:06
Score: 4.5
Natty:
Report link

Can you check this out? Someone asked a related question in Google AI Developer Forum

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: gcamadi

79346454

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

This is an SEO problem because your entire website leads to a page that doesn't exist. I lost a lot of rankings because of this error

I used the OMGF plugin to fix this problem

<link rel='dns-prefetch' href='//fonts.googleapis.com' />

You can check at my site: https://tuannguyenmobile.com

Plugin not installed

Plugin installed

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dũng Tran

79346446

Date: 2025-01-10 17:04:06
Score: 1.5
Natty:
Report link

Here's what I came up with, it seems to work:

schema.xml

<schema name="example-data-driven-schema" version="1.6">
  <fields>
        <field name="_version_" type="long" indexed="true" stored="true" required="true"/> 
        <field name="_root_" type="string" indexed="true" />
        <field name="id" type="string" indexed="true" stored="true" required="true"/>
        <field name="title" type="text_general" indexed="true" stored="true"/>
        <field name="author" type="text_general" indexed="true" stored="true"/>
        <field name="comment" type="text_general" indexed="true" stored="true"/>
        <field name="commenter" type="text_general" indexed="true" stored="true"/>
        <field name="contributor_name" type="text_general" indexed="true" stored="true"/>
        <field name="contributor_role" type="text_general" indexed="true" stored="true"/>
        <field name="_nest_path_" type="_nest_path_" />
        <field name="_nest_parent_" type="string"/>
        <dynamicField name="*" type="ignored"/>
  </fields>  
  <uniqueKey>id</uniqueKey>
  <fieldType name="ignored" class="solr.StrField" indexed="false" stored="false" multiValued="true"/>
  <fieldType name="_nest_path_" class="solr.NestPathField" />
  <fieldType name="booleans" class="solr.BoolField" sortMissingLast="true" multiValued="true"/>
  <fieldType name="long" class="solr.TrieLongField" positionIncrementGap="0" docValues="true" precisionStep="0"/>
  <fieldType name="string" class="solr.StrField" sortMissingLast="true" docValues="true"/>
  <fieldType name="tdates" class="solr.TrieDateField" positionIncrementGap="0" docValues="true" multiValued="true" precisionStep="6"/>
  <fieldType name="tdoubles" class="solr.TrieDoubleField" positionIncrementGap="0" docValues="true" multiValued="true" precisionStep="8"/>
  <fieldType name="text_general" class="solr.TextField" positionIncrementGap="100"/>
  <fieldType name="tlongs" class="solr.TrieLongField" positionIncrementGap="0" docValues="true" multiValued="true" precisionStep="8"/>
</schema>

Insert these documents:

[
  {
    "id": "post101",
    "title": "How to Optimize Solr Queries",
    "author": "Mike Johnson",
    "comments": [
      {
        "id": "comment101",
        "comment": "This article helped me a lot!",
        "commenter": "Sophie"
      }],
      "contributors": [{
        "id": "contributor101",
        "contributor_name": "Karen",
        "contributor_role": "Reviewer"
      }
    ]
  },
  {
    "id": "post102",
    "title": "Advanced Solr Schema Design",
    "author": "Sarah Brown",
    "comments": [
      {
        "id": "comment102",
        "comment": "Great schema design tips!",
        "commenter": "James"
      }
    ]
  }
]

The select that I did is correct in returning everything "flattened" - the problem was that I needed to add fl=*,[child] to the request. After doing that, my results are:

.
.
.
docs": [

          {
                "id": "comment101",
                "comment": "This article helped me a lot!",
                "commenter": "Sophie",
                "_nest_parent_": "post101",
                "_root_": "post101",
                "_version_": 1820881500429615000
          },
          {
                "id": "contributor101",
                "contributor_name": "Karen",
                "contributor_role": "Reviewer",
                "_nest_parent_": "post101",
                "_root_": "post101",
                "_version_": 1820881500429615000
          },
          {
                "id": "post101",
                "title": "How to Optimize Solr Queries",
                "author": "Mike Johnson",
                "_version_": 1820881500429615000,
                "_root_": "post101",
                "comments": [
                      {
                            "id": "comment101",
                            "comment": "This article helped me a lot!",
                            "commenter": "Sophie",
                            "_nest_parent_": "post101",
                            "_root_": "post101",
                            "_version_": 1820881500429615000
                      }
                ],
                "contributors": [
                      {
                            "id": "contributor101",
                            "contributor_name": "Karen",
                            "contributor_role": "Reviewer",
                            "_nest_parent_": "post101",
                            "_root_": "post101",
                            "_version_": 1820881500429615000
                      }
                ]
          },
          {
                "id": "comment102",
                "comment": "Great schema design tips!",
                "commenter": "James",
                "_nest_parent_": "post102",
                "_root_": "post102",
                "_version_": 1820881500430663700
          },
          {
                "id": "post102",
                "title": "Advanced Solr Schema Design",
                "author": "Sarah Brown",
                "_version_": 1820881500430663700,
                "_root_": "post102",
                "comments": [
                      {
                            "id": "comment102",
                            "comment": "Great schema design tips!",
                            "commenter": "James",
                            "_nest_parent_": "post102",
                            "_root_": "post102",
                            "_version_": 1820881500430663700
                      }
                ]
          }

    ]
Reasons:
  • Blacklisted phrase (1): This article
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): helped me a lot
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Mark Sholund

79346445

Date: 2025-01-10 17:04:06
Score: 2
Natty:
Report link

For me is working to wrap table with

 <div class="card table-responsive border-0">
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pavel Suk

79346440

Date: 2025-01-10 17:01:05
Score: 1
Natty:
Report link

To handle the value of carList outside of the UI without making additional backend calls, you should consider using a mechanism that can store and update the value as it changes. Here's a summary of the solutions:

Use a Stream if you expect continuous updates (ideal for data that changes over time). This allows you to listen to updates without repeatedly calling the backend.

Use a ValueNotifier or cache the value if you want to store the latest value and access it without waiting for a Future to complete each time.

State Management Libraries like Provider or Riverpod are ideal for managing complex or shared state in larger apps.

These solutions allow you to access the latest carList value without triggering extra backend calls, while ensuring your application logic remains clean and efficient.

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

79346438

Date: 2025-01-10 17:00:05
Score: 3.5
Natty:
Report link

Other way: SpringBootTest + application.properties with above parameters.

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

79346430

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

Disable Next.js Image Optimization

If decoding the URL doesn't fix the issue, the problem may be with how Next.js's image optimization pipeline interacts with Firebase-hosted images. To debug, disable image optimization temporarily by using the unoptimized attribute:

<Image
  fill
  src={data.images[0].image}
  alt={data.name}
  className="object-cover"
  unoptimized
/>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nuwan Chamikara

79346416

Date: 2025-01-10 16:54:03
Score: 2
Natty:
Report link

ValueError: too many values to unpack (expected 4) Means that you need more variables to unpack env.step(): 1_new_obs, 2_reward, 3_termineted, 4_truncated, 5_info = env.step(random_action)

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

79346408

Date: 2025-01-10 16:51:01
Score: 6 🚩
Natty: 4
Report link

I have the same problem, I currently have my ETL in VS2019 and SQL2022. When I run it, I get an error in the Script Task.

I followed the advice to change the "Deployment Target Version" to 2019, but my connections to the files, both source and destination, give me the connection error. I have tried to make the connections again, but without success.

Someone who has had the same thing happen to them and has found the solution.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1): I get an error
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Juan Alberto Vílchez

79346389

Date: 2025-01-10 16:46:00
Score: 1.5
Natty:
Report link

Given all these djverse opinions and the need to improve the present SWIFT system used by the global banking system for their geographically divers clients the it must in my view be possible to do the same every individual who buys a Bitcoin?

The proviso is that after miners have calculated that number it can only be used as a public address and the private address is uniquely assigned to the original buyer

From then on a new ledger of ownership changes needs to be added that only stores indirect pointers and yet is searchable by the 2nd ledger servers.

Anyway that's all my personal thoughts are leading me to question

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Colin Hutcheson

79346381

Date: 2025-01-10 16:43:59
Score: 3.5
Natty:
Report link

Native implementation using transformation matrices is complex, and using shaders in Impeller was unfeasible for me, I decided to go for this plugin: https://pub.dev/packages/bookfx_mz

Reasons:
  • Blacklisted phrase (1): this plugin
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ahmad M.

79346373

Date: 2025-01-10 16:41:58
Score: 1
Natty:
Report link

You can set padding: EdgeInsets.zero in you ListView.builder

ListView.builder(
   padding: EdgeInsets.zero,
   ...
)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michał Klepaczko