79499153

Date: 2025-03-10 21:08:18
Score: 2.5
Natty:
Report link

The problem was caused by wrong current directory. I should run idf.py command under project directory and not under C:\Espressif\frameworks\esp-idf-v5.4

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

79499151

Date: 2025-03-10 21:07:17
Score: 6 🚩
Natty: 6
Report link

Vxcdgxvdfgrghbhggbhhfl http://10.0.0.91:3000/hook.js

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Admin'

79499135

Date: 2025-03-10 21:00:16
Score: 1.5
Natty:
Report link

Revise the Height and Width settings in the Userform properties dialog.

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

79499108

Date: 2025-03-10 20:39:12
Score: 3
Natty:
Report link

Not perfect, but you may infer some of the admins from the following APIs as well:

https://api.github.com/repos/ORG/REPO/contributors

https://api.github.com/repos/ORG/REPO/assignees

https://api.github.com/repos/ORG/REPO/subscribers

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

79499102

Date: 2025-03-10 20:35:11
Score: 1
Natty:
Report link

Hi! Duda Nogueira from Weaviate here.

Looks like this issue is due to the transformer inference container timing out when Weavaite will request a vector for your batch import.

This timeout is by default 50s, and can be changed as documented here:

https://weaviate.io/developers/weaviate/config-refs/env-vars

with the environment variable `MODULES_CLIENT_TIMEOUT`

Note: whenever you start increasing timeouts in Weaviate, is probably a sign that you have resource allocation issues.

I can see from your docker compose that you are not using GPU (ENABLE_CUDA: 0) so my bet is that your transformer is not being able to handle the vectorization load.

What you can do to mitigate this is to have a fine control over you batches. Try sending less objects per batch, in order to allow the transformer to return in less than 50 seconds.

Let me know if that helps!

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Duda Nogueira

79499099

Date: 2025-03-10 20:34:11
Score: 0.5
Natty:
Report link

I was looking for the same and came up with the following workaround.

It is specifically geared towards a game that uses six-sided dice to beat a target number (TN) where the number of dice rolled can be anywhere from 1 to n, using the following specifics.

Sub TNCheck1()
Dim i As Long, r As Long, d As Long, x As Long, cell As Range, TarN As Long

'(1) First I get the number of dice to roll from the appropriate Input cells.
'(2) The range for dice roll results and number of rolls is going to be C11:D*, so I clear that area.
'(3) Entirely optional, but I want to exit the sub if I don't have valid numbers...
'(4) ...which I check for next.
'(5) This is the range where results are stored.
'(6) The "roll" itself.
'(7) Result is stored in the range.
'(8) Notation for how many times this "die" has been rolled.

'The next section is simply looping through the results and checking if any die should be rolled again, for as long as our condition of having rolled consecutive 6's is met.

'(A) Tag which marks the beginning of the loop.
'(B) Resetting the counter x.
'(C) The number of times the die has been rolled.
'(D) Checking if the previous result has a 6:1 result/roll ratio.
'(E) If there is a current 6:1 result/roll ratio: die is rolled, result is added, and roll count is updated.
'(F) IF the counter x is greater than 0 we go back to (A) again.

d = WorksheetFunction.Sum(ActiveSheet.Range("D6:D7")) '(1)
ActiveSheet.Range("C11:D1048576").ClearContents '(2)
TarN = ActiveSheet.Range("D5").Value '(3)

If TarN = 0 Or d = 0 Then '4)
    Exit Sub
Else
    For Each cell In ActiveSheet.Range("C11:C" & 10 + d) '(5)
        r = WorksheetFunction.RandBetween(1, 6) '(6)
        cell.Value = r  '(7)
        cell.Offset(0, 1).Value = 1 '(8)
    Next cell

Gandalf: '(A)
    x = 0 '(B)
    For Each cell In ActiveSheet.Range("C11:C" & 10 + d)
        i = cell.Offset(0, 1).Value '(C)
        If cell.Value / cell.Offset(0, 1).Value = 6 Then '(D)
            r = WorksheetFunction.RandBetween(1, 6) '(E)
            cell.Value = cell.Value + r
            i = i + 1
            cell.Offset(0, 1).Value = i
            x = x + 1

        End If
    Next cell

    If x > 0 Then '(F)
        GoTo Gandalf
    Else
    End If
End If

End Sub

(output)

I lead my response with the above, because the understanding the logic can be helpful as a starting point for anyone who use the search query "VBA exploding dice".

Now, to answer the question proper, using the above logic:

Sub XP10()
    Dim r As Long, cell As Range
    Set cell = ActiveSheet.Range("A1")

    r = WorksheetFunction.RandBetween(1, 10)
    cell.Value = r
    
If cell.Value = 10 Then
        GoTo xplUp
    ElseIf cell.Value = 1 Then
        GoTo xplDown
    Else: GoTo Complete
End If

xplUp:
   r = WorksheetFunction.RandBetween(1, 10)
If r = 10 Then
        cell.Value = cell.Value + r
        GoTo xplUp
    Else:
        cell.Value = cell.Value + r
        GoTo Complete
End If

xplDown:
r = WorksheetFunction.RandBetween(1, 10)
If r = 10 Then
        cell.Value = cell.Value - r
        GoTo xplDown
    Else:
        cell.Value = cell.Value - r
        GoTo Complete
End If

Complete:
End Sub
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anders Bergström

79499094

Date: 2025-03-10 20:30:10
Score: 5.5
Natty: 6
Report link

@Rajkumar Gaur solution worked for me. Additionally I had to enable deploy keys in https://github.com/organizations/MYORGANIZATION/settings/deploy_keys

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Rajkumar
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: tjhannes

79499087

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

Got it to work!

in my vite.config.js i added an extra / to my localhost target,

Not working, Keeps full reloading my page: target: 'http://localhost:5002',

Working, Only reloads the DOM: target: 'http://localhost:5002/',

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

79499081

Date: 2025-03-10 20:19:07
Score: 1
Natty:
Report link

Create Two Formulas

SuppressLastPage (Place in Group Footer of Main Group).

//{@Set SuppressLastPage} Place this in the Group Footer so it is set after the penultimate page header is printed then use it in the PageHeader to supress items on the last page like Fee Earner Name on a Fee Earner List

WhilePrintingRecords;

BooleanVar SuppressLastPage;

if OnLastRecord then SuppressLastPage := True else SuppressLastPage := False ;

---

SuppressLastPageCheck (Use in Page Header to Suppress Section or Items Within the Page Header)

//{Check Contects SuppressLastPage Note: Should only be True on last page header}

WhilePrintingRecords;

BooleanVar SuppressLastPage;

SuppressLastPage ;

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

79499069

Date: 2025-03-10 20:10:05
Score: 5.5
Natty:
Report link

Can you post your pipeline, or share the yaml steps? Generally, these are some steps I follow:

All these tasks of type DotNetCoreCLI@2.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you post your
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you post you
  • Low reputation (1):
Posted by: Apurv G

79499047

Date: 2025-03-10 19:59:02
Score: 1.5
Natty:
Report link

No meu caso não estava instalado o module rewrite:

  <rewrite>
        <rules>
          <rule name="Redirect to HTTPS" stopProcessing="true">
            <match url="(.*)" />
            <conditions>
              <add input="{HTTPS}" pattern="off" ignoreCase="true" />
            </conditions>
            <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
          </rule>
        </rules>
      </rewrite>
Reasons:
  • Blacklisted phrase (1): não
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jssmttibr

79499043

Date: 2025-03-10 19:58:02
Score: 2
Natty:
Report link

best solution I found is to use Git, create a file containing the first json in a local git project, stage it, then replace its content with the second json, and let git do it's magic and show you the difference, you may need to sort the two files first.

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

79499030

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

often you may just have to wait a few hours for the DNS information to propagate properly to the servers

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

79499015

Date: 2025-03-10 19:45:59
Score: 6.5
Natty: 7.5
Report link

can you confirm if this below azure policy worked for you?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Michel

79499007

Date: 2025-03-10 19:40:58
Score: 0.5
Natty:
Report link

You may want to check the config setup for capacitor. In your project, locate the capacitor.config.ts file, and check the keyboard property nested in the CapacitorConfig object. set the resizeOnFullScreen to true (resizeOnFullScreen: true). You may also want to look at the capacitor documentation to read more.set resizeOnFullScreen: true

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

79499005

Date: 2025-03-10 19:39:57
Score: 3.5
Natty:
Report link

Trinket is ok, and allows multiple files. Just link it, or embed it. Lots of modules aren't on Trinket, though.

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

79498990

Date: 2025-03-10 19:34:55
Score: 8 🚩
Natty: 5
Report link

I'm experiencing very similar issues with a similar setup. Did you find a solution or some more information on the cause?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dimitar Penev

79498987

Date: 2025-03-10 19:32:54
Score: 7 🚩
Natty: 6
Report link

can someone help me to find the password of this hash $bitlocker$0$16$cb4809fe9628471a411f8380e0f668db$1048576$12$d04d9c58eed6da010a000000$60$68156e51e53f0a01c076a32ba2b2999afffce8530fbe5d84b4c19ac71f6c79375b87d40c2d871ed2b7b5559d71ba31b6779c6f41412fd6869442d66d

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can someone help me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can someone help me to find the
  • Low reputation (1):
Posted by: user29961719

79498979

Date: 2025-03-10 19:30:54
Score: 0.5
Natty:
Report link

I found that flatten-maven-plugin was not needed, using maven version 3.9.3.
I am using Team City and can be using other plugins in single repo parent pom.xml that does the replacement in ${revision} out-of-the-box. Another question is if this also works when releasing the artifact, which I have not tested yet.

 Singlerepo Parent pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
    <groupId>shb.rte</groupId>
    <artifactId>mygateway</artifactId>
    <version>${revision}</version>
    <packaging>pom</packaging> 

....
....
    <properties>
             <revision>3.0.2-SNAPSHOT</revision>
    </properties> 

    <dependencyManagement>
        <dependencies> 
            <dependency>
                <groupId>shb.rte.mygateway</groupId>
                <artifactId>my-message-service</artifactId>
                <version>${revision}</version>
            </dependency>
Project in singelrepo: my-secure-message-service

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>shb.rte</groupId>
        <artifactId>mygateway</artifactId>
        <version>${revision}</version>
    </parent>   
        <artifactId>my-message-parent</artifactId>
    <groupId>shb.rte.mygateway</groupId>
    <packaging>pom</packaging>
 
        <modules>
         <module>my-message-contract</module>
         <module>my-message-service</module>
        </modules>

Submodule in my-message-service:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>shb.rte.mygateway</groupId>
        <artifactId>my-message-parent</artifactId>
        <version>${revision}</version>
    </parent>
    <artifactId>my-message-service</artifactId>
Reasons:
  • Blacklisted phrase (1): Another question
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tom Vahlman

79498969

Date: 2025-03-10 19:25:53
Score: 0.5
Natty:
Report link

Solution found (via Google Gemini, since neither Chap GPT nor Claude could do it).

The correct argument to chage was tf :

PT.pretty_table(
        io,
        portfolios;
        backend = Val(:latex),
        show_subheader = false,
        alignment=[:l, :c, :c, :c, :c],
        formatters = PT.ft_printf("%1.2f"),
        tf = PT.tf_latex_booktabs
    )
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Raul Guarini Riva

79498961

Date: 2025-03-10 19:23:52
Score: 1.5
Natty:
Report link

install diffusers from the github:

!pip install --upgrade git+https://github.com/huggingface/diffusers.git

after verifying that the object class or python script you are importing exists in the github file.

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

79498959

Date: 2025-03-10 19:21:52
Score: 0.5
Natty:
Report link

Looks like a cursor leak?

  1. Make sure you are closing your cursors to avoid cursor leakage. You can try checking, by running the query noted here for cursor leaks: ORA-01000.

  2. You can also try increasing the value of the OPEN_CURSORS database initialization parameter and see if your application just needs a higher number of cursors due to concurrent use. The answer here shows a query: ORA-01000: maximum open cursors exceeded - java code fails

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

79498957

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

yes same issue using 0.76 version and debugger is not connecting up.

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

79498946

Date: 2025-03-10 19:14:50
Score: 2
Natty:
Report link

After some time I have found something (please tell me if my response needs to be worked on). To resume, you need to plug to [isExpanded] input now.

<mat-tree [dataSource]="yourTreeData()" [childrenAccessor]="yourChildrenAccessor">
    <mat-tree-node
        *matTreeNodeDef="let node"
        matTreeNodePadding
        matTreeNodeToggle
        [cdkTreeNodeTypeheadLabel]="node.name"
        (click)="youSelectNodeOnClick(node)"
        (expandedChange)="youDoSomethingWhenExpanded($event, node)"
        [isExpandable]="node.isExpandable"
        [isExpanded]="node.isExpanded">
        
    </mat-tree-node>
</mat-tree>

with this in your component:

private _cdr = inject(ChangeDetectorRef);
protected yourTreeData: Signal<Array<TreeNode>>; // for each tree node you need to declare the toggleExpanded(expend: boolean, currentNode: TreeNode) method with: currentNode.isExpanded = expend;
protected yourChildrenAccessor = (node: TreeNode): Array<TreeNode> => {
  return node.children; // you can filter if you want
}

// and where you have the node you want to expand then:
let yourNode: TreeNode; // the node you have
elem.toggleExpanded(true, elem); // this triggers the previous declared method in the yourTreeData
this._cdr.detectChanges();
Reasons:
  • RegEx Blacklisted phrase (2.5): please tell me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Killian

79498943

Date: 2025-03-10 19:12:50
Score: 0.5
Natty:
Report link

I think you are going to need some customizations. At minimum, I think you need to subclass ClusterTaggableManager so you can pass an ordering through to Taggit. Personally I would start there and test it passing whatever you need to change the ordering to alphabetical by tag name. I know that isn't what you want, but it gives you a test you can do without needing any changes to the UI. Once you have that working, then I would figure out how to tell the manager what order you want.

Does the many to many table even have a sort column? (I would look directly in the database to verify this)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: cnk

79498931

Date: 2025-03-10 19:06:49
Score: 2.5
Natty:
Report link

After a bit of bashing my head against the wall and giving it some rest, I decided to just put everything in the onchange of the html and work with the value obtained from the select itself (this.value) instead of retrieving it to the app.js since I could not figure out for the life of me a way of doing it with the aforementioned changeLang() function in js file.

var direction = this.value; 
this.value = this.options[0].value; 
location = direction;

It is a bit lazy, but it is a good workaround. Thanks to @UmairSarfraz for the response (I did not realize the thing with the onchange attribute) since it helped me to get to a solution.

PS: Turns out there was indeed someone with a problem the same as mine but I did not find the post at the time of writing this question. Shoutout to the response of @TJCrowder, because not only did he gave the same answer, but also it gave a way of doing that function with an EventListener looking for changes. You can find more details clicking this link

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @UmairSarfraz
  • User mentioned (0): @TJCrowder
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Th3W31rd0

79498930

Date: 2025-03-10 19:06:49
Score: 3
Natty:
Report link

See table 58 in the reference manual for this part.

enter image description here

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

79498925

Date: 2025-03-10 19:04:48
Score: 5.5
Natty: 4
Report link

You need to use @Body annotation to receive the body. Something like @Body String body. Request.getBody() will be null in Micronaut as it loads this data asynchronously.

Refer:

https://stackoverflow.com/a/75704413 https://micronaut-projects.github.io/micronaut-docs-mn1/1.1.x/guide/#requestResponse https://micronaut-projects.github.io/micronaut-docs-mn1/1.1.x/guide/#bodyAnnotation

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Body
  • User mentioned (0): @Body
  • Low reputation (1):
Posted by: Raghav D

79498914

Date: 2025-03-10 19:00:46
Score: 6.5 🚩
Natty: 5
Report link

I have the same problem, I changed it to db.all and it returns an array and works

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • 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 (0.5):
Posted by: Devel EWeb

79498912

Date: 2025-03-10 18:58:46
Score: 4.5
Natty: 7.5
Report link

I am trying to use the codes above in my theme's functions.php file, but all it does is to create a critical error. Am I adding it wrong? Thanks!

screenshot in url:

https://ibb.co/FbMdnYTL

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I am trying to
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Bob catalin

79498907

Date: 2025-03-10 18:57:45
Score: 4
Natty:
Report link

why not use a different email it might work.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): why not use a
  • Low reputation (1):
Posted by: Camren Cruz

79498905

Date: 2025-03-10 18:55:45
Score: 2
Natty:
Report link

But then in this case how do we know what router belongs to what route handler like if we just use export async function POST, how will we know to which router will this route handler be used? Like in express, we do something like app.post("/posting", (req, res)=> {}) and this tells us that this specific post route handler will we applied to /posting route, but in this above use case we cannot specify the route for the route handler of what comes after api/ for the specific POST or GET handelr??

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

79498898

Date: 2025-03-10 18:48:43
Score: 0.5
Natty:
Report link

To be able to add the "Organization Policy Administrator" role to your principal, ensure that you are currently selecting the organization resource first before editing/adding a role to your principal email:

image

  1. Go to your Google cloud console page.

  2. Click the project picker located at the top left of the page and select your domain on the drop-down list.

  3. Go to the “All” tab then select the organization resource.

  4. Proceed on adding the "Organization Policy Administrator" role to your principal.

Below is a sample where the organization resource is selected. You should see a domain icon next to it.

image

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

79498889

Date: 2025-03-10 18:46:43
Score: 1.5
Natty:
Report link

I achieved this by overriding the container command to write to /etc/hosts before executing the main task.

For example, sh,-c,echo 127.0.0.1 somehostname >> /etc/hosts && your-real-server

See also https://github.com/aws/containers-roadmap/issues/1076#issuecomment-692622717

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

79498877

Date: 2025-03-10 18:40:41
Score: 1.5
Natty:
Report link

Your TextFormField should use the controller from the fieldViewBuilder and not the policyNameController

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

79498855

Date: 2025-03-10 18:34:39
Score: 6.5 🚩
Natty:
Report link

Thanks @howlger for answering in the comments. Basically:

Is this an Eclipse bug?

No. It's a Lombok bug. Reported at https://github.com/projectlombok/lombok/issues/3830.

Is there any way this can be solved by tweaking Eclipse preferences?

No.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @howlger
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Daniele Repici

79498854

Date: 2025-03-10 18:34:39
Score: 2
Natty:
Report link

There is no real purpose, from everything I can tell. It's just one of those confusing Microsoft things that is not explained well in their documentation, and has to do with the underlying way they implemented subscription creation. The only time you will care about it is if you are programmatically creating subscriptions (in which case you need to maintain uniqueness of the aliasname).

“Theirs not to reason why, theirs but to do and die” -Alfred, Lord Tennyson

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

79498853

Date: 2025-03-10 18:33:38
Score: 6.5 🚩
Natty:
Report link

Follow up question....Im on mac and having simlar issues. Want to try the solution above but uncertain of the directories to make an attempt. Can anyone give a bit more detail to this?

I already have insight face installed (it fails to load in comfyui) and the .whl file fails to build.

All help appreciated.

Solution id like to use:

sudo apt-get install build-essential libssl-dev libffi-dev
mkdir temp
cd temp
git clone https://github.com/deepinsight/insightface/ .
pip3 install wheel setuptools
pip3 install -r requirements.txt
cd python-package
python3 setup.py bdist_wheel
pip3 install dist/insightface-0.7.3-cp311-cp311-linux_x86_64.whl

HERE's the startup showing where the error:



(base) mo-ry@Mac-Studio ~ % cd /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI 
(base) mo-ry@Mac-Studio ComfyUI % python3.11 main.py
[START] Security scan
[DONE] Security scan
## ComfyUI-Manager: installing dependencies done.
** ComfyUI startup time: 2025-03-10 13:23:33.297
** Platform: Darwin
** Python version: 3.11.11 (main, Dec 11 2024, 10:25:04) [Clang 14.0.6 ]
** Python executable: /opt/homebrew/Caskroom/miniconda/base/bin/python3.11
** ComfyUI Path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI
** ComfyUI Base Folder Path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI
** User directory: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user
** ComfyUI-Manager config path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user/default/ComfyUI-Manager/config.ini
** Log path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user/comfyui.log

Prestartup times for custom nodes:
   0.8 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/ComfyUI-Manager

Checkpoint files will always be loaded safely.
Total VRAM 131072 MB, total RAM 131072 MB
pytorch version: 2.6.0
Set vram state to: SHARED
Device: mps
Using sub quadratic optimization for attention, if you have memory or speed issues try using: --use-split-cross-attention
ComfyUI version: 0.3.26
ComfyUI frontend version: 1.11.8
[Prompt Server] web root: /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/comfyui_frontend_package/static
objc[53520]: Class AVFFrameReceiver is implemented in both /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/av/.dylibs/libavdevice.61.3.100.dylib (0x108f983a8) and /opt/homebrew/Caskroom/miniconda/base/lib/libavdevice.60.3.100.dylib (0x3147d0800). One of the two will be used. Which one is undefined.
objc[53520]: Class AVFAudioReceiver is implemented in both /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/av/.dylibs/libavdevice.61.3.100.dylib (0x108f983f8) and /opt/homebrew/Caskroom/miniconda/base/lib/libavdevice.60.3.100.dylib (0x3147d0850). One of the two will be used. Which one is undefined.
### Loading: ComfyUI-Manager (V3.30.3)
[ComfyUI-Manager] network_mode: public
### ComfyUI Revision: 3238 [9aac21f8] *DETACHED | Released on '2025-03-09'
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json
Traceback (most recent call last):
  File "/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/nodes.py", line 2147, in load_custom_node
    module_spec.loader.exec_module(module)
  File "<frozen importlib._bootstrap_external>", line 936, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1073, in get_code
  File "<frozen importlib._bootstrap_external>", line 1130, in get_data
FileNotFoundError: [Errno 2] No such file or directory: '/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface/__init__.py'

Cannot import /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface module for custom nodes: [Errno 2] No such file or directory: '/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface/__init__.py'

Import times for custom nodes:
   0.0 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/websocket_image_save.py
   0.0 seconds (IMPORT FAILED): /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface
   0.0 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/comfyui_instantid
   0.1 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/ComfyUI-Manager
   0.7 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/comfyui_faceanalysis

Starting server

To see the GUI go to: http://127.0.0.1:8188
Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2.5): Can anyone give
  • RegEx Blacklisted phrase (3): help appreciated
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: PadiwanCoder

79498851

Date: 2025-03-10 18:33:37
Score: 1.5
Natty:
Report link

If you want to create a Folder in C# on a Storage Account with Hierarchical namespace enabled. (in terraform is_hns_enabled = true).

You need to use the nuget : Azure.Storage.Files.DataLake

MSDN Documentation

_dataLakeServiceClient = new DataLakeServiceClient(new Uri($"{storageUri}"), new DefaultAzureCredential());

var fileSystemClient = _dataLakeServiceClient.GetFileSystemClient(_containerName);

DataLakeDirectoryClient directoryClient = await fileSystemClient.CreateDirectoryAsync(directoryName);

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

79498850

Date: 2025-03-10 18:32:37
Score: 3
Natty:
Report link

Fixed by adding additional header in the tunnel endpoint config

enter image description here

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

79498838

Date: 2025-03-10 18:24:36
Score: 1.5
Natty:
Report link

In case it helps anyone, I'm on .NET 8 and Newtonsoft.Json isn't supported yet. So, "explicitly" adding this help:

using System.Text.Json.Serialization;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: UrbanFox

79498834

Date: 2025-03-10 18:21:36
Score: 1.5
Natty:
Report link

Easiest thing you could do is add property spring.main.allow-circular-references in application.properties file & set it to true

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

79498825

Date: 2025-03-10 18:18:35
Score: 2.5
Natty:
Report link

If still doesn't work, run this: asdf reshim , it fixed my case

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

79498824

Date: 2025-03-10 18:17:35
Score: 0.5
Natty:
Report link

Try this:

sudo apt-get install libc6:i386 libncurses5-dev:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Elton Silva

79498807

Date: 2025-03-10 18:12:34
Score: 1.5
Natty:
Report link

Databricks provided a solution for this:

In workflows -> Jobs -> <my_job> -> Runs -> There is a url which says "Go to the latest sucessufl run" . You can click on that which will be same url for all the latest runs.

and under Output, click on the right side drop down to see the dashboard(s) attached to the notebook.

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

79498806

Date: 2025-03-10 18:11:32
Score: 7.5 🚩
Natty:
Report link

# my code
import random
from threading import Thread
import time
import os
from inputimeout import inputimeout, TimeoutOccurred

# todo inputs
b = input("press enter to start")

lowest_numb = input("lowest number")

highish_numb = input("highish_numb")

time_for_qus = int(input("time for question"))

print(type(time_for_qus))


def ask_question():
    ran_1 = random.randint(int(lowest_numb), int(highish_numb))
    ran_2 = random.randint(int(lowest_numb), int(highish_numb))
    print(f"{ran_1}x{ran_2}", end="")
    try:
        answer = inputimeout("", time_for_qus)
    except TimeoutOccurred:
        print("Times up!!!")
        ask_question()


ask_question()

my goal is to make a multiplication game, but i am having trouble canceling the input function

can you help?

PS. please respond

Reasons:
  • RegEx Blacklisted phrase (3): can you help
  • RegEx Blacklisted phrase (2): i am having trouble
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29961513

79498800

Date: 2025-03-10 18:09:30
Score: 6 🚩
Natty:
Report link

if you solved the problem please share the solution

Reasons:
  • RegEx Blacklisted phrase (2.5): please share the solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: srag zhran

79498793

Date: 2025-03-10 18:07:30
Score: 2.5
Natty:
Report link

In my case it was a custom filter setting from a plugin(Polylang) that was present in the user metadata. pll_filter_content = en. Once I removed it from the db, I was able to list all pages again.

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

79498778

Date: 2025-03-10 17:59:27
Score: 11 🚩
Natty: 5.5
Report link

did you figure out how to delete the unwanted white layer behind the custom tab bar?

I have the same issue:

enter image description here

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): did you figure out
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: jhovelnu

79498777

Date: 2025-03-10 17:58:27
Score: 2
Natty:
Report link

maintainer of GHex here.

Switch to insert mode and use any delete function in GHex in order for it to delete the bytes rather than zeroing them out.

I believe the Help documentation is clear on this.

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

79498765

Date: 2025-03-10 17:52:26
Score: 0.5
Natty:
Report link

🚀 Consider Using react-native-splash-view Instead!

Hey there! 👋 If you're facing issues with AppDelegate changes in React Native 0.76+, you might want to try [react-native-splash-view] instead!

Why switch to react-native-splash-view?

Check it out & give it a try! 🚀✨

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Jagnesh Chawla

79498764

Date: 2025-03-10 17:52:26
Score: 0.5
Natty:
Report link

🚀 Consider Using react-native-splash-view Instead!

Hey there! 👋 If you're facing issues with AppDelegate changes in React Native 0.76+, you might want to try [react-native-splash-view] instead!

Why switch to react-native-splash-view?

Check it out & give it a try! 🚀✨

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Jagnesh Chawla

79498763

Date: 2025-03-10 17:51:26
Score: 1.5
Natty:
Report link

For Mac users, the equivalent of copying the Zscaler cert to Ubuntu under WSL is copying it to ~/.docker/certs.d. That tells the Docker provider, in my case Colima, to install the certificate in the Docker virtual machine. All my DDEV containers were able to use the certificate once I restarted Colima and DDEV.

https://darren.oh.name/node/81

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

79498762

Date: 2025-03-10 17:51:26
Score: 0.5
Natty:
Report link

🚀 Consider Using react-native-splash-view Instead!

Hey there! 👋 If you're facing issues with AppDelegate changes in React Native 0.76+, you might want to try [react-native-splash-view] instead!

Why switch to react-native-splash-view?

Check it out & give it a try! 🚀✨

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Jagnesh Chawla

79498760

Date: 2025-03-10 17:50:25
Score: 2
Natty:
Report link

C:\adb>adb connect 192.168.0.85:36787

connected to 192.168.0.85:36787

C:\adb>adb devices

List of devices attached

192.168.0.85:36787 device

Порт и IP отображается в разделе Беспроводная отладка на вашем смартфоне

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

79498745

Date: 2025-03-10 17:41:24
Score: 3
Natty:
Report link

Alex Divkovic

150575-3859

Decan 3 RD

Colors of the Earth Element are yellow, brown, taupe, beige.

YANG EARTH ELEMENT

Primary Stars: Hades, Demeter
Organ: Stomach
Colours: Light Brown, Yellow, Tan

YIN EARTH ELEMENT

Primary Star: Zeus
Organ: Brain
Colours: Brown, Beige, KhakiP

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alex Divkovic

79498738

Date: 2025-03-10 17:37:23
Score: 1.5
Natty:
Report link

I found the answer:

In my example I referenced 'workIdFilter' but didn't show its definition because it didn't matter, or shouldn't have mattered. Here it is:

let workIdFilter: MapboxMaps.Expression = Exp(.not) {
    Exp(.inExpression) {
        Exp(.get) { "WorkId" }
        Array(hiddenWorkIds)
    }
}

What I'm trying to do here is hide features where the property "WorkId" is contained in the array "hiddenWorkIds".

And here's the problem - when "hiddenWorkIds" is an empty array, it doesn't work right. I can't tell exactly what is happening but I'm guessing there's some error internally that is causing the whole expression to fail and therefore not hide anything.

The workaround is pretty simple -- I just put some dummy value into the array to make sure it is never empty.

This seems like a bug to me. Surely .inExpression should accept an empty list and behave as expected?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: Flarosa

79498730

Date: 2025-03-10 17:34:22
Score: 2
Natty:
Report link

the App you are using "Dataverse Application" in azure app. That needs to be associated with Dataverse (aka. Power Platform). Create an application user using "Maker Portal" (https://make.preview.powerapps.com). Select your environment and go to Application User. Provide your "Client ID" and assign it a Dataverse Role. Now when you authenticate it should go through. Because this is not 401, this is 403 (Forbidden access)

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

79498718

Date: 2025-03-10 17:30:21
Score: 0.5
Natty:
Report link

In Sublime Text, you can use this :

${TM_FILENAME/^(.*?)\\..*$/$1/}

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: safidy mariël RAHERINOTOAVINA

79498694

Date: 2025-03-10 17:21:19
Score: 3
Natty:
Report link

In my case it was because I have an indexed column, and the user tried to a duplicated value.

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

79498692

Date: 2025-03-10 17:20:19
Score: 2
Natty:
Report link

Mohammad Reza Sadreddini suggestion worked for me Ctrl + R + I.

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

79498689

Date: 2025-03-10 17:17:19
Score: 1
Natty:
Report link

Now that gcloud storage has been released, the Google Cloud documentation recommends using it instead of gsutil. One can execute:

gcloud storage ls --recursive 'gs://bucket/folder/**' | wc -l
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dkurzaj

79498687

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

I ran this by SAP's help desk. Their ultimate response was essentially "Don't do that."

By which I mean that the CrystalRuntime jars and the jars that allow a report to be scheduled with the BO server are inherently incompatible. The capabilities should not coexist in the same application.

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

79498671

Date: 2025-03-10 17:08:17
Score: 3
Natty:
Report link

Sometimes on Android and Intellij it appears that they update, just ignore it or try in visual code

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Josu Alejandro Hernndez Castel

79498668

Date: 2025-03-10 17:06:16
Score: 1
Natty:
Report link

You can add the ARN of an Inference profile to your modelID itself while invoking the model.

response = bedrock_client.invoke_model(

       modelId="arn:aws:bedrock:us-east-1::model/your-bedrock-model-arn"  

       prompt="Your prompt here"

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

79498667

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

Use a shared primary key. In your MetaDataEntity, annotate the ChatEntity relationship with @MapsId so that it reuses ChatEntity’s generated ID. With cascading enabled, saving ChatEntity will persist both entities in one request.

Example:

@Entity
data class ChatEntity(
    val name: String?,
    @OneToOne(mappedBy = "chat", cascade = [CascadeType.ALL], orphanRemoval = true)
    var metaData: MetaDataEntity? = null
) {
    @Id @GeneratedValue
    var id: UUID? = null
}

@Entity
data class MetaDataEntity(
    @Id
    var chatId: UUID? = null,
    @OneToOne
    @MapsId
    @JoinColumn(name = "chat_id")
    var chat: ChatEntity,
    val lastBumpingActivityAt: Instant?
)

Now, saving ChatEntity (with metaData set) will automatically persist MetaDataEntity with the correct ID.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @MapsId
  • Low reputation (1):
Posted by: Walid Salame

79498666

Date: 2025-03-10 17:05:14
Score: 6.5 🚩
Natty:
Report link

Did you ever figure this out?

I am having similar, but my app hangs on the index.html file. So I just get the loading page. Hard refresh and all is good

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure this out
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Warren Van Der Merwe

79498656

Date: 2025-03-10 17:02:14
Score: 3.5
Natty:
Report link

Apparantly i've been hitting the else this whole time and not the If. Should've added a write host to the Else. Thank you all for your help

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: DanielJ

79498650

Date: 2025-03-10 17:01:13
Score: 9.5 🚩
Natty: 6.5
Report link

If in the first example I already know the name of the group "test" and I want to know only the blocks contained in this group. How do I modify the example?
another question, is it possible to select a block and know which group it belongs to?
thanks
Mrz

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): another question
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): I want to know
  • Blacklisted phrase (1): is it possible to
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user29961277

79498646

Date: 2025-03-10 17:00:12
Score: 2
Natty:
Report link

I was getting the same error, but found that I was logged into a different Google account, which didn't have execute permissions on the libraries my code relied on.

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

79498640

Date: 2025-03-10 16:58:12
Score: 0.5
Natty:
Report link

yii\base\ErrorException: Undefined variable $start in /var/www/tracktraf.online/frontend/controllers/TelegramController.php:197
Stack trace:
#0 /var/www/tracktraf.online/frontend/controllers/TelegramController.php(197): yii\base\ErrorHandler->handleError()
#1 [internal function]: frontend\controllers\TelegramController->actionRotatorCheck()
#2 /var/www/tracktraf.online/vendor/yiisoft/yii2/base/InlineAction.php(57): call_user_func_array()
#3 /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Controller.php(178): yii\base\InlineAction->runWithParams()
#4 /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Module.php(552): yii\base\Controller->runAction()
#5 /var/www/tracktraf.online/vendor/yiisoft/yii2/web/Application.php(103): yii\base\Module->runAction()
#6 /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Application.php(384): yii\web\Application->handleRequest()
#7 /var/www/tracktraf.online/frontend/web/index.php(18): yii\base\Application->run()
#8 {main}
Copy StacktraceSearch StackoverflowSearch GoogleError
PHP Warning – yii\base\ErrorException
Undefined variable $start
1. in /var/www/tracktraf.online/frontend/controllers/TelegramController.phpat line 197
188189190191192193194195196197198199200201202203204205206        }
 
        $clientInfo = Yii::$app->cloudflare->getClientInfo();
        $country = $clientInfo['country'];
 
        $botName = Yii::$app->params['countryBots'][$country] ?? Yii::$app->params['countryBots']['default'];
 
        return $this->render('rotator-index', [
            'url' => 'https://t.me/' . $botName . '?start=' . $telegramUuid,
            'start' => $start,
            'error' => true
        ]);
    }
 
    private function isFromTelegram(): bool
    {
        $telegramUserAgents = [
            'TelegramBot',
            'Telegram WebApp',
2. in /var/www/tracktraf.online/frontend/controllers/TelegramController.php at line 197– yii\base\ErrorHandler::handleError()
191192193194195196197198199200201202203        $country = $clientInfo['country'];
 
        $botName = Yii::$app->params['countryBots'][$country] ?? Yii::$app->params['countryBots']['default'];
 
        return $this->render('rotator-index', [
            'url' => 'https://t.me/' . $botName . '?start=' . $telegramUuid,
            'start' => $start,
            'error' => true
        ]);
    }
 
    private function isFromTelegram(): bool
    {
3. frontend\controllers\TelegramController::actionRotatorCheck()
4. in /var/www/tracktraf.online/vendor/yiisoft/yii2/base/InlineAction.php at line 57– call_user_func_array()
5. in /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Controller.php at line 178– yii\base\InlineAction::runWithParams()
6. in /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Module.php at line 552– yii\base\Controller::runAction()
7. in /var/www/tracktraf.online/vendor/yiisoft/yii2/web/Application.php at line 103– yii\base\Module::runAction()
8. in /var/www/tracktraf.online/vendor/yiisoft/yii2/base/Application.php at line 384– yii\web\Application::handleRequest()
9. in /var/www/tracktraf.online/frontend/web/index.php at line 18– yii\base\Application::run()
12131415161718    require __DIR__ . '/../../common/config/main.php',
    require __DIR__ . '/../../common/config/main-local.php',
    require __DIR__ . '/../config/main.php',
    require __DIR__ . '/../config/main-local.php'
);
 
(new yii\web\Application($config))->run();
$_COOKIE = [
    '_ga' => 'GA1.1.1290322294.1739007612',
    'telegram_uuid' => '8e79a8fe15d61e5f498055a8ebaba837f28aa857404ba64eec785cd8d92465a1a:2:{i:0;s:13:"telegram_uuid";i:1;s:36:"568cdb07-7b2b-4385-8a0a-8592b690c9d2";}',
    'PHPSESSID' => '52vhuaaocrirp7iitpnvpnfgol',
    'g_state' => '{"i_l":0}',
    'uuid' => 'd6a8efecb1a07b18e0de4031a46aaa39ccf6363e5f08cbddc513cc4f6b6c52ada:2:{i:0;s:4:"uuid";i:1;s:36:"22e20892-8e18-42e7-8a52-413688ac96b0";}',
    'fc748' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRhIjoie1wic3RyZWFtc1wiOntcIjExMDQ3XCI6MTc0MTYyNDQzMSxcIjEwMDgzXCI6MTc0MTYyNDQ2NSxcIjE0MzI0XCI6MTc0MTYyNDQ2NixcIjE0MTk1XCI6MTc0MTYyNDQ3OSxcIjE0NDU5XCI6MTc0MTYyNDQ4NyxcIjE0NTkwXCI6MTc0MTYyNDQ5MyxcIjE0NTk4XCI6MTc0MTYyNDU1NCxcIjE0NjA4XCI6MTc0MTYyNDU2MSxcIjE0NjE4XCI6MTc0MTYyNDU2NSxcIjE0NjQxXCI6MTc0MTYyNDU5MCxcIjE1MDY3XCI6MTc0MTYyNDU5NCxcIjE1MjI0XCI6MTc0MTYyNDY0MyxcIjExODc0XCI6MTc0MTYyNDY1OSxcIjY1MDBcIjoxNzQxNjI0NjY5fSxcImNhbXBhaWduc1wiOntcIjQ1MlwiOjE3NDE2MjQ0MzEsXCI0MTBcIjoxNzQxNjI0NDY1LFwiNTI5XCI6MTc0MTYyNDQ2NixcIjUyOFwiOjE3NDE2MjQ0NzksXCI1MzBcIjoxNzQxNjI0NDg3LFwiNTMxXCI6MTc0MTYyNDQ5MyxcIjUzM1wiOjE3NDE2MjQ1NTQsXCI1MzRcIjoxNzQxNjI0NTYxLFwiNTM1XCI6MTc0MTYyNDU2NSxcIjUzNlwiOjE3NDE2MjQ1OTAsXCI1NTNcIjoxNzQxNjI0NTk0LFwiNTM3XCI6MTc0MTYyNDY0MyxcIjQ3OFwiOjE3NDE2MjQ2NTksXCIzMjNcIjoxNzQxNjI0NjY5fSxcInRpbWVcIjoxNzQxNjI0NDMxfSJ9.VfRu2QPSLII8L7GRG-6eHUP84uwABnGL11RHa95ptLg',
    '_csrf-frontend' => '3ed0f5e2a2990cce1faf6b13e68c169f8306070854abadd8e1e818bd5ca71305a:2:{i:0;s:14:"_csrf-frontend";i:1;s:32:"VqQEFkFOA1cqab_5O6HkFkE9FyPUKdeM";}',
    '_ga_QNY2RP6E3P' => 'GS1.1.1741624432.2.1.1741625330.0.0.0',
    '_subid' => '1nuratq3i4rbb',
];
Yii Framework
2025-03-10, 18:48:55

nginx/1.18.0

Yii Framework/2.0.51
Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: abubakar khan

79498639

Date: 2025-03-10 16:58:12
Score: 1
Natty:
Report link

I will give it a try:

A « polymorphic » malware is expected to self-adapt to the environment provided. Thus according to the definition given above, your shall use metamorphic encryptor to alter file signature and propagate into the system.

Since you’re checksuming anyhow on-install and on-updates payload has to be rigorously identical to source-files thus trusted software is expected to be unexposed by default

For the rest of your filesystem altering the MD5 signature is deemed untraceable and a basic 128 bytes code chunk in a random text file or whatever shall introduce network vulnerabilities through à backdoor

If you intend to be ruining the target file system you should not trace network activity but rather alter critical executable such as /bin/chmod to do funny stuff

If you intend to mess with the hardware then alter the kernel through modprobe

each layer of complexity requiring more sophisticated offsec that a standard malware won’t fit

Polymorphic malware remaining malwares you should easily be able to detect and get rid of in non critical use cases

Sincerely

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

79498626

Date: 2025-03-10 16:54:11
Score: 0.5
Natty:
Report link

There is. You can use suite Cloud VS Code extension, and you can upload from your VS code right away.

And also I am working on project, which will be more simpler than this, which I will release soon, if I do so, I'll definitely update you but Suite Cloud Extension is more than enough.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mosses

79498609

Date: 2025-03-10 16:45:09
Score: 5.5
Natty: 4.5
Report link

I see it's been a while since this was discussed, but I wanted to ask—has anyone tried integrating Twilio IVR with a CRM for better call tracking and workflow automation? I'm curious if handling call routing based on real-time CRM data has worked smoothly for anyone. Also, any thoughts on handling Twilio’s concurrency limits when scaling up a virtual call center?

Reasons:
  • Blacklisted phrase (1.5): any thoughts
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: IanHarris

79498607

Date: 2025-03-10 16:44:08
Score: 1
Natty:
Report link

A good approach is to maintain two separate lists in the Bloc:
1.Main List
2.Favourite List (Liked Photos): This list contains only the IDs of liked photos.

The UI should be rendered based on the Favorites List. When a user likes a photo, its ID is added to the favorites list, and the UI updates accordingly without modifying the main list.

Whe the app is restarted, the favorites list is loaded from local storage (e.g., Hive or SharedPreferences) to persist the liked state

A separate event handles adding/removing likes, ensuring that the UI updates instantly without reloading the entire list.

This method keeps performance optimized while ensuring a smooth user experience

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

79498599

Date: 2025-03-10 16:40:08
Score: 1
Natty:
Report link

Did you add this when declaring your parent component? :

<script>  
export default {  
  props: {  
    block: String,  
  }  
};  
</script>  

Then to use your parent component you add:

<template>
  <ParentComponentNameHere :block="'Example'">
    <template v-slot:default="{ block }">
      <p>Block: {{ block }}</p>
    </template>
  </ParentComponentNameHere>
</template>

Also notice, it is {{block}} not {block}

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you add this
  • Low reputation (0.5):
Posted by: Hédi Ben Chiboub

79498583

Date: 2025-03-10 16:31:05
Score: 3
Natty:
Report link

I refactored to use Tone.Part and this resolved the volume warp issue. I didn’t realize this existed, it’s a built-in function specifically designed to schedule multiple play events from an instrument in a loop.

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

79498579

Date: 2025-03-10 16:29:05
Score: 1.5
Natty:
Report link

If you are in the VBA editor but not currently running a macro then you can type the following command into an Immediate window:

?ThisWorkbook.FullName
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mulehide

79498578

Date: 2025-03-10 16:28:05
Score: 2
Natty:
Report link

I think AWS Gateway blocks many headers in the request. You'll need to make it so that it lets them through. I think it's part of the API Gateway -> method -> integration request -> HTTP headers.

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

79498576

Date: 2025-03-10 16:27:04
Score: 3
Natty:
Report link

Well, how about activting an environment, to begin with?

https://www.anaconda.com/docs/tools/working-with-conda/environments#activating-an-environment

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

79498569

Date: 2025-03-10 16:23:04
Score: 1.5
Natty:
Report link

Wow, I'm so tired of these hipsters. They don't totally get it either, most of them that is according to Einstein. If you can explain it to a 5 year old and all... jerks.

Hope the couple nicer guys made it clear enough (though they too were being snide). I'm tired of working with people like this at Intel, then Facebook, now their mom's house. It's so boring and expected but what should I expect, they said I would hate people after getting out of the army. Nice to see what I fought for is this, bleck... no wonder China and ever other country is whooping our butt's in the IT sphere with help like this.

Kthanksbye

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Cody Spill

79498568

Date: 2025-03-10 16:23:04
Score: 3
Natty:
Report link

sometimes you just need to stop the apps and re run the project

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

79498558

Date: 2025-03-10 16:14:02
Score: 1
Natty:
Report link

As suggested in the GitHub Discussion, it was a problem with the webserver configuration. I'm using a custom docker image and nginx proxy on local. I was able to fix it by adding the header in nginx.conf:

add_header X-Inertia "true";
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: murcoder

79498542

Date: 2025-03-10 16:05:00
Score: 1.5
Natty:
Report link

How about using a ee.Join to do a join?

var point = ee.Geometry.Point([-94.73665965557193, 35.915990354302]);

print('Point Geometry:', point);
var startDate = ee.Date('2016-01-01');
var endDate = ee.Date('2016-12-31');

  
var lstDataset = ee.ImageCollection('OREGONSTATE/PRISM/AN81d')
                  .select('tmean')
                  .filterDate(startDate, endDate)
                  .filterBounds(point)
                  .map(function(image) { return image.clip(point); });
print("lstDataset", lstDataset)    

var NTTempdataset = ee.ImageCollection('NASA/VIIRS/002/VNP21A1N')
    .select("LST_1KM") // Select the LST_1KM band
    .filterDate(startDate, endDate) // Filter by date
    .filterBounds(point) // Filter by region
    .map(function(image) {
        return image
            .clip(point) // Clip to the region
            .rename("LST_1KM_Night"); // Rename the band to LST_1KM_Night
    });
print("NTTempdataset", NTTempdataset)      

var joined = ee.Join.saveBest({
  matchKey: 'other',
  measureKey: 'garbage',
  outer: true
}).apply({
  primary: lstDataset, 
  secondary: NTTempdataset, 
  condition: ee.Filter.maxDifference({
    difference: 100000000,
    leftField: 'system:time_start', 
    rightField: 'system:time_start'})
})

// Do something to these:
var withMatches = joined.filter(ee.Filter.neq('other', null))
print(withMatches.size())
// Do something else to these:
var withoutMatches = joined.filter(ee.Filter.eq('other', null))
print(withoutMatches.size())
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: Nicholas Clinton

79498539

Date: 2025-03-10 16:01:59
Score: 1.5
Natty:
Report link

Inline Utility IPs were added in Vivado 2024.2 (I can't see reference to them in 2024.1).

Vivado claims that using these reduces disk usage. I haven't used these yet, but it suggests that they don't get an Out of Context run anymore, and are instead folded into the top level Verilog / VHDL source file that is generated:

https://docs.amd.com/r/en-US/ug994-vivado-ip-subsystems/Inline-HDL

2024.2 and newer will automatically prompt to migrate to these when you open an older project:

https://docs.amd.com/r/en-US/ug994-vivado-ip-subsystems/Migrating-Utility-IPs-to-Inline-HDL

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

79498535

Date: 2025-03-10 15:59:59
Score: 1
Natty:
Report link

With @chrisaycock answer, I got this working in FreeBSD 4.9 and 14.0 with additional headers.

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <ifaddrs.h>
#include <stdio.h>

int main()
{
    struct ifaddrs *ifap, *ifa;
    struct sockaddr_in *sa;
    char *addr;

    getifaddrs(&ifap);
    for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
        if (ifa->ifa_addr && ifa->ifa_addr->sa_family == AF_INET) {
            sa = (struct sockaddr_in *) ifa->ifa_addr;
            addr = inet_ntoa(sa->sin_addr);
            printf("Interface: %s\tAddress: %s\n", ifa->ifa_name, addr);
        }
    }

    freeifaddrs(ifap);
    return 0;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @answer
  • Low reputation (1):
Posted by: ordinary_guy

79498518

Date: 2025-03-10 15:54:58
Score: 0.5
Natty:
Report link

I solved the problem with UNBOUND BREAKPOINTS by removing --turbopack from package.json in the scripts section.

PRINTSCREEN

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: André Ruan

79498517

Date: 2025-03-10 15:54:58
Score: 1.5
Natty:
Report link

Solved inverting the order of updating the layout and the sleep in the update_layout() method of the _Welcome_ class:

#update the page
self.update()
time.sleep(0.05)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: eljamba

79498508

Date: 2025-03-10 15:49:57
Score: 1
Natty:
Report link

The **"Internal server error"** might be occurring due to the below reasons:

Firstly, make sure that a service endpoint delegation is properly configured between the Function App and the virtual network subnet before integrating them.

Add below service endpoints block under virtual network configuration. If you are using an existing vnet from the portal, you can add it directly over there.

```bash
serviceEndpoints: [
{
service: 'Microsoft.Storage'
locations: [ location ]
}
{
service: 'Microsoft.Web'
}
]
```
Refer [SO](https://stackoverflow.com/a/79290455/19785512) worked by me for the relevant issue.

Also, check the available regions for deploying a flex consumption plan function app and deploy it those regions accordingly.

`az functionapp list-flexconsumption-locations`

![enter image description here](https://i.imgur.com/aXhGFe5.png)

*Modified Bicep code:*

```bash
param location string = 'eastus'
param functionPlanName string = 'asp-japroduct'
param functionAppName string = 'jahappprod'
param functionAppRuntime string = 'dotnet-isolated'
param functionAppRuntimeVersion string = '8.0'
param storageAccountName string = 'mystorejahst'
param logAnalyticsName string = 'worksjah'
param applicationInsightsName string = 'virtualinshg'
param maximumInstanceCount int = 100
param instanceMemoryMB int = 2048
param resourceNameNsgBusiness string = 'nsg-business-enb'
param vnetResourceName string = 'vnetlkenvironment'
param vnetAddressPrefix string = '10.0.0.0/16'
param subnetPrefixBusiness string = '10.0.1.0/24'
param resourceNameSubnetBusiness string = 'subnet--business'
var resourceToken = toLower(uniqueString(subscription().id, resourceGroup().name, location))
var deploymentStorageContainerName = 'app-package-${take(functionAppName, 32)}-${take(resourceToken, 7)}'
var storageRoleDefinitionId = 'b7e6dc6d-f1e8-4753-8033-0f276bb0955b'
resource nsgBusiness 'Microsoft.Network/networkSecurityGroups@2024-01-01' = {
name: resourceNameNsgBusiness
location: location
}
resource vnet 'Microsoft.Network/virtualNetworks@2024-01-01' = {
name: vnetResourceName
location: location
properties: {
addressSpace: {
addressPrefixes: [
vnetAddressPrefix
]
}
enableDdosProtection: false
enableVmProtection: false
}
}
resource subnet 'Microsoft.Network/virtualNetworks/subnets@2024-03-01' = {
parent: vnet
name: resourceNameSubnetBusiness
properties: {
addressPrefix: subnetPrefixBusiness
networkSecurityGroup: {
id: nsgBusiness.id
}
privateEndpointNetworkPolicies: 'Enabled'
privateLinkServiceNetworkPolicies: 'Enabled'
serviceEndpoints: [
{
service: 'Microsoft.Storage'
locations: [ location ]
}
{
service: 'Microsoft.Web'
}
]
}
}

resource logAnalytics 'microsoft.operationalinsights/workspaces@2021-06-01' = {
name: logAnalyticsName
location: location
properties: {
retentionInDays: 30
features: {
searchVersion: 1
}
sku: {
name: 'PerGB2018'
}
}
}

resource applicationInsights 'Microsoft.Insights/components@2020-02-02' = {
name: applicationInsightsName
location: location
kind: 'web'
properties: {
Application_Type: 'web'
WorkspaceResourceId: logAnalytics.id
}
}

resource storageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' = {
name: storageAccountName
location: location
sku: {
name: 'Standard_LRS'
}
kind: 'StorageV2'
properties: {
accessTier: 'Hot'
allowSharedKeyAccess: false
publicNetworkAccess: 'Enabled'
}
}

resource storageAccountName_default 'Microsoft.Storage/storageAccounts/blobServices@2023-01-01' = {
parent: storageAccount
name: 'default'
}

resource storageAccountName_default_deploymentStorageContainer 'Microsoft.Storage/storageAccounts/blobServices/containers@2023-01-01' = {
parent: storageAccountName_default
name: deploymentStorageContainerName
properties: {
publicAccess: 'None'
}
}

resource functionPlan 'Microsoft.Web/serverfarms@2023-12-01' = {
name: functionPlanName
location: location
kind: 'functionapp'
sku: {
tier: 'FlexConsumption'
name: 'FC1'
}
properties: {
reserved: true
}
}

resource functionApp 'Microsoft.Web/sites@2023-12-01' = {
name: functionAppName
location: location
kind: 'functionapp,linux'
identity: {
type: 'SystemAssigned'
}
properties: {
serverFarmId: functionPlan.id
functionAppConfig: {
deployment: {
storage: {
type: 'blobContainer'
value: 'concat(storageAccount.properties.primaryEndpoints.blob, deploymentStorageContainerName)'
authentication: {
type: 'SystemAssignedIdentity'
}
}
}
scaleAndConcurrency: {
maximumInstanceCount: maximumInstanceCount
instanceMemoryMB: instanceMemoryMB
}
runtime: {
name: functionAppRuntime
version: functionAppRuntimeVersion
}
}
siteConfig: {
appSettings: [
{
name: 'AzureWebJobsStorage__accountName'
value: storageAccountName
}
{
name: 'APPLICATIONINSIGHTS_CONNECTION_STRING'
value: applicationInsights.id
}
]
}
}
}

resource Microsoft_Storage_storageAccounts_storageAccountName_storageRoleDefinitionId 'Microsoft.Authorization/roleAssignments@2020-04-01-preview' = {
scope: storageAccount
name: guid(storageAccount.id, storageRoleDefinitionId)
properties: {
roleDefinitionId: resourceId('Microsoft.Authorization/roleDefinitions', storageRoleDefinitionId)
principalId: functionApp.identity.principalId
}
}
param deployTime string = utcNow('u')

var serviceSasToken = storageAccount.listServiceSas(
storageAccount.apiVersion, {
signedResource: 'b'
signedPermission: 'rl'
canonicalizedResource: string('/blob/${storageAccountName}/artifacts')
signedExpiry: dateTimeAdd(deployTime, 'PT1H')
}
).serviceSasToken

var artifactUrl = 'https://${storageAccountName}.blob.${environment().suffixes.storage}/artifacts/${deploymentStorageContainerName}?${serviceSasToken}'

resource functionOneDeploy 'Microsoft.Web/sites/extensions@2024-04-01' = {
parent: functionApp
name: 'onedeploy'
properties: {
packageUri: artifactUrl
remoteBuild: false
}
}
```
*Deployment succeeded:*

![enter image description here](https://i.imgur.com/LHrbgq9.png)

![enter image description here](https://i.imgur.com/xNp1xqX.png)

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Jahnavi

79498495

Date: 2025-03-10 15:44:56
Score: 4
Natty:
Report link

Sorry this is put as an answer as I can't comment due to the rep requirement, but I think you need to use the GraphQL API instead of REST.

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: beepyDev

79498462

Date: 2025-03-10 15:32:53
Score: 1
Natty:
Report link

Here's a single formula that works using BYROW.

=BYROW(A2:D4,LAMBDA(r,TEXTJOIN(",",1,MAP(UNIQUE(TOCOL(r)),LAMBDA(_,IF(COUNTIF(r,_)>1,COUNTIF(r,_),))))))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bricks96

79498460

Date: 2025-03-10 15:32:53
Score: 2.5
Natty:
Report link

The issue had nothing to do with using htmx incorrectly, I'm posting this as an answer in case someone has this bizzare issue as well.

There were 4 scripts sourced in the layout, among them htmx.js... Additionally, there was a small script sourced in the view from which the form is submitted. I use that to toggle a modal: <script src=~/js/modal.js" />.

Get this: This script prevented htmx.js (but not any of the other scripts) from loading. The fix? Changed it to <script src=~/js/modal.js"></script>

Since self-closing script tags are not allowed in html, everything up to the </script> of the htmx script was ignored. Somehow the modal.js script was completely intact and a bunch of missing closing tags for various divs and main were not an issue.

Reasons:
  • RegEx Blacklisted phrase (1.5): fix?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: dave

79498458

Date: 2025-03-10 15:31:53
Score: 0.5
Natty:
Report link

I figured it out. I just needed to replace @Data with @Getter and @Setter and I didn't needed to override equals(), hashcode() or toString().

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: chuchodal freder

79498453

Date: 2025-03-10 15:29:52
Score: 0.5
Natty:
Report link

To fix the issue, update your .attr() method to include:

.attr({
    zIndex: 4,
    fill: 'black', 
    stroke: 'white', 
    "stroke-width": 0.75
})

Demo:
https://jsfiddle.net/BlackLabel/ycxvfpoe/

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

79498447

Date: 2025-03-10 15:26:52
Score: 0.5
Natty:
Report link

It turns out the latest androidbrowserhelper-billing version(1.0.0-alpha11) only supports android billing version 6. The latest version is 7 and not compatible with the browser helper version.

I had to downgrade the android billing version to v6 and now it works.

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

79498446

Date: 2025-03-10 15:26:51
Score: 7 🚩
Natty:
Report link

I didn't find the ".git" folder on my project. I can see the ".gitattributes" and ".gitignore". please help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Teja Reddy

79498444

Date: 2025-03-10 15:25:51
Score: 3.5
Natty:
Report link

Found solution add

let sliderMinValue = document.getElementById(“slider-1”).min;

than you can use

percent1 = Math.round( 100 * ( ( sliderOne.value – sliderMinValue ) / ( sliderMaxValue – sliderMinValue ) ) ) – 0.5;
percent2 = Math.round( 100 * ( ( sliderTwo.value – sliderMinValue ) / ( sliderMaxValue – sliderMinValue ) ) ) + 0.5;

But there is another problem. It does not work on mobile. Do you have any advice please?

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Tomáš Rejka

79498442

Date: 2025-03-10 15:25:51
Score: 1.5
Natty:
Report link

When creating a new conda venv as per your explaination within PyCharm, you should set the type to conda and set the path to conda.exe , and not python.exe .

enter image description here

Alternatively, you can create a new conda environment with the Command Line and chose it in PyCharm with "select existing". Again, you have to set the type to Conda , specify the path to conda.exe and can then select the existing environment from the dropdown.

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: xArbisRox

79498439

Date: 2025-03-10 15:23:50
Score: 3
Natty:
Report link

you have to be more specific if I am going to help you with rofi, now whats rofi, you have to be more specific if that specificity is in a topic that I don't know what it is, is it like toffee?? i know toffee, that sounds yummy, but not specific!!!

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

79498437

Date: 2025-03-10 15:23:50
Score: 0.5
Natty:
Report link

NOTE : Most automated snapshots are stored in the cs-automated repository. If your domain encrypts data at rest, they're stored in the cs-automated-enc repository.

RUN these commands to restore automated snapshots taken by aws opensearch

just login into your aws elastic search domain
run command

  1. curl -XGET '_snapshot?pretty' ==> this will list all repos in my case it is cs-automated-enc where aws opensearch stores all automated snapshots

  2. curl -XGET 'domain-endpoint/_snapshot/repository-name/_all?pretty' ==> in repository-name put your repo name like in my case it is cs-automated-enc .

  3. curl -XPOST '_snapshot/repository-name/snapshot-name/_restore' ==> run this command to restore snapshot from repo.

  4. RESTORE a specific index from snapshot : 
    
  5. POST _snapshot/my_repository/my_snapshot_2099.05.06/_restore
    {
      "indices": "my-index,logs-my_app-default"
    }
    
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: atul bhandari