79423493

Date: 2025-02-08 16:14:41
Score: 4.5
Natty:
Report link

enter image description here

enter image description here

enter image description here

Need add Remote CLI Interpreter

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Иван 26rus

79423481

Date: 2025-02-08 16:04:38
Score: 2.5
Natty:
Report link

I was running into the same problem, and the issue was that I was running the composer commands in the theme directory when it needs to be run in the root directory of the project.

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

79423480

Date: 2025-02-08 16:03:38
Score: 2
Natty:
Report link

The intended use is:

params = stats.t.fit(x)
VaR_99 = stats.t.ppf(.99, *params)

We look to the call signature to see what the params are: https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.t.html

ppf(q, df, loc=0, scale=1)

The first param is indeed df, the degrees of freedom.

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

79423471

Date: 2025-02-08 15:53:36
Score: 4.5
Natty:
Report link

Okay. So I found, that when I wrap the statement like this:

SELECT *
FROM
(SELECT *,
 DENSE_RANK() OVER (PARTITION BY bundesland, regierungsbezirk, kreis, gemeindeverband, gemeinde, election_enum ORDER BY `date` DESC) AS `rank`
 FROM `election`
 WHERE `date` < NOW()
) tbl;

It suddenly works. Is this a bug?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Eric

79423454

Date: 2025-02-08 15:44:34
Score: 0.5
Natty:
Report link

It looks like the API is returning the correct image URLs, but your React app isn’t processing them properly. Here are a few things to check:

Test the API Response – Open the image URLs in a browser or check them in Postman to make sure they load correctly.

Fix Data Mapping – In Strapi v4, images are usually inside attributes. Try updating your code:

const images = property.attributes?.images?.data?.map(img => ${apiUrl}${img.attributes.url}) || [];

Check CORS Issues – If images won’t load, check the browser console for CORS errors. Update Strapi’s middlewares.js to allow requests from your frontend. Clear Cache – If the issue persists, clear your Vite cache:

rm -rf .vite && rm -rf node_modules/.vite
npm run dev

Try these steps and let me know if you’re still stuck! 🚀

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

79423450

Date: 2025-02-08 15:41:33
Score: 2
Natty:
Report link

It seems that some IT genius made an account for me in Pulumi but didn't add me to any groups ergo I can't see any of our stacks. The Pulumi web UI is a little broken though, so I'm able to see the index of stacks by merely being a member of the organization; when I click on any stack I get a 404 page for the stack details. The index showing the stack made me believe I had privileges.

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

79423447

Date: 2025-02-08 15:40:33
Score: 1.5
Natty:
Report link

Install ffmpeg as suggested here: https://pytorch.org/audio/stable/installation.html#optional-dependencies

conda install -c conda-forge 'ffmpeg<7'

Then restart kernel and retry again.

Worked for me, though I'm on macbook.

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fletcher Sarip

79423436

Date: 2025-02-08 15:32:31
Score: 1.5
Natty:
Report link

This is now possible using AWS Language Transform macros. See: https://awstip.com/dynamically-creating-security-group-ingress-rules-in-aws-cloudformation-bb3f48b049ba for details.

In summary, you can use the Fn::Foreach intrinsic function to add multiple ingress rules to your Security group

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Uday Pradhan

79423414

Date: 2025-02-08 15:17:28
Score: 0.5
Natty:
Report link

I reproduced the problem without ST monad. Now the problem is more visible. Function f5 cannot return type with s if s is marked as forall inside an implementation of the function.

data T1 s a = T1 a
data T2 s a = T2 a

f1 :: (forall s. T1 s a) -> a
f1 (T1 a) = a

f2 :: T1 s Integer
f2 = T1 1

f3 :: T1 s (T2 s Integer)
f3 = T1 (T2 1)

f4 :: Integer
f4 = f1 f2 -- OK, returns 1

f5 :: T2 s Integer
f5 = f1 f3 -- Error
--Couldn't match type `s1' with `s'
--Expected: T1 s1 (T2 s Integer)
--  Actual: T1 s1 (T2 s1 Integer)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dmitry Kapustin

79423413

Date: 2025-02-08 15:15:27
Score: 10.5
Natty: 7
Report link

Thanks TotPeRo, I can't upvote, but you saved my day!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): you saved my
  • Blacklisted phrase (2): saved my day
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (2): can't upvote
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: GertJan DeMan

79423409

Date: 2025-02-08 15:14:26
Score: 0.5
Natty:
Report link

It seems Facebook have a new endpoint to share links https://www.facebook.com/share_channel/, with the following query parameters: type=reshare, link=[URL ENCODED LINK], source_surface=external_reshare, display and hashtag

Which gives you the following:

https://www.facebook.com/share_channel/?type=reshare&link=https%3A%2F%2Fgoogle.com%2F%3Futm_source%3Dfacebook&app_id=x&source_surface=external_reshare&display&hashtag
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Niklas

79423405

Date: 2025-02-08 15:13:25
Score: 4.5
Natty: 5
Report link

It's been a while, but I was looking into the same kind of thing. Here's a post about it: https://blog.corrlabs.com/2025/02/full-color-spectrum-color-chart.html

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

79423391

Date: 2025-02-08 15:03:23
Score: 3.5
Natty:
Report link

Simmilar quastion and answer is here How do you clear Apache Maven's cache?

Using maven dependency plugin

Reasons:
  • Blacklisted phrase (1): How do you
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MichalSv

79423378

Date: 2025-02-08 14:48:21
Score: 2
Natty:
Report link

I had the same problem. Downgrading to [email protected] worked as a workaround. I didn't try adding recommended "requireCommit": true to the eas.json cli object as mentioned above.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Allysson Cidade

79423370

Date: 2025-02-08 14:47:21
Score: 2
Natty:
Report link

To set up your website with a CDN (Content Delivery Network) and domain, here’s a breakdown of what you need to do:

  1. Buy a Domain Name: Domain Registrars: You’ll first need to register a domain name through a domain registrar. Some popular ones include: GoDaddy, Namecheap, Google Domains, Bluehost. Choosing a Domain: Try to pick something memorable, short, and relevant to your brand or content. Most domains will cost around $10–$20/year, depending on the extension (e.g., .com, .net, .tech).

  2. Buy a CDN server such as AWS or Heroku and so on.

  3. Connecting the Domain to the CDN: After buying your domain, you'll need to update the DNS records (Domain Name System) to point to your CDN provider. This is usually done through your domain registrar's dashboard. Once your domain is connected to the CDN, the CDN will cache and serve your content more efficiently to users worldwide.

I hope my answer can help you. Regards.

Reasons:
  • Blacklisted phrase (1): Regards
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: stack ninja

79423362

Date: 2025-02-08 14:42:19
Score: 12
Natty: 7.5
Report link

I'm having the same problem, have you managed to make progress on the case?

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (3): have you managed
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maycon Ghizoni

79423359

Date: 2025-02-08 14:40:18
Score: 1
Natty:
Report link

I ran into the same issue today, and I managed to fix it. Here’s what I did:

  1. I simply removed the node_modules folder and package-lock.json.

  2. I updated the @angular/localize package to version 19.1.5.

  3. I ran npm i.

  4. After that, I noticed that everywhere in the project where I had import {$localize} was highlighted in red.

  5. So, I removed all instances of import {$localize} from the files. It turned out that all the files containing import {$localize} were causing issues with i18n extraction. Surprisingly, everything worked fine after removing those imports.

I guess the maintainers of the library fixed the issue in this version.

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

79423358

Date: 2025-02-08 14:40:18
Score: 3
Natty:
Report link

After a long and complicated process, I finally managed to obtain SP-API PII access and Brand Analytics permissions with the help of the website https://form.sp-api.net/. I'm curious to know how others have gone about getting these permissions and how long it took them.

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

79423357

Date: 2025-02-08 14:39:18
Score: 0.5
Natty:
Report link

After much investigation, I discovered that creating a Project Configuration in Apache Netbeans results in the creation of a property file in the folder nbproject/configs. I opened this file (in my case Deploy.properties) and made it look like this:

$label=Deploy
CreateInstaller=true

This made CreateInstaller visible in my project's build.xml.

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

79423355

Date: 2025-02-08 14:39:18
Score: 1
Natty:
Report link

Seem that CSS parser cast the value into the wrong type. Try the example in an old java sdk from the time when that question-answer where put there. Maybe is that the new version has different and more "exquisite" and specific conversions/castings for values (typical java-guys messups). Can be any other thing, but I will start by discarding this. Then you may read this question as it deals with similar conversion problems: JavaFX - Getting class cast exception in css for blend mode

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: user1039663

79423350

Date: 2025-02-08 14:36:17
Score: 2
Natty:
Report link

When we pass dptr (which is a pointer to a pointer) to updateValue, we allow the function to access and modify the original value indirectly.

  1. ptr stores the address of value.
  2. dptr stores the address of ptr.
  3. Inside updateValue(int** ptr), **ptr = 50; means:
  4. *ptr gives us ptr (which points to value).
  5. **ptr accesses the actual value, allowing it to be modified to 50.
Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When we
  • Low reputation (1):
Posted by: marvel

79423347

Date: 2025-02-08 14:35:17
Score: 0.5
Natty:
Report link

You need to escape the HTML code, using a package like escape-html.

Alternatively, you may want to use a simple implementation like:

const encodeHTML = (html) =>
  html
    .replace(/&/g, '&amp;')
    .replace(/</g, '&lt;')
    .replace(/>/g, '&gt;')
    .replace(/'/g, '&#39;')
    .replace(/"/g, '&#34;');

demo: https://livecodes.io/?x=id/8aj5r4bbs9j

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

79423342

Date: 2025-02-08 14:34:17
Score: 1.5
Natty:
Report link

Slightly off topic, because for npm, but there "npm link" seems the way to go, as found in the docs of laravel livewire: https://livewire.laravel.com/docs/contribution-guide#forking-and-cloning-the-repositories

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

79423339

Date: 2025-02-08 14:33:16
Score: 1.5
Natty:
Report link

So you led me down to thje right answer -> the difference is that I wanted to get the variables not from the main scene, but they were instanciated in the main scene

***code here
#In the third script unrelated to the others:

if area.is_in_group("person"):

var Person_ID = area.get_parent().get_instance_id()

var Person = instance_from_id(Person_ID)

var name = Person.Name # I needed the 'instance id' to make it work***

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dandy Wallaby

79423334

Date: 2025-02-08 14:29:16
Score: 2
Natty:
Report link

Enable MapperFeature.ALLOW_VOID_VALUED_PROPERTIES.
Below are the responses made on GitHub.

https://github.com/FasterXML/jackson-module-kotlin/issues/314#issuecomment-624960889

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

79423333

Date: 2025-02-08 14:28:15
Score: 4
Natty:
Report link

I restarted my unity and it works.

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

79423332

Date: 2025-02-08 14:27:15
Score: 1
Natty:
Report link

I manually use a DIY /ping command to check multi-instance status.

@commands.hybrid_command(name="ping", description="ping the server")
async def ping(self, ctx:commands.Context):
    res = "> Ping: Server is on and this instance is active."
    return await ctx.channel.send(res, delete_after=3, silent=True)

btw, I don't see much rate limit.

enter image description here

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

79423331

Date: 2025-02-08 14:27:15
Score: 3
Natty:
Report link

Same issue before: be sure that you apply background solid color or image to the casting shadow div. Otherwise if no background shadow will be like in your image.

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: user1039663

79423327

Date: 2025-02-08 14:26:14
Score: 0.5
Natty:
Report link

In Visual Studio 2022 17.12.4, the "Paste Special" option currently exists in the "ASP.NET and web development" section which may have not been installed if you have only installed the local development sections.

To verify this, follow these steps:

1.) Open Tools -> Get Tools and Features
2.) Tick the "ASP.NET and web development" section if it has not been done so.

ASP.NET and web development

3.) Click "Modify", and wait for the installation to complete (Saving and closing your project may be required)
4.) Close, and re-launch Visual Studio.

If this section has been installed, the answer by Igor Ilyichyov can be followed (Extensions -> Customize Menu -> Commands -> Menu Bar -> Edit -> Add Command -> Edit -> Paste {JSON/XML} as Classes)

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

79423317

Date: 2025-02-08 14:16:12
Score: 1
Natty:
Report link

You can also use set():

s = "3425%4368"

x, y = s.split('%')

print(set(x) & set(y))

{'4', '3'}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: aaa

79423311

Date: 2025-02-08 14:12:11
Score: 1
Natty:
Report link

I had the same problem, I followed below steps and it worked

  1. Open Task Manager
  2. End all the tasks which running with prefix as "MySQL"
  3. Try to run the installer again
Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Reji

79423305

Date: 2025-02-08 14:07:10
Score: 3
Natty:
Report link

There seems to be a direct way, e.g.

roc_display.figure_.savefig("roc_curve.png")

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

79423304

Date: 2025-02-08 14:07:10
Score: 1
Natty:
Report link

Mac M3 here. If bundle install(in the root project folder) fails with bigdecimal error. use the arch -arm64 flag

arch -arm64 bundle install

Then cd ios pod install

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

79423298

Date: 2025-02-08 14:06:10
Score: 0.5
Natty:
Report link

I've checked your principle and I'll help you with a more robust solution that handles all your requirements:

type GoFile struct {
    Package     string           `parser:"'package' @Ident"`
    Imports     *ImportBlock     `parser:"@@?"`
    Declarations []Declaration   `parser:"@@*"`
}

type ImportBlock struct {
    SingleImport *Import        `parser:"  'import' @@"`
    MultiImport  []*Import      `parser:"| 'import' '(' @@ * ')'"`
}

type Import struct {
    Alias   string `parser:"@Ident?"`
    Path    string `parser:"@String"`
}

type Declaration struct {
    Function *Function `parser:"  @@"`
    Type     *Type    `parser:"| @@"`
}

type Function struct {
    Name       string      `parser:"'func' @Ident"`
    Receiver   *Receiver   `parser:"@@?"`
    Parameters *Parameters `parser:"@@"`
    Returns    *Returns    `parser:"@@?"`
    Body       string      `parser:"'{' @Body '}'"`
}

type Receiver struct {
    Name string `parser:"'(' @Ident"`
    Type string `parser:"@Ident ')'"`
}

type Parameters struct {
    List []*Parameter `parser:"'(' ( @@ (',' @@)* )? ')'"`
}

type Parameter struct {
    Name string `parser:"@Ident"`
    Type string `parser:"@Ident"`
}

type Returns struct {
    Single     string       `parser:"  @Ident"`
    MultiNames *ReturnList  `parser:"| '(' @@ ')'"`
}

type ReturnList struct {
    List []*Parameter `parser:"@@ (',' @@)*"`
}

type Type struct {
    Name    string   `parser:"'type' @Ident"`
    Spec    string   `parser:"('{' @Body '}')?"`
}

// Custom lexer rules for body capture
type Body struct {
    Content string
}

func (b *Body) Capture(values []string) error {
    b.Content = strings.Join(values, "")
    return nil
}

It is easy to use this parser! Look how:

func ParseGoFile(content string) (*GoFile, error) {
    parser, err := participle.Build(&GoFile{},
        participle.Lexer(lexer.Must(lexer.Regexp(`(\s+)`+
            `|(?P<Ident>[a-zA-Z_][a-zA-Z0-9_]*)`+
            `|(?P<String>"(?:\\.|[^"])*")`+
            `|(?P<Operator>[-+*/%&|^]|[<>]=?)`+
            `|(?P<Punct>[(),{}[\];.])`+
            `|(?P<Body>[^{}]+)`))),
        participle.Unquote("String"),
    )
    if err != nil {
        return nil, err
    }

    ast := &GoFile{}
    err = parser.ParseString("", content, ast)
    return ast, err
}

This pattern will provide you following features:

  1. Captures package name, imports (both single and grouped)
  2. Handles function declarations with receivers
  3. Preserves function body content
  4. Supports type definitions
  5. Maintains whitespace in function bodies

How can we use it:

content := `
package main

import (
    "fmt"
    t "time"
)

func (s *Server) HandleRequest(req *Request) error {
    // Function body preserved exactly as is
    return nil
}
`

ast, err := ParseGoFile(content)
if err != nil {
    log.Fatal(err)
}

// Access parsed elements
fmt.Println(ast.Package)  // "main"
fmt.Println(ast.Declarations[0].Function.Name)  // "HandleRequest"

This parser properly handles all your requirements while maintaining the original formatting within function bodies.

Reasons:
  • Blacklisted phrase (1): How can we
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MJepbarov

79423294

Date: 2025-02-08 14:03:09
Score: 3.5
Natty:
Report link

X API considers the "OAuth" string in authorization header to be case-sensitive so I had to ensure I had "OAuth" rather than "Oauth" in order to get a 200 OK response.

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

79423290

Date: 2025-02-08 14:00:08
Score: 2
Natty:
Report link

This seems so hard to find nowadays... So mean people want to write a article for a 30 second task, which is a 5 to 10 minute read and get content points and SEO the stuff so the online manpages get buried in the results on page 57... date format options

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

79423287

Date: 2025-02-08 13:58:08
Score: 1.5
Natty:
Report link

Use the measure:

Cumulative_Loss = 
CALCULATE (
    [TotalLossPerAcct],
    WINDOW (
        1, ABS,
        0, REL,
        ALL ( MyTable[TP] )
    )
)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Erick Oliveira

79423272

Date: 2025-02-08 13:47:06
Score: 1
Natty:
Report link

I had and idea to name value_type differently so the compiler will not get confused which value_type is which. So, I could declare statistics of value_type as

    STAT(mult_by_2, ::vec<T>::value_type);

One disadvantage is that ::vec<T>::value_type becomes pretty long in complex class hierarchy.

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

79423264

Date: 2025-02-08 13:39:04
Score: 1.5
Natty:
Report link

The accepted answer didn't work for me with aws-cli/2.23.15.

This is an alternative:

aws ec2 describe-security-group-rules --filters "Name=group-id,Values=sg-0ad9f9694512344"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: knockergrowl

79423254

Date: 2025-02-08 13:31:02
Score: 5.5
Natty:
Report link

So, I was able to migrate my database, but spring boot always use the "default" database and doesn't take database on my "DBManage" schemas.

    spring:
  
  datasource:
    username: speed
    url: jdbc:postgresql://localhost:5432/DBManage
    password: userpass66!
  jpa:
    properties:
      hibernate:
        dialect: org.hibernate.dialect.PostgreSQLDialect
        format_sql: 'true'
    hibernate:
      ddl-auto: update
    show-sql: 'true'
  logging:
    level:
        org.flywaydb: DEBUG
        org.hibernate.SQL: DEBUG
        org.hibernate.type.descriptor.sql.BasicBinder: TRACE

  flyway:
    enabled: 'true'
    baseline-version: 0
    url: jdbc:postgresql://localhost:5432/DBManage
    user: speed
    password: userpass66!
    default-schema: DBManage
    locations: classpath:db/migration

but it takes only the default schema :

2025-02-08T14:21:13.071+01:00  INFO 18208 --- [  restartedMain] 

o.f.core.internal.command.DbValidate     : Successfully validated 3 migrations (execution time 00:00.241s)
2025-02-08T14:21:13.171+01:00  INFO 18208 --- [  restartedMain] o.f.core.internal.command.DbMigrate      : Current version of schema "DBManage": 1
2025-02-08T14:21:13.182+01:00  INFO 18208 --- [  restartedMain] o.f.core.internal.command.DbMigrate      : Schema "DBManage" is up to date. No migration necessary.
2025-02-08T14:21:13.293+01:00  INFO 18208 --- [  restartedMain] o.hibernate.jpa.internal.util.LogHelper  : HHH000204: Processing PersistenceUnitInfo [name: default]
2025-02-08T14:21:13.391+01:00  INFO 18208 --- [  restartedMain] org.hibernate.Version                    : HHH000412: Hibernate ORM core version 6.6.5.Final
2025-02-08T14:21:13.439+01:00  INFO 18208 --- [  restartedMain] o.h.c.internal.RegionFactoryInitiator    : HHH000026: Second-level cache disabled
2025-02-08T14:21:13.815+01:00  INFO 18208 --- [  restartedMain] o.s.o.j.p.SpringPersistenceUnitInfo      : No LoadTimeWeaver setup: ignoring JPA class transformer
2025-02-08T14:21:13.885+01:00  INFO 18208 --- [  restartedMain] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2025-02-08T14:21:13.962+01:00  INFO 18208 --- [  restartedMain] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@25

Can anyone tell me why please ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can anyone tell me
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Speedskillsx

79423235

Date: 2025-02-08 13:13:59
Score: 2
Natty:
Report link

The error "This card does not support recurring payments" occurs because not all Razorpay test cards support subscription-based (recurring) payments.

To test Razorpay Subscriptions, use this test card:

💳 Card for Recurring Payments:

Card Number: 5267 3181 8797 5449 (Mastercard)

You can refer this docs for the card details

Razorpay Docs

Hope it would be helpful for you.

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

79423233

Date: 2025-02-08 13:13:59
Score: 1.5
Natty:
Report link

Solution Approach: Instance the Scenes: Ensure that the scenes (like the character scene) are instanced in the main scene.

Accessing Exported Variables: You can access the exported variables (e.g., name) from the instanced scene by using get_node() or storing a reference to the instance.

Example:

1.Character Scene (Character.tscn) In your character scene, you have an exported variable name:

#Character.gd (attached to the character scene)

extends Node2D

@export var name: String

2.Main Scene (Main.tscn) In your main scene, you’ll instance the character scenes and then access their name variables:

#MainScene.gd (attached to the main scene) extends Node2D

@export var character_scene: PackedScene

var character_instances = []

func _ready():

#Instance 3 characters

for i in range(3):
    var character = character_scene.instantiate()
    add_child(character)
    character.name = "Character " + str(i + 1)  # Set the name
    character_instances.append(character)
#Now you can access the name from the main script
for character in character_instances:
    print(character.name)  # This will print each character's name

Key Points: @export var character_scene: PackedScene is used to export the scene (you can assign the PackedScene in the Godot editor).

Each instance of the character is created by calling instantiate() on the PackedScene.

You access the name variable of each character by directly referencing the instance.

Accessing Variables Across Different Scenes:

By instancing the scenes and storing references (character_instances in this case), you can access and modify variables (name in this case) from the main scene script.

Visit Pisqre for the latest insights! 💡

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @export
  • User mentioned (0): @export
  • User mentioned (0): @export
  • Low reputation (1):
Posted by: Pisqre

79423232

Date: 2025-02-08 13:13:59
Score: 1
Natty:
Report link

What worked for me was to use CLI:yt-dlp -f 137+140 --merge-output-format mp4 https://youtu.be/e-QzJnego04

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • High reputation (-1):
Posted by: Kaleab Woldemariam

79423230

Date: 2025-02-08 13:11:58
Score: 1
Natty:
Report link

Solved by adding connectTimeout: 30_000 to mariadb config (default was 10_000), though in reality it only takes ~4 seconds to start, connect, query and disconnect.

Actually, Even connectTimeout: 5_000 makes it work, but if I do connectTimeout: 10_000 it reaches timeout after 10 seconds. Wtf.

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

79423227

Date: 2025-02-08 13:11:58
Score: 0.5
Natty:
Report link

It appears that the difference between a and ä is considered primary. Using [before 1] you can achieve the expected result.

from icu import RuleBasedCollator

l=["a","ä"]
rbc = RuleBasedCollator('&[before 1]a < ä')
print(sorted(l, key=rbc.getSortKey))

To read more

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

79423226

Date: 2025-02-08 13:10:58
Score: 2.5
Natty:
Report link

Now there is a quick hack,

Go to Project Insights --> Contributors

Here you can get the additions and deletion count. You can add the count of each contributor to get the total count

enter image description here

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

79423220

Date: 2025-02-08 13:05:57
Score: 2
Natty:
Report link

From the docs

Note that a player should not be stopped from within a completion handler callback because it can deadlock while trying to unschedule previously scheduled buffers.

https://developer.apple.com/documentation/avfoundation/avaudioplayernode?language=objc

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

79423217

Date: 2025-02-08 13:04:56
Score: 1
Natty:
Report link

You are on the right track with using ChartsAxisHighlight. But it should be this instead:

<ChartsAxisHighlight x='line'/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: lamhoangtung

79423212

Date: 2025-02-08 13:00:56
Score: 2.5
Natty:
Report link

It looks like the question is related to Anchor project layout and IDL generation for multiple programs in Solana development. If your IDLs aren’t generating for all programs, ensure:

Each program has a proper [programs.localnet] section in Anchor.toml. Run anchor build for each program separately. Check dependencies and workspace configurations. For tech rentals, including high-performance laptops and servers, visit Rental Plaza for seamless development setups! For more info- https://rentalplaza.in/

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rental plaza

79423204

Date: 2025-02-08 12:54:54
Score: 3.5
Natty:
Report link

This seems to now be possible in Redshift https://docs.aws.amazon.com/redshift/latest/dg/r_EXCLUDE_list.html

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

79423201

Date: 2025-02-08 12:49:53
Score: 4
Natty: 5
Report link

ok thank you, I didn't know you could put a autoload script on an instanciated object

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

79423197

Date: 2025-02-08 12:47:52
Score: 2.5
Natty:
Report link

}。{ for japanese and kanji and }.{ for other languages works with google translate scraping with accuracy of maybe like 70% and for the rest 30% just split the data and try again. do this recursively until it works :)

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

79423182

Date: 2025-02-08 12:36:49
Score: 1
Natty:
Report link

I tested your code, and it seems to work fine. Please try to test this with Postman. Select New | WebSocket, and use settings from below picture.

Postman WebSocket

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

79423165

Date: 2025-02-08 12:26:47
Score: 2.5
Natty:
Report link

Besides the idea of 'federation' mentioned in the answer by moonkotte, you might also consider the concept of 'remote write'. Remote write involves developing an agent that collects metrics data from the cluster and proactively pushes it to a remote Prometheus storage.

The answer (https://stackoverflow.com/a/76372494/15604744) from Chris is more declarative.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • Low reputation (1):
Posted by: PatickM

79423156

Date: 2025-02-08 12:18:45
Score: 0.5
Natty:
Report link

Establishing trust without a single point of failure is a common 'challenge' in decentralized systems, but what you could instead do is use Trust On First Use with Public Key Pinning.

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

79423146

Date: 2025-02-08 12:11:44
Score: 1.5
Natty:
Report link

Try adding this in viewDidLoad

navigationItem.searchController = searchController
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zain Ul Abideen

79423143

Date: 2025-02-08 12:10:42
Score: 7.5 🚩
Natty:
Report link

Did you able to solve this as I am also facing the same problem

Reasons:
  • Blacklisted phrase (1): you able to solve
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same problem
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Khushhal Sharma

79423139

Date: 2025-02-08 12:06:40
Score: 0.5
Natty:
Report link

It's always towards the state management, it would be best to use either Bloc/Cubit or Riverpod for that matter, instead of ChangeNotifier provider and here's why:

  1. Bloc/Cubit is made for business logic component for managing the states of the properties and events that will trigger for them and using the UI to either get it or set them before changing the visual state.
  1. The riverpod is simpler, but a bit confusing at first, but as long you use only one class to manage states and methods business and calculation behind the UI, it's best suited.

  2. ChangeNotifier is a beginner level learning state management tool, you only use this for one single class to manage the state properties and the methods you required to make your UI clean.

  3. Stateful state management tool is a very old way of managing the state through the UI and make your code very long to read and very slow.

If I was in your situation, I would start learning more about Bloc or Riverpod for the features you wanted to implement.

IMPORTANT: Always use state management tools for making calculations, manipulating strings, controllers, the click of a button to do something and etc. While the UI is only representing to the user and just getting and sending some data towards the state management tool. It's like have a contractor for your UI to work with and provide necessary data to present it to the user.

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

79423138

Date: 2025-02-08 12:05:40
Score: 3
Natty:
Report link

As @sean-dubois said, MediaRecorder API is the way to go.

To add to that, I have made a project that utilizes MediaRecorder API to stream video calls over arbitrary data channels: https://github.com/WofWca/video-call-over-email.

Of course instead of endlessly streaming the data you can end it at any time, which would be the equivalent of an audio / video message.

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • User mentioned (1): @sean-dubois
  • Low reputation (0.5):
Posted by: WofWca

79423136

Date: 2025-02-08 12:03:40
Score: 1.5
Natty:
Report link

You may get this error if your region is specified incorrectly, for example ap-south-2 instead of ap-southeast-2.

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

79423133

Date: 2025-02-08 12:02:39
Score: 2.5
Natty:
Report link

After many "try and errors" ... it's not the call_repeatedly function itself. The threads created with call_repeatedly trying to access a singleton . Sometimes they can collide. Using threading.Lock() while accessing the singleton helps. The curious fact is, that the collision scenario never happend on the raspberry, but now on the Intel chipset.

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

79423126

Date: 2025-02-08 11:57:38
Score: 3
Natty:
Report link

solver.options = [ "feasibilityPump on", # Find feasible solutions faster "primalSimplexPricing steep", # Faster convergence # "maxSolutions 1", # Stop after finding first feasible solution # "maxNodes 10000", # Limit search nodes # "ratioGap 0.5", # Accept solutions within 50% of bound "allowableGap 10", # acceptable tolerance # "cutoff 1e+10" # High cutoff to accept any solution ]

Reasons:
  • Blacklisted phrase (1.5): any solution
  • No code block (0.5):
  • Low reputation (1):
Posted by: Benny Tenezeu

79423125

Date: 2025-02-08 11:57:38
Score: 1.5
Natty:
Report link

I know this question is for VS 2019, but seeing as it's not the latest version, and I had this question for VS 2022:

Visual Studio 2022: In the test explorer, right click the test and then click Profile.

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

79423120

Date: 2025-02-08 11:54:37
Score: 9
Natty: 7.5
Report link

Did you manage to find a solution in the end?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Ziyed Hammadi

79423115

Date: 2025-02-08 11:51:36
Score: 0.5
Natty:
Report link

Key Fixes:

Result:

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

79423107

Date: 2025-02-08 11:48:36
Score: 1
Natty:
Report link

Or right click on the code, and choose Refactor, followed by "Convert to 'Program.Main' style program:

right click on code

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

79423104

Date: 2025-02-08 11:47:35
Score: 4.5
Natty:
Report link

Please refer to the MySql installer(https://downloads.mysql.com/archives/installer/) to install the MySql server or workbench.

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

79423103

Date: 2025-02-08 11:45:34
Score: 2
Natty:
Report link

If you're not getting American Airlines in the results, it could be due to various factors like search filters, specific keywords, or settings. Try refining your search terms, using the full name "American Airlines," or including related keywords like "flight cancellations" or "customer service" to improve your results.1-844-976-4875 You can also check if there are any region-specific filters or preferences limiting your search. for more information

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

79423101

Date: 2025-02-08 11:43:34
Score: 3
Natty:
Report link

Adding a custom event listener to Keycloak which makes a request to the People API (https://people.googleapis.com/v1/people/me?personFields=genders,birthdays) when user uses sign in with google, retrieves values, and adds them to the user info, solved my problem.

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

79423097

Date: 2025-02-08 11:40:33
Score: 2
Natty:
Report link

I was able to resolve it by declaring the table as v-data-table-server instead of v-data-table (thanks @MoritzRingler) :

<v-data-table-server v-model:items-per-page="itemsPerPage" :headers="headers" :items="users"
        :items-length="totalItems" :loading="loading" item-key="id"
        @update:options="fetchUsers({ page: page, itemsPerPage: itemsPerPage, search: search })"
        :items-per-page-options="itemsPerPageOptions" :page="page" @update:page="onPageChange">

Also make sure the data from backend is sent with 'total', 'per_page', 'current_page', 'last_page', 'next_page_url', 'prev_page_url' fields.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @MoritzRingler
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: 1K412

79423090

Date: 2025-02-08 11:37:32
Score: 0.5
Natty:
Report link

One way to offset dimple's tick labels at the mid of each interval is to use dimple.axis.shapes after the plot has been drawn. This allows to access each SVG <text> element (i.e. the labels) that can be translated using raw d3 capabilities (see https://d3js.org/d3-axis).

Here's how one can move each tick label 55 pixels to the right and 5 pixels upwards:

myLinePlot.draw();
x.shapes.selectAll("text").attr("transform", `translate(55,-5)`);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: OuzoPower

79423068

Date: 2025-02-08 11:25:30
Score: 1
Natty:
Report link

You need to call this first:

await window.tronLink.request({ method: 'tron_requestAccounts' })
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matthew

79423067

Date: 2025-02-08 11:25:30
Score: 1.5
Natty:
Report link

If your problems are not solved, you can try this. Go to Settings --> Editor --> General --> Inline Completion and disable your current programming language.

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

79423063

Date: 2025-02-08 11:23:29
Score: 4
Natty:
Report link

With jsoneditor-cli you could edit your jsons directly in a web-based interface.

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

79423059

Date: 2025-02-08 11:19:27
Score: 3
Natty:
Report link

This was just a permissions thing. I really should have spotted it earlier. The READ_PHONE_STATE is the one. Previous versions of the DPC library allowed this permission to be granted automatically but now we have to ask the user. Doing that has fixed the issue.

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

79423053

Date: 2025-02-08 11:12:25
Score: 5
Natty:
Report link

Did you find a way round this? I have an old model in pickle format and no way to recreate it.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a way
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a
  • High reputation (-1):
Posted by: simon

79423030

Date: 2025-02-08 10:57:22
Score: 2
Natty:
Report link

You need to recompile btest each time you change your bits.c - running make in the terminal should fix your issue.

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

79423024

Date: 2025-02-08 10:50:21
Score: 0.5
Natty:
Report link

You need to open PowerShell or CMD with Run as administrator mode and put the command in there.

PowerShell
enter image description here

CMD
enter image description here

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

79423022

Date: 2025-02-08 10:49:20
Score: 2.5
Natty:
Report link

You can't open a PHP file with live server. Instead, type localhost/ on any browser. I think there is an other extension called Five Server which could normally open PHP files but i don't use it so I can't tell you if it really works.

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

79423021

Date: 2025-02-08 10:48:20
Score: 3
Natty:
Report link

It is illegal for variables to start with numbers because lexical analysis is not supported in computers.

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

79423003

Date: 2025-02-08 10:36:18
Score: 2.5
Natty:
Report link

I also want a similar feature, but in such a way that I can choose whether this feature should be displayed in specific categories, for example, 1 category or 4 categories. For example, I have household products and I only want the mug category to be sold in sets of 6. I don't want to use a plugin and I would like this feature to be added to my site with code. Thank you for your guidance.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ali

79422999

Date: 2025-02-08 10:34:16
Score: 10 🚩
Natty:
Report link

I have the same Error message.

{
  "name": "popular-pegasi",
  "type": "module",
  "version": "0.0.1",
  "scripts": {
    "dev": "astro dev",
    "build": "astro build",
    "preview": "astro preview",
    "astro": "astro",
    "start": "astro preview --port $PORT --host"
  },
  "dependencies": {
    "astro": "^5.2.4"
  }
}
// @ts-check
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
    site: "https://my-website.de",

    vite: {
        preview: {
          allowedHosts: [
            'my-website.de',  
          ]
        }
      }
});

Can you help me? PS.: I do not have an Dockerfile. I am using node.js (I'm a beginner)

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can you help me
  • RegEx Blacklisted phrase (1): I have the same Error
  • RegEx Blacklisted phrase (2): I'm a beginner
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same Error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: KodingFarming

79422998

Date: 2025-02-08 10:33:16
Score: 0.5
Natty:
Report link

I fixed this issue by using java 17 to compile the application which can be done by running this command: " flutter config --jdk-dir= " and run " flutter doctor " to see if things are ok and try compiling.

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

79422997

Date: 2025-02-08 10:33:16
Score: 2
Natty:
Report link

For some reason, having only a component in AllSkill was causing an issue. If I try to set up an other "fixed" field, like name like this: enter image description here

ANd then in the content manager, I have to edit the view for MySkill, like this, so it doesn't show the id, but rather the name: enter image description here

And that is it, now I am able to choose multiple skills in MySkill, that are related to AllSkill enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: TheTisiboth

79422996

Date: 2025-02-08 10:32:16
Score: 1
Natty:
Report link

You can use the up arrow key to go through your command history

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: beingmanish

79422995

Date: 2025-02-08 10:32:16
Score: 1
Natty:
Report link

Replace your @RestController with @Controller . @RestController will render json output where as @Controller will render your view template

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

79422982

Date: 2025-02-08 10:22:14
Score: 2
Natty:
Report link

No, this is not expected behavior. The Python Interactive Window should execute 2+2 and return 4 immediately.

There is a problem with Visual Studio and Python 3.12 (64 bit) (Python 3.13 (64 bit) is facing the same problem). It has already been discussed in this post: Preview Version 5.0 interactive window hangs in Visual Studio Professional 2022 (64-bit) (Python)

Unfortunately, Python 3.9 (the last version where the interactive window worked) is no longer officially available. This does not mean that your Python environment does not work. Normally, Python should still run your scripts correctly.

However, if you need the interactive window, I would highly recommend switching to VS Code.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (0.5):
Posted by: Lukinator

79422979

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

Round ID:2863485382862053767E15H Seed: Result Cipher:e0930b01c5b29ccef55b0eb192eefcc9be8f2379befad2ab029dd059286793bc Seed Cipher:df6ea4f962dd7b4b05976972949bd180915e43bf1b9960200541c1e66b8f674d Result:

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

79422971

Date: 2025-02-08 10:16:12
Score: 4.5
Natty: 4.5
Report link

Use Autodesk MotionBuilder. How to mirror animation

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Максим Гутиков

79422970

Date: 2025-02-08 10:16:11
Score: 1
Natty:
Report link

Unfortunately, the GitHub Copilot Edits feature is currently only available on VS Code. Other editors and IDEs will need more time to integrate this feature because it interacts deeply with the tool.

If you would like to try out the latest features, I recommend using VS Code first.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Alfred Luu

79422964

Date: 2025-02-08 10:11:10
Score: 3
Natty:
Report link

for livewire 3 use wire.model.live same as in livewire 2 wire.model

i am lost not reading documentation upgrage

https://livewire.laravel.com/docs/upgrading#wiremodel livewire model documentation

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

79422959

Date: 2025-02-08 10:03:09
Score: 11.5
Natty: 7.5
Report link

the tool which you are using to show call stack is awsome. could you please give me some info about the tool? thx

Reasons:
  • Blacklisted phrase (1): thx
  • Blacklisted phrase (3): give me some
  • RegEx Blacklisted phrase (2.5): could you please give me some
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: xinzhang

79422958

Date: 2025-02-08 10:02:07
Score: 12.5 🚩
Natty: 6.5
Report link

were you able to figure out the problem? I am facing a similar problem.

Reasons:
  • RegEx Blacklisted phrase (3): were you able to figure out
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Elias Abud

79422953

Date: 2025-02-08 09:59:06
Score: 1.5
Natty:
Report link

echo "# https-httpstwittercomwin188.slack.com-x-p3733809246593-3744910190560-3834633611975-signin" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin [email protected]:Ikonwa/https-httpstwittercomwin188.slack.com-x-p3733809246593-3744910190560-3834633611975-signin.git git push -u origin main

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

79422950

Date: 2025-02-08 09:58:06
Score: 3
Natty:
Report link

I think this binary semaphore is misleading, I am expecting it is blocking forever. I am wondering why binary semaphore exists, if it acts just like counting semaphore.

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

79422948

Date: 2025-02-08 09:57:06
Score: 0.5
Natty:
Report link

I would suggest using a plugin like Custom Product Type for WooCommerce (Add-Ons, Data, Options, Booking, and Appointments).

For the code method use this:

// #1 Add New Product Type to Select Dropdown
  
add_filter( 'product_type_selector', 'wpsaad_add_custom_product_type' );
  
function wpsaad_add_custom_product_type( $types ){
    $types[ 'custom' ] = 'Custom product';
    return $types;
}
  
// --------------------------
// #2 Add New Product Type Class
  
add_action( 'init', 'wpsaad_create_custom_product_type' );
  
function wpsaad_create_custom_product_type(){
    class WC_Product_Custom extends WC_Product {
      public function get_type() {
         return 'custom';
      }
    }
}
  
// --------------------------
// #3 Load New Product Type Class
  
add_filter( 'woocommerce_product_class', 'wpsaad_woocommerce_product_class', 10, 2 );
  
function wpsaad_woocommerce_product_class( $classname, $product_type ) {
    if ( $product_type == 'custom' ) {
        $classname = 'WC_Product_Custom';
    }
    return $classname;
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohamed Saad

79422945

Date: 2025-02-08 09:54:05
Score: 1
Natty:
Report link

This Python code prints the number of digits in this list if the list has 100 numbers with 1 digit.

import random
o[]
for b in range(100):
    o.append(random.randint(0,9))
print(o)
for d in range(10):
    print("The number of",d,"in",b,"is",o.count(d))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hard

79422940

Date: 2025-02-08 09:51:05
Score: 1.5
Natty:
Report link

I assume that your problem is related to the Apache settings, on your linux machine, you probably have mod_rewrite enabled which is causing the redirection problem.

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

79422936

Date: 2025-02-08 09:48:04
Score: 3
Natty:
Report link

Discords notifications do not support markdown (including emojis), which is the reason why you get the raw payload's value

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

79422931

Date: 2025-02-08 09:43:03
Score: 1.5
Natty:
Report link

I've successfully reproduced your error on my computer

After a few tweaks to your code, here is the success message

enter image description here

The problem lies in line 2 of your index.js file, where you are importing pool instead of sequelize

You should change the line

import pool from './db/db.js';

to

import sequelize from './db/db.js';
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rony Lee