79359050

Date: 2025-01-15 16:49:46
Score: 1.5
Natty:
Report link

I think this UX has changed a time or three. Today, as you say, the output tab enables a view that contains both an output and a terminal sub-view. Makes sense right that the output tab includes output and something else!?!?

enter image description here

Anyway... I have no "reset location" that Justin George says hides the output sub-view. Or maybe they mean it shows it. IDK. Doesn't matter, that menu item is not there.

enter image description here

I find no way to fully hide the output sub-view. but... you can shrink it pretty small via the down arrow to the left of the sub-view title.

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: steve

79359039

Date: 2025-01-15 16:45:44
Score: 5
Natty:
Report link

I have the same problem:

This issue has started to appear in console my app(Uncaught TypeError: vb.X is not a constructor). page web :The page is blank console :Uncaught TypeError: vb.X is not a constructor

refresh page: When reloading the page, the application works fine, but when reloading, the problem appears.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: IT iswib

79359036

Date: 2025-01-15 16:45:44
Score: 3
Natty:
Report link

This happened to me just recently, and I found out that the issue was that nvim was set to launch as administrator. Launching VScode as admin solved the problem temporarily, and changing the nvim properties to not launch as admin solved the problem permanently.

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

79359028

Date: 2025-01-15 16:42:44
Score: 0.5
Natty:
Report link

In Chart.js, there are some limitations. While you can use a Scatter Chart with customizations, implementing this in HTML using the <table> tag is often easier.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohammad Rahimi

79359020

Date: 2025-01-15 16:40:43
Score: 2.5
Natty:
Report link

Make sure page caching is off (in edit mode on the page) update the page then go to Pages and clear then purge the page cache - worked for me.

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

79359019

Date: 2025-01-15 16:39:43
Score: 2
Natty:
Report link

Edit the "config" file located in the .git dir of your repo and find the line that begins with "url =" under "[remote "origin"]".

Change the line to this, "url = ssh://[email protected]:port#/remote/dir"

example: url = ssh://[email protected]:2222/srv/dir/files

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

79359017

Date: 2025-01-15 16:38:43
Score: 2.5
Natty:
Report link

Even tho this is very old, I had an request to work on some old php projects which required connection to cvs, the issue was on the server and i set all local permissions correct, still administrator needed to give proper permissions to my account to get rid of this issue.

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

79359016

Date: 2025-01-15 16:38:43
Score: 1
Natty:
Report link

Leaving open connections is the point of the pooling but leaving open transactions seems totally broken to me. The connection should be reset when it is returned to the pool: https://docs.sqlalchemy.org/en/20/core/pooling.html#reset-on-return

Maybe turn on pool logging as seen here: https://docs.sqlalchemy.org/en/20/core/pooling.html#logging-reset-on-return-events

Also I saw this but I'm not sure it affects you:

https://docs.sqlalchemy.org/en/20/dialects/mssql.html#mssql-reset-on-return

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

79359012

Date: 2025-01-15 16:36:42
Score: 4.5
Natty:
Report link

Youโ€™ve used the Expanded widget for your questions card, which means this section takes up all the available space. I noticed you mentioned, "Ensured that the Expanded widget is not causing the issue by checking the available space." Could you clarify how you verified this? When I wrapped your Padding widget (the child of Expanded) with a ColoredBox and added a color, it clearly shows that the Expanded widget is using the entire available space (refer to the screenshot; the green area represents the space occupied by Expanded).

Refer Screenshot

Removing the Expanded widget and both Positioned widgets will eliminate that space. However, you may need to adjust the code to maintain the desired "stack effect"

This screenshot shows the changes that occurred after removing the Expanded widget and both Positioned widgets.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you clarify how you
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Vishnu E R

79359008

Date: 2025-01-15 16:34:41
Score: 0.5
Natty:
Report link

Set the attribute to True to include the attribute name in the HTML output:

Input(type='file', webkitdirectory=True)

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

79359007

Date: 2025-01-15 16:34:41
Score: 2.5
Natty:
Report link

Checkly has some great documentation and example code as well related to this here. * I am no way shape or form affiliated with Checkly but I have found their documentation and examples extremely helpful. They have a YouTube channel as well that is very helpful.

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

79358997

Date: 2025-01-15 16:31:40
Score: 1.5
Natty:
Report link

Based on the first suggestion of @musicamante, I tried repainting everything. At the beginning of the painting code, I request a full repaint on hover:

if option.state & QtWidgets.QStyle.State_MouseOver:
    ind = QtCore.QModelIndex()
    self.model.dataChanged.emit(ind, ind)

This seems to suppress the flicker on mouse over. The plots stay in the over-painted state. This is sufficiently close to what I was going for.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @musicamante
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Graham

79358995

Date: 2025-01-15 16:31:40
Score: 3
Natty:
Report link

none of the above code worked for me

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

79358983

Date: 2025-01-15 16:27:40
Score: 3
Natty:
Report link

Temporary Internet Files (index.dat) gets updated even if you're not connected to the internet (so browser running, iexplore.exe not running either). What is this stupidity of micros**te constantly creating/updating files? It's all nonsense!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29212925

79358977

Date: 2025-01-15 16:25:39
Score: 0.5
Natty:
Report link

For Kafka Stream Applications:

KStream<String, Model> streamIn = streamsBuilder.stream(TOPIC_IN, Consumed.with(Serdes.String(), new JsonSerde<>(Model.class)));

Not

KStream<String, Model> streamIn = streamsBuilder.stream(TOPIC_IN, Consumed.with(Serdes.String(), new JsonSerde<Model>()));

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

79358974

Date: 2025-01-15 16:24:39
Score: 3
Natty:
Report link

I had same problem, and the resolution was to add

enable.metrics.push = false

setting.

In code this is most probably something like

props.put(ConsumerConfig.ENABLE_METRICS_PUSH_CONFIG, "false")

see also -> https://support.confluent.io/hc/en-us/articles/32375204677396-How-to-handle-The-node-does-not-support-GET-TELEMETRY-SUBSCRIPTIONS-in-Kafka-Client-logfiles

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

79358972

Date: 2025-01-15 16:23:36
Score: 6.5 ๐Ÿšฉ
Natty:
Report link

This video demonstrate how to resolve issue. https://youtu.be/RsL9JD1-G7g

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): This video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Crawler

79358971

Date: 2025-01-15 16:22:36
Score: 1.5
Natty:
Report link

This worked for me. Setting oAuth 1.0 and Consumer Key and Consumer Secret in postman....

enter image description here

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Shakil- The Coding monster

79358969

Date: 2025-01-15 16:22:36
Score: 2
Natty:
Report link

It's an intermittent issue and is reported on: Uncaught TypeError: vb.X is not a constructor. on it to let Google know you're also experiencing the same problem.

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

79358962

Date: 2025-01-15 16:19:35
Score: 4.5
Natty: 5
Report link

This was super helpful, thanks so much.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Celia Gaylard

79358946

Date: 2025-01-15 16:15:34
Score: 1
Natty:
Report link

I was facing the same issue but working on Ubuntu 21.04 with a virtual environment.

By deleting the local .venv-Folder rm -rf .venv,

re-creating it again with python3 -m venv .venv

and installing all packages again

.venv/bin/pip3 install -r requirements.txt

the issue was gone.

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

79358939

Date: 2025-01-15 16:13:33
Score: 2.5
Natty:
Report link

Be aware if you use SVG image Maybe the size of this is too large and causes this error The line that occurred this error is the view with that uses large vector image

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

79358938

Date: 2025-01-15 16:13:32
Score: 6 ๐Ÿšฉ
Natty: 4
Report link

So how did you resolve this? Did you need to get a new refresh token (reauthorize the app to get a new refresh token)

I am experiencing a similar issue but with Amazon Warehousing and Distribution API, I have been using other APIs without issue for some time. In general we are using the Python-Amazon-SP-API Library.

  1. Update the Developer profile for new role like AWD and wait for approval.
  2. Edit the apps to have the new role in my case AWD
  3. Get new resfresh token buy authorizing the app.

I am still getting the 'code':'Unauthorized' message.

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve this
  • RegEx Blacklisted phrase (1.5): resolve this?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Codersjunto

79358936

Date: 2025-01-15 16:12:32
Score: 3
Natty:
Report link

Same issue - across apps - I thought it was an out of date library initially, which seems incorrect.

I found info suggesting disabling Chrome V8 Runtime in the appscript settings but I am tied to a cloud project, and cannot test this.

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user29212675

79358933

Date: 2025-01-15 16:10:30
Score: 6 ๐Ÿšฉ
Natty:
Report link

You are not the only one. I am facing same problem.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mercer Website

79358925

Date: 2025-01-15 16:08:29
Score: 6.5 ๐Ÿšฉ
Natty: 6.5
Report link

have you found the solution? I am encountering same problem.

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found the solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Harsh Tyagi

79358923

Date: 2025-01-15 16:08:29
Score: 1
Natty:
Report link

Looks like it finally worked. I appended Twilio with .default

So

const twilioClient = Twilio.defualt(AccountSid, AuthToken);

This should be clarified in Twilio docs

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

79358916

Date: 2025-01-15 16:06:28
Score: 4.5
Natty:
Report link

Search: Remotely debug from a Docker container a Chromium instance running on Host, https://forums.docker.com/t/how-can-i-navigate-to-container-website-from-host-browser/25035

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

79358915

Date: 2025-01-15 16:04:27
Score: 2
Natty:
Report link

I got the answer or may be something which works fine for me. Let me explain what i wanted. I wanted to create a TableView with features of commiting the editing TableCell when focused is lost. I used @James_D this link to have my own custom TableCell : https://gist.github.com/james-d/be5bbd6255a4640a5357#file-editcell-java-L109

Also, I needed that user can input only values in a particular range say 100 to 500. I used JavaFX TextFormatter class for that. With the help of TextFormatter, I was able to filter user input so that only Integer or Float values are allowed. I was also able to put upper range limit (here 500) with the help of TextFormatter. The real issue came with lower range limit because you cannot predict users mind. Say, if user types "12" and our range is 100 - 500, then I cannot predict whether user will commit it or will type more. This was the real problem. Then after posting it on StackOverflow, James_D suggested to put the checking logic in commitEdit() method. I did it and it worked for me. Below is the code for Custom TableCell :-

class CustomTableCell<S, T> extends TableCell<S, T> {
    private final TextField textField = new TextField();
    private final StringConverter<T> converter;
    private final TextFormatter<T> textFormatter;
    
    int MIN_RANGE_VALUE = 100;
    int MAX_RANGE_VALUE = 500;
    int MAX_DIGITS = 3;
    
    public CustomTableCell(StringConverter<T> converter) {
        this.converter = converter;
        
        itemProperty().addListener((obsVal, oldItem, newItem) -> {
            if(newItem == null) {
                setText(null);
            } else {
                setText(converter.toString(newItem));    
            }
        });
        setGraphic(textField);    
        setContentDisplay(ContentDisplay.TEXT_ONLY);
        
        textFormatter = new TextFormatter<>(flowFilter);
                   
        textField.setTextFormatter(new TextFormatter<>(flowFilter));
        
        textField.setOnAction(event -> {
            System.out.println("textField setOnAction called....");
            commitEdit(this.converter.fromString(textField.getText()));
            
            
        });
        
        textField.focusedProperty().addListener((obsVal, wasFocused, isNowFocused) -> {
            if(!isNowFocused) {
                System.out.println("focused lost.....");   
                System.out.println("textField.getText() : " +textField.getText());
                commitEdit(this.converter.fromString(textField.getText()));
                
               
            }
        });
        
        textField.addEventFilter(KeyEvent.KEY_PRESSED, event -> {
            if(event.getCode() == KeyCode.ESCAPE) {
                textField.setText(converter.toString(getItem()));
                cancelEdit();
                event.consume();
            } else if(event.getCode() == KeyCode.RIGHT) {
                getTableView().getSelectionModel().selectRightCell();
                event.consume();
            } else if(event.getCode() == KeyCode.LEFT) {
                getTableView().getSelectionModel().selectLeftCell();
                event.consume();
            } else if(event.getCode() == KeyCode.UP) {
                getTableView().getSelectionModel().selectAboveCell();
                event.consume();
            } else if(event.getCode() == KeyCode.DOWN) {
                getTableView().getSelectionModel().selectBelowCell();
                event.consume();
            }
        });
    }
     
    
    UnaryOperator<Change> flowFilter = change -> {
        String controlNewText =  change.getControlNewText();
        String text = change.getText();
        
        System.out.println("controlNetText : "+controlNewText);
        System.out.println("text : "+text);
         
        if(change.getControlNewText().isEmpty()) {
            System.out.println("empty returned....");
             return change;
         } else if (controlNewText.matches("\\d*") && controlNewText.length() <= MAX_DIGITS) {
             int val = Integer.parseInt(controlNewText);
             if( val <= MAX_RANGE_VALUE) {
                 System.out.println("max min range returned...");
                 return change;
             } 
         }
        System.out.println("textFormatter null returned....");
        return null;
    };
    
    
    public static final StringConverter<String> IDENTITY_CONVERTER = new StringConverter<String>() {
        @Override
        public String toString(String object) {
           return object;
        }

        @Override
        public String fromString(String string) {
           return string;
        }
        
    };
    
    //Convenience method for creating an EditCell for a String value
    public static CustomTableCell<ReceipeDataModel, Number> createStringCustomTableCell() {
        return new CustomTableCell<ReceipeDataModel, Number>(new NumberStringConverter());
    }
    
    
    //set the text of TextField and display graphic
    @Override
    public void startEdit() {
        super.startEdit();
        textField.setText(converter.toString(getItem()));
        setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
        textField.requestFocus();
    }
    
    //revert to text display
    @Override
    public void cancelEdit() {
        super.cancelEdit();
        setContentDisplay(ContentDisplay.TEXT_ONLY);
    }
    
    //commits the edit. Update the property if possible and revert to text display
    @Override
    public void commitEdit(T item) {
        //below code for empty string and converter returns null
        if(item == null) {
            item = getItem();
        }
                    
        //below code for putting range limits
        if(item != null) {
            long val = (long)item;  
            System.out.println("inside min max range if.....");
            item = (val >= MIN_RANGE_VALUE && val <= MAX_RANGE_VALUE) ? item : getItem();
        }
                   
        //this block is necessary because by deafult mechanism return false for isEditng() method when focus is lost. 
        //By Default, Only when we click on same TableRow, does the lost focus commits, not when we click outside the tableRow
        if(item != null && ! isEditing() && !item.equals(getItem())) {
            TableView<S> table = getTableView();
            if(table != null) {
                TableColumn<S, T> col = getTableColumn();
                TablePosition<S, T> pos = new TablePosition<>(table, getIndex(), col);
                CellEditEvent<S, T> cellEditEvent = new CellEditEvent<>(table, pos, TableColumn.editCommitEvent(), item);
                Event.fireEvent(col, cellEditEvent);
            }
        }

        super.commitEdit(item);
        
        setContentDisplay(ContentDisplay.TEXT_ONLY);
    }
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): StackOverflow
  • Blacklisted phrase (0.5): I cannot
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @James_D
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: codekun

79358913

Date: 2025-01-15 16:03:27
Score: 3
Natty:
Report link

What is quirks mode?


"!DOCTYPE html": Defines the document type

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (1):
Posted by: Hamza El Manzari

79358904

Date: 2025-01-15 16:01:27
Score: 1
Natty:
Report link

To only disable some Intelephense check in code block there is now the instruction : /** @disregard [OPTIONAL CODE] [OPTIONAL DESCRIPTION] */

Explained here : https://github.com/bmewburn/vscode-intelephense/issues/568#issuecomment-1763662245

It's very useful when accessing json properties that are not covered by a Class ;-)

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

79358886

Date: 2025-01-15 15:56:25
Score: 4
Natty:
Report link

Rebuild your development build again

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ogunmokun Israel Ademola

79358878

Date: 2025-01-15 15:53:24
Score: 2.5
Natty:
Report link

Why don't you just declare html.light and html.dark and use js just to switch this classes?

setTheme(theme){
    if (theme == "dark") {
        document.querySelector("html").classList.remove("light");
        document.querySelector("html").classList.add("dark");
    } else {       
        document.querySelector("html").classList.remove("dark");
        document.querySelector("html").classList.add("light");
    }
}
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why don't you
  • Low reputation (0.5):
Posted by: Renรฉ Baudisch

79358876

Date: 2025-01-15 15:53:24
Score: 0.5
Natty:
Report link

Your proposed solution worked very well.

I added the following settings to my main.ts file:

import { bootstrapApplication } from "@angular/platform-browser";
import { AppComponent } from "./app/view/main/app.component";
import { importProvidersFrom } from "@angular/core";
import { ModalModule } from "ngx-bootstrap/modal";
import { provideRouter } from "@angular/router";
import { routes } from "./app/app.routes";

bootstrapApplication(AppComponent, {
  providers: [
    importProvidersFrom(ModalModule.forRoot()),
    provideRouter(routes)
  ],
})
.catch((err) => console.error(err));

With this, I was able to use my modals within standalone components just by adding them to the providers, as you can see in the code below:

listagem-posts.component.html

<!-- Botรฃo para abrir o modal -->
<button type="button" class="btn btn-primary" (click)="openModal(template)">Abrir Modal</button>

<!-- Template do modal -->
<ng-template #template>
  <div class="modal-header">
    <h4 class="modal-title">Tรญtulo do Modal</h4>
    <button type="button" class="btn-close" (click)="modalRef?.hide()" aria-label="Close"></button>
  </div>
  <div class="modal-body">
    Este รฉ um modal com NGX-Bootstrap.
  </div>
  <div class="modal-footer">
    <button type="button" class="btn btn-secondary" (click)="modalRef?.hide()">Fechar</button>
    <button type="button" class="btn btn-primary">Salvar mudanรงas</button>
  </div>
</ng-template>

listagem-posts.component.ts

import { Component, TemplateRef } from '@angular/core';
import  { NgbModal } from '@ng-bootstrap/ng-bootstrap';
import { BsModalService, BsModalRef } from 'ngx-bootstrap/modal';

@Component({
  selector: 'listagem-posts',
  standalone: true,
  providers: [NgbModal],
  templateUrl: './listagem-posts.component.html',
  styleUrl: './listagem-posts.component.css',
  imports: []
})
export class ListagemPostsComponent {

  constructor(private modalService: BsModalService
  ){}


  //------------------------------------------------------

  modalRef!: BsModalRef;

  openModal(template: TemplateRef<any>) {
     this.modalRef = this.modalService.show(template);
  }

  //------------------------------------------

  open(content: any) {
    // Lรณgica para abrir o modal
    console.log('teste');
  }

}

thanks again for the help! ^.^

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Anderson Machado

79358849

Date: 2025-01-15 15:45:22
Score: 2
Natty:
Report link

If you're looking for the best clothing websites that offer both trendy styles and affordability, Clothora.com is a fantastic choice! Clothora combines quality with affordability, offering a wide range of fashionable pieces for every occasion. Whether you're shopping for casual wear, formal outfits, or something unique, Clothora delivers exceptional options at budget-friendly prices.

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

79358848

Date: 2025-01-15 15:45:21
Score: 4
Natty: 5
Report link

This should be fixed in the future releases, see: https://issuetracker.google.com/issues/356171302

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

79358846

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

Have a look at

https://github.com/volodymyrprokopyuk/go-wallet

A guided design and implementation of a BIP-32 HD wallet in Go with a convenient CLI for easy experimentation using Nushell.

A guided design and implementation of a HD wallet in Go with a convenient CLI for easy experimentation using Nushell (or any other shell). The wallet CLI exposes an easy to use and experiment CLI tools to generate BIP-39 mnemonics for a HD wallet, derive extended private and public keys for a BIP-32 HD wallet, encode and decode derived keys into different formats e.g. xprv, xpub. The wallet CLI also provides tools to generate secp256k1 key pairs, ESDSA sign transactions and verify signatures. The wallet CLI exposes tools to encode and decode data using the bsae58 and base58check encoding, as well as encode an Ethereum address using the ERC-55 address encoding.

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

79358837

Date: 2025-01-15 15:41:19
Score: 4
Natty:
Report link

should become available in shap==0.47

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

79358827

Date: 2025-01-15 15:39:17
Score: 1.5
Natty:
Report link

I can force the composer to use my current PHP version set by phpbrew by using an alias. For example in my config.fish:

alias composer="php $(which composer)"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: natanhp

79358823

Date: 2025-01-15 15:38:17
Score: 2.5
Natty:
Report link

There is no way to by the api retrive only row fitting a criteria, you must first fetch all rows, and then manually filter them.

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

79358819

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

The issue was that there is a conflict in uv when using bind mounts. When removing the volumes from the docker-compose file, it worked. I also had to remove a python-version file from my directory. See https://github.com/astral-sh/uv/issues/10615 for more context.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kamagitheboilerman

79358818

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

I got this exception only for one out of several similar view models in my kotlin project. After researching and debugging for several hours I found the very surprising reason. The (super)package was named "new", i.e ".app.new.viewmodel". This makes Hilt crash with a very obscure exception. Since "new" is valid name, I got no errors neither from the IDE nor from the compiler.

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

79358811

Date: 2025-01-15 15:35:16
Score: 1
Natty:
Report link

import 'package:flutter/material.dart';

enum CustomTextFieldType {
  singleLineTextField,
  multiLineTextField,
  passwordField,
  searchField,
}

class CustomTextField extends StatelessWidget {
  final CustomTextFieldType type;
  final String? labelText;
  final TextEditingController? controller;
  final String? errorText;
  final IconData? prefixIcon;
  final IconData? suffixIcon;
  final bool obscureText;
  final Color? borderColor;
  final Color? labelColor;
  final Color? errorColor;
  final Color? textColor;
  final TextStyle? textStyle;
  final int? maxLines;
  final VoidCallback? onSuffixIconTap;
  final EdgeInsetsGeometry? padding;

  CustomTextField({
    required this.type,
    this.labelText,
    this.controller,
    this.errorText,
    this.prefixIcon,
    this.suffixIcon,
    this.obscureText = false,
    this.borderColor,
    this.labelColor,
    this.errorColor,
    this.textColor,
    this.textStyle,
    this.maxLines,
    this.onSuffixIconTap,
    this.padding,
  });

  @override
  Widget build(BuildContext context) {
    switch (type) {
      case CustomTextFieldType.singleLineTextField:
        return _buildSingleLineTextField(context);
      case CustomTextFieldType.multiLineTextField:
        return _buildMultiLineTextField(context);
      case CustomTextFieldType.passwordField:
        return _buildPasswordField(context);
      case CustomTextFieldType.searchField:
        return _buildSearchField(context);
      default:
        return _buildDefaultTextField(context);
    }
  }

  Widget _buildSingleLineTextField(BuildContext context) {
    return _buildTextField(context, maxLines: 1);
  }

  Widget _buildMultiLineTextField(BuildContext context) {
    return _buildTextField(context, maxLines: maxLines ?? 5);
  }

  Widget _buildPasswordField(BuildContext context) {
    return _buildTextField(context, obscureText: true);
  }

  Widget _buildSearchField(BuildContext context) {
    return _buildTextField(
      context,
      prefixIcon: prefixIcon ?? Icons.search,
      suffixIcon: suffixIcon,
      onSuffixIconTap: onSuffixIconTap,
    );
  }

  Widget _buildDefaultTextField(BuildContext context) {
    return _buildTextField(context);
  }

  Widget _buildTextField(
    BuildContext context, {
    int? maxLines,
    bool? obscureText,
    IconData? prefixIcon,
    IconData? suffixIcon,
    VoidCallback? onSuffixIconTap,
  }) {
    return Padding(
      padding: _getPadding(),
      child: TextField(
        controller: controller,
        obscureText: obscureText ?? this.obscureText,
        maxLines: maxLines ?? 1,
        style: _getTextStyle(),
        decoration: InputDecoration(
          labelText: labelText,
          labelStyle: TextStyle(color: _getLabelColor(context)),
          errorText: errorText,
          errorStyle: TextStyle(color: _getErrorColor(context)),
          prefixIcon: prefixIcon != null ? Icon(prefixIcon) : null,
          suffixIcon: suffixIcon != null
              ? GestureDetector(
                  onTap: onSuffixIconTap,
                  child: Icon(suffixIcon, color: _getErrorColor(context)),
                )
              : null,
          enabledBorder: _getBorder(context),
          focusedBorder: _getBorder(context),
          errorBorder: _getErrorBorder(context),
          focusedErrorBorder: _getErrorBorder(context),
        ),
      ),
    );
  }

  // Method to get the border with the specified color
  InputBorder _getBorder(BuildContext context) {
    return UnderlineInputBorder(
      borderSide: BorderSide(color: _getBorderColor(context)),
    );
  }

  // Method to get the error border with the specified color
  InputBorder _getErrorBorder(BuildContext context) {
    return UnderlineInputBorder(
      borderSide: BorderSide(color: _getErrorColor(context)),
    );
  }

  // Method to get the border color or a default value
  Color _getBorderColor(BuildContext context) {
    return borderColor ?? Theme.of(context).primaryColor;
  }

  // Method to get the label color or a default value
  Color _getLabelColor(BuildContext context) {
    return labelColor ?? Theme.of(context).primaryColor;
  }

  // Method to get the error color or a default value
  Color _getErrorColor(BuildContext context) {
    return errorColor ?? Colors.red;
  }

  // Method to get the text color or a default value
  Color _getTextColor(BuildContext context) {
    return textColor ?? Theme.of(context).primaryColor;
  }

  // Method to get the text style or a default style
  TextStyle _getTextStyle() {
    return textStyle ?? TextStyle(fontSize: 16, color: _getTextColor(context));
  }

  // Method to get the padding or a default value
  EdgeInsetsGeometry _getPadding() {
    return padding ?? EdgeInsets.all(8.0);
  }
}


class TextFieldExamples extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('TextField Examples')),
      body: Padding(
        padding: const EdgeInsets.all(16.0),
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.stretch,
          children: [
            CustomTextField(
              type: CustomTextFieldType.singleLineTextField,
              labelText: 'Single Line TextField',
              controller: TextEditingController(),
              borderColor: Colors.blue,
            ),
            SizedBox(height: 20),
            CustomTextField(
              type: CustomTextFieldType.multiLineTextField,
              labelText: 'Multi-line TextField',
              controller: TextEditingController(),
              maxLines: 4,
              borderColor: Colors.green,
            ),
            SizedBox(height: 20),
            CustomTextField(
              type: CustomTextFieldType.passwordField,
              labelText: 'Password Field',
              controller: TextEditingController(),
              borderColor: Colors.red,
              suffixIcon: Icons.visibility_off,
              onSuffixIconTap: () {
                print('Toggle Password Visibility');
              },
              obscureText: true,
            ),
            SizedBox(height: 20),
            CustomTextField(
              type: CustomTextFieldType.searchField,
              labelText: 'Search Field',
              controller: TextEditingController(),
              prefixIcon: Icons.search,
              suffixIcon: Icons.clear,
              onSuffixIconTap: () {
                print('Clear Search Field');
              },
              borderColor: Colors.orange,
            ),
          ],
        ),
      ),
    );
  }
}

Reasons:
  • RegEx Blacklisted phrase (1.5): fixIcon ??
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: shradha Khaire

79358803

Date: 2025-01-15 15:33:15
Score: 5.5
Natty:
Report link

The problem was that I used old properties (management.metrics.export.influx.). Current version is management.influx.metrics.export.. So, if you have similar problem, you should use either current properties or older version of Spring (2.3.0 or less)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have similar problem
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ะœะธั…ะฐะธะป ะ’ะพั€ะพะฑัŒะตะฒ

79358796

Date: 2025-01-15 15:30:15
Score: 1
Natty:
Report link

Disclaimer
I am assuming you are using the latest versions of the Python packages mentioned. At the time of writing, these are:

If this is not the case, please explicitly include the versions you are using so we can provide more accurate assistance.


To check if a document exists in the vector store based on its metadata, the .get() function is your best option.

Hereโ€™s a summary of how it works:

  1. Set the limit (k): This specifies the maximum number of results to retrieve.

  2. Use a where query: Utilize the Metadata Filtering feature provided by Chroma. As described in this documentation:

    "An optional where filter dictionary can be supplied to filter by the metadata associated with each document."

    Details on configuring the where filter are available here.

Once configured, you're all set. For example, the following snippet demonstrates the functionality:

existing_metadata = db.get(
    limit=1,
    where={"id": {"$eq": "ABC123"}}
)["metadatas"]

This code returns a list (limited to one element) containing the metadata of documents that match the where condition.

Below is a complete code example to illustrate how this works:

import os
from langchain_chroma import Chroma
from langchain.text_splitter import RecursiveCharacterTextSplitter
from langchain_openai.embeddings import AzureOpenAIEmbeddings
from dotenv import load_dotenv, find_dotenv

# Load environment variables
load_dotenv(find_dotenv(".env"), override=True)

# Prepare embeddings and the vector store
embeddings = AzureOpenAIEmbeddings(
    api_key=os.environ.get("AZURE_OPENAI_EMBEDDINGS_API_KEY"),
    api_version=os.environ.get("AZURE_OPENAI_EMBEDDINGS_VERSION"),
    azure_deployment=os.environ.get("AZURE_OPENAI_EMBEDDINGS_MODEL"),
    azure_endpoint=os.environ.get("AZURE_OPENAI_EMBEDDINGS_ENDPOINT")
)
db = Chroma(
    persist_directory=os.environ.get("CHROMA_PATH"),
    embedding_function=embeddings,
    collection_name="stackoverflow-help",
)

# Add documents to the vector store
text_splitter = RecursiveCharacterTextSplitter(
    chunk_size=int(os.environ["CHROMA_EMBEDDINGS_CHUNK_SIZE"]),
    chunk_overlap=int(os.environ["CHROMA_EMBEDDINGS_CHUNK_OVERLAP"])
)

documents = text_splitter.create_documents(["This is a test document for the Chroma database."])
for doc in documents:
    doc.metadata = {"id": "ABC123"}
db.add_documents(documents)

# Check if the document is in the vector store
existing_metadata = db.get(
    limit=1,
    where={"id": {"$eq": "ABC123"}}
)["metadatas"]
print(existing_metadata)

# Check for a document that is not in the vector store
non_existing_metadata = db.get(
    limit=1,
    where={"id": {"$eq": "XYZ123"}}
)["metadatas"]
print(non_existing_metadata)

When you run this code, the results will be as follows:

[{'id': 'ABC123'}]  # Output of print(existing_metadata)
[]  # Output of print(non_existing_metadata)
Reasons:
  • Blacklisted phrase (1): this document
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dvdr00t

79358794

Date: 2025-01-15 15:29:14
Score: 1
Natty:
Report link

Since I didn't see this variant in the other answers, this works in at least v5+

$dictionary = New-Object 'System.Collections.Generic.Dictionary[string,int]'

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

79358788

Date: 2025-01-15 15:28:13
Score: 9 ๐Ÿšฉ
Natty: 4
Report link

I found many more articles from people saying their Alfresco is not indexing file contents when the file upload is made using the REST API. Only files uploaded using the Share interface will get content indexed. Is it true? Can't we have API uploaded files content indexed ever?

Has anyone found a solution?

Reasons:
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): Has anyone found
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sergio Garcรญa Galรกn

79358784

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

The input of those fields is expected to be a JSON data structure or delimited text value that consists of the activity party ID values in GUID format. For more details on how to work with those fields, please refer to the documentation topic. In case that the ID might be different in the target system, you can leverage the Text Lookup feature. For CRM to CRM migration/integration, you can very much map the same field from the source to the destination.

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

79358777

Date: 2025-01-15 15:26:12
Score: 4
Natty:
Report link

The issue was solved by installing pandas packet

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

79358750

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

my problem was solved by importing RepositoryEnv

from pathlib import Path
from decouple import Config, RepositoryEnv

BASE_DIR = Path(__file__).resolve().parent.parent
config = Config(RepositoryEnv(".env"))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bohdan

79358738

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

This ended up working.
vnet_id

module.network.vnet_id[keys(var.vnets)[0]]

vnet_name

module.network.vnet_name[keys(var.vnets)[0]]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: NickP

79358728

Date: 2025-01-15 15:14:08
Score: 1
Natty:
Report link
if not camera.isOpened():
 
   print("Error:") 

else: 

   print("Success.") 

   for i in range(10): 
     ret, frame = camera.read() 

     if ret: 
      print("Success") 

      break 

     else: 

       print("Fail") 

    if not ret: 

       print("Fail") 

    else: 

       cv2.imshow("Captured Frame", frame) 

       cv2.waitKey(0)```
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: BSP

79358726

Date: 2025-01-15 15:14:07
Score: 4
Natty:
Report link

The only other answer here recommends using Flink Metrics reporter however that is for reporting Flinks internal metrics to Prometheus. You should use the Prometheus sink: https://nightlies.apache.org/flink/flink-docs-master/docs/connectors/datastream/prometheus/

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

79358724

Date: 2025-01-15 15:14:07
Score: 2.5
Natty:
Report link

Has the problem been solved๏ผŸI had the same problem

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

79358712

Date: 2025-01-15 15:11:06
Score: 5.5
Natty:
Report link

This looks similar to https://stackoverflow.com/a/62109869/26842213. Give that a try and see if it resolves your issue.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James Fredley

79358696

Date: 2025-01-15 15:07:05
Score: 1
Natty:
Report link

just to improve your graph

rund the script with

t = np.linspace(-np.pi/2, np.pi/2, 500)
v = -np.sin(t)

and with

t = np.linspace(-np.pi/2, np.pi/2, 500)
v = -np.sin(t)

and combine both plots

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

79358685

Date: 2025-01-15 15:04:04
Score: 1
Natty:
Report link

I was able to solve this by attaching the sectPr of the last section to the document instead of a paragraph.

    SectPr sectPr = factory.createSectPr();
    SectPr.Type sectPrType = factory.createSectPrType();
    sectPrType.setVal("nextPage");

    sectPr.setType(sectPrType);

    wordprocessingMLPackage.getMainDocumentPart().getJaxbElement().getBody().setSectPr(sectPr);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gopika Ravikumar

79358684

Date: 2025-01-15 15:02:04
Score: 0.5
Natty:
Report link

The one checked was so close to what I needed. Had to make a few changes. 1st I needed more than a month (6 years). Then I need to add the OPTION line at the bottom. This allowed me to join the sales date on this CTE.

declare @mindate datetime
declare @maxdate datetime
set @mindate = '2019-01-01' set @maxdate = '2022-06-17'
; WITH AllDateDOW AS (
        SELECT  DATEADD(day ,-(DAY(@mindate)-1),@mindate) as AllDATE, 
                DATENAME(dw, DATEADD(day, -(DAY(@mindate) - 1), @mindate)) as DOWDAY
        UNION ALL
        SELECT  DATEADD(day, 1, AllDATE),
                DATENAME(dw, DATEADD(dw, 1, AllDATE))
        FROM    AllDateDOW
        WHERE   DATEADD(day, 1, AllDATE) <= @maxdate
    )
    -- SELECT *     FROM AllDateDOW
OPTION (MAXRECURSION 2190) -- This needs to be after the Order By. 2190=6 Years --

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nathan Brick

79358672

Date: 2025-01-15 14:59:02
Score: 9 ๐Ÿšฉ
Natty: 5.5
Report link

did you find any way of getting count of reviews ?

Reasons:
  • RegEx Blacklisted phrase (3): did you find any
  • 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 find any
  • Low reputation (1):
Posted by: sai kaushik motukuri

79358670

Date: 2025-01-15 14:59:02
Score: 3
Natty:
Report link

@Durable Developer it worked for me too! Thank you! Can you explain why this change works? Reading in React Native docs https://reactnative.dev/docs/pressable#onpress I can see that the sequence of press-ish events it's this one: enter image description here

So I supposed that since onPress was provoking the bug and onPressOut was working, even onPressIn would have worked so I tried, but surprisingly onPressIn didn't work and provoked the bug, so I don't understand why only onPressOut works

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (2.5): Can you explain
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Durable
  • Low reputation (1):
Posted by: Federica Oltolina

79358669

Date: 2025-01-15 14:59:02
Score: 1
Natty:
Report link

I did encounter those known issues regarding the ordering of factors as mentioned by @mnel. I tried geom_path mentioned by @mnel and Matt Bannert, and it works beautifully!

for example, in df1, W, X, and Z are factors, Y is numerical. df1 is sorted by Z

ggplot(df1,aes(X,Y))+
  geom_path(alpha=0)+ # w/o this line, points are not plotted in their order in df1
  geom_jitter(aes(color=Z,fill=Z))+
  facet_wrap('W')
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @mnel
  • User mentioned (0): @mnel
  • Low reputation (0.5):
Posted by: blueskyddd

79358658

Date: 2025-01-15 14:54:01
Score: 1
Natty:
Report link

After throughly reviewing all involved settings, I was not being able to list labels using impersonation.

Turns out, Google has enabled an Api Explorer in the same Api reference webpage, so you can try the endpoint after a simple OAuth authentication.

After some trial and error, in my case the problem was I had to set

labels.list.useAdminAccess = true

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

79358653

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

I didn't see this answer, but it seems easy enough. My token expired. After generating a new token on Gitlab, I tried to commit the code with VS Code. I received an error message the first time. The second time I received the popup below asking for user name (which is the token name) and password (which is the token). If you are using VS Code for the first time, you may have to try to clone a repo twice in order to get the popup below.

git_credential_manager_popup

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ted M.

79358631

Date: 2025-01-15 14:45:59
Score: 0.5
Natty:
Report link

Your import statement is wrong as you capitalized the c in config. Change from decouple import Config to:

from decouple import config

See https://simpleisbetterthancomplex.com/2015/11/26/package-of-the-week-python-decouple.html

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

79358628

Date: 2025-01-15 14:44:59
Score: 1
Natty:
Report link

I found a solution. It seems like route groups work really well for my situation.

It's good to know that homepage of your project can be put in group, and pages.tsx files of page-folder and page-folder/[id] can also be in different groups

app
-(main)  -> MainLayout
--stories    
--create   
--profile 
--page.tsx (Homepage)
-sign-up    -> No layout
-sign-in    -> No layout
-stories/[id] -> StoryLayout
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Curry

79358625

Date: 2025-01-15 14:43:58
Score: 5
Natty: 5
Report link

I am currently working on a project using azure ad but i am facing some bugs, would you be kind enough to share your code so that i can copy a few things?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JayLingz

79358624

Date: 2025-01-15 14:43:58
Score: 0.5
Natty:
Report link

Think of it like having two small filing cabinets vs one large cabinet. Even with both perfectly organized, the smaller ones are faster because:

The tradeoff is maintaining multiple tables and the union view. But when you heavily filter on the sort key, the I/O and memory efficiency gains usually outweigh that overhead.

I've seen 2x performance improvements using this approach, especially with wide tables where queries only needed a subset of columns.

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

79358612

Date: 2025-01-15 14:39:57
Score: 2.5
Natty:
Report link

Speedof.me offers an speed test API: https://speedof.me/api

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

79358610

Date: 2025-01-15 14:39:57
Score: 2
Natty:
Report link

The 2nd is not preferable. A CTE is not required in this scenario.

see When to use Common Table Expression (CTE)

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

79358606

Date: 2025-01-15 14:37:56
Score: 1
Natty:
Report link

If you want to add all the assets in a folder (say "images" folder), you should add "/" at the end as below in pubspec.yaml.

  assets:
    - assets/images/
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MubarakZade

79358604

Date: 2025-01-15 14:36:56
Score: 3.5
Natty:
Report link

Clear Excluded Architectures: Runner>Runner>Architectures>Search: "Excluded Architectures"

Clear field "Multiple Values"

enter image description here

Good Coding! ๐Ÿ˜Ž๐Ÿ’™

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

79358603

Date: 2025-01-15 14:36:56
Score: 3.5
Natty:
Report link

i had to run chown www-data:www-data on the folder im writing into, didn't work first time for some reason

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

79358597

Date: 2025-01-15 14:35:55
Score: 4.5
Natty:
Report link

Indeed has some Grails Framework related positions listed currently. https://www.indeed.com/jobs?q=Grails+engineer

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

79358596

Date: 2025-01-15 14:35:55
Score: 2
Natty:
Report link

It have to help you: https://reflex.dev/docs/datatable-tutorial/add-styling/

theme = {
...
 "bgHeader": "blue",
...
}

rx.data_editor(
   data=...
   theme=theme,
)
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anatoliy Aksenov

79358584

Date: 2025-01-15 14:32:54
Score: 1.5
Natty:
Report link

I know this post is very old, but I can assure everyone that freeradius does NOT and will NOT work no matter how it's configured, I have tried for 3 months, and even a profession IT techie couldn't do it, as the setup instructions are not simplified.

EG what follows 'client' is it a name? IP address? Who knows, I've tried both, and it still throws an error, 'unable to resolve name to ip address'

What follows 'ipaddr'? is it the router/AP ip address or the server ip address? Who knows? I've tried both and the error log says something about an unknown client.

What other additions are there to place? Who knows? As the documentation is not simplified for stupid people like me.

There is NO example configuration files with comments on each line.

EG ipaddr is where you put the ip address of ...........

or a plain explanation of what to put after 'client', instead of just showing 'client network_device {' what network_device? printer, router, server, NAS? There's not enough simple explanations, and then people wonder why it doesn't work.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): ...........
  • Low reputation (1):
Posted by: Micheal Saunders

79358580

Date: 2025-01-15 14:31:54
Score: 0.5
Natty:
Report link

Dremio LISTAGG is a more limited function than SQL STRING_AGG. I had to find a workaround.

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

79358578

Date: 2025-01-15 14:30:49
Score: 7.5 ๐Ÿšฉ
Natty: 5
Report link

We are a software company with a popular image editing software and we have the same problems. It's really annoying because the antivirus doesn't give a lot of information about what's the threat exactly, so I was searching and found this open topic. Did you find more information about the cause of the detection ? our is : gen.variant.tedy.67xxxx ( it is not even displayed in full )

Reasons:
  • RegEx Blacklisted phrase (3): Did you find
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Angel Brace

79358577

Date: 2025-01-15 14:30:48
Score: 6 ๐Ÿšฉ
Natty: 6.5
Report link

I hope you get a solution for this. If yes can you please share with me, i am on same position i need to get the stoppedtask metric in CloudWatch to monitor the ecs task. thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2.5): can you please share
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ehsan ali

79358558

Date: 2025-01-15 14:25:46
Score: 2.5
Natty:
Report link

new ExpoTHREE.TextureLoader().load() is working for me

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

79358557

Date: 2025-01-15 14:25:46
Score: 2.5
Natty:
Report link

Maybe you have another "View" Container around the WebView? Then it shows a Blank Page

For example change Code like:

<View>
    <WebView
    javaScriptEnabled={true}
    originWhitelist={['*']}
    source={{html: htmlContent}}
    />
</View>

To:

<WebView
javaScriptEnabled={true}
originWhitelist={['*']}
source={{html: htmlContent}}
/>

if that doesnt fix it, maybe you can show a part of your code?

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

79358547

Date: 2025-01-15 14:22:45
Score: 1.5
Natty:
Report link
begin 
        apex_instance_admin.set_parameter(
            p_parameter => 'IMAGE_PREFIX',
            p_value     => 'https://static.oracle.com/cdn/apex/24.1.7/' );
        
        commit;
  end;

Used this and configured in Admin Services under Manage Instance

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

79358543

Date: 2025-01-15 14:21:45
Score: 3.5
Natty:
Report link

For those who may have the same problem in the future, here is the solution with only CSS.

.c-login__wrapper {
  -webkit-box-pack: unset;
  -webkit-box-align: unset;
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: space-around;
}

.login-positioner {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  background-color: green;
}

.login {
  background-color: red;
  margin: 0;
  width: 200px;
}

.marketing-wrapper {
  align-items: center;
  background-color: aqua;
  height: 100%;
  display: flex;
  flex-basis: 100%;
  justify-content: center;
}

.marketing-positioner {
  // margin: 0 auto;
  height: 371px;
  width: 355px;
  background-color: yellow;
}

And the working example https://codesandbox.io/p/sandbox/nervous-waterfall-gmgcvf?file=%2Fstyles.css%3A1%2C1-38%2C1

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same problem
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dariusz

79358531

Date: 2025-01-15 14:17:44
Score: 0.5
Natty:
Report link

I thought my problem was the referential equality since my signal is an object (as suggest by @JSON Derulo) , unfortunately I have implemented a custom equality function in the signal

filtersProd = signal(
    {source: '1', feedback: 'all'},
    {equal: (a, b) => {
        return a.feedback === b.feedback && a.source === b.source;
      }
    }
  );

but it still doesn't work.

I solved the issue separating the input value and the output event on the toggle button and updating the values of the object with the update method of the signal within the output handler.

FilterSourceFeedback html

<mat-button-toggle-group (valueChange)="feedbackHandler($event)" [value]="filters().feedback" hideSingleSelectionIndicator="true" name="feedback" aria-label="feedback rating">
    <mat-button-toggle value="all">all</mat-button-toggle>
    <mat-button-toggle value="4+">4+</mat-button-toggle>
    <mat-button-toggle value="3">3</mat-button-toggle>
    <mat-button-toggle value="1/2">1/2</mat-button-toggle>
</mat-button-toggle-group>

FilterSourceFeedback component

feedbackHandler(e: string) {
    const newFilters = {source: this.filters().source, feedback: e};
    this.filters.update(() => newFilters);
}

In this way the computed signal is updated every new selection of the feedback and consequently the result array.

Reasons:
  • Whitelisted phrase (-2): I solved
  • RegEx Blacklisted phrase (2): it still doesn't work
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @JSON
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: berno

79358530

Date: 2025-01-15 14:17:44
Score: 2.5
Natty:
Report link

The underline issue you're seeing in the emulator or browser might not appear on a real mobile device. It's a rendering difference between environments. Try testing your app on a physical device by installing the APK, and the issue should likely be gone.

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

79358529

Date: 2025-01-15 14:16:44
Score: 2.5
Natty:
Report link

make sure you are using 'modules\system\layers\base\com\microsoft\jdbc\main' folder

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

79358518

Date: 2025-01-15 14:13:43
Score: 3
Natty:
Report link

I have submitted a JENKINS-75122 improvement request, please vote it up or contribute! Meanwhile, it is achievable via customizable-header plugin.

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

79358492

Date: 2025-01-15 14:02:41
Score: 1
Natty:
Report link

Could you check below configuration,

Check for FodyWeavers.xml: โ€ข Ensure that a FodyWeavers.xml file exists in the root directory of each project. โ€ข This file should include the following configuration:

<Weavers> <PropertyChanging /> </Weavers>

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

79358486

Date: 2025-01-15 14:01:40
Score: 0.5
Natty:
Report link

The only chance to ingegrate it, is to buy a licence for MPLABยฎ Analysis tool.

It supports all Microchip MCU, MPU and CEC devices and offers a code coverage feature and a Motor Industry Software Reliability Association (MISRAยฎ) check in the IDE.

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

79358477

Date: 2025-01-15 13:59:40
Score: 1.5
Natty:
Report link

az identity list-resources --resource-group <ResourceGroupName> --name <ManagedIdentityName> will return a list of resources associated with the managed identity, or empty if there are none

https://learn.microsoft.com/en-us/entra/identity/managed-identities-azure-resources/how-to-view-associated-resources-for-an-identity#command-line-interface

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

79358475

Date: 2025-01-15 13:58:39
Score: 0.5
Natty:
Report link

Remove scrollPage from the dependency array since you want to scroll when the page loads

useEffect(() => {
  scrollPage.current?.scrollIntoView({ behavior: "smooth", block: "end" });
}, []);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MoBadraan

79358467

Date: 2025-01-15 13:53:37
Score: 1
Natty:
Report link

With the rapid advancement of technology, the demand for high-quality displays is growing rapidly. AUO TFT LCD displays, which are used in a wide range of applications from smartphones to industrial equipment, have become a key component of modern visual technology. As an authorized distributor of AUO TFT LCD displays, SZDflogwin Technology provides advanced and customized display solutions for various industries.

Why Choose AUO TFT LCD Displays?

  1. Superior Display Quality: AUO TFT LCDs offer vibrant colors, sharp visuals, and high resolution.
  2. Wide Range of Sizes and Features: Available in various sizes and specifications to meet diverse requirements.
  3. Customization: Custom touch panels with logo integration are provided for tailored solutions.
  4. Energy Efficiency: Equipped with power-saving technology, ensuring energy-efficient performance.
  5. Reliability and Durability: Designed to perform consistently in harsh environments.

Applications:

AUO TFT LCD displays are widely used across various industries, including:

Services by SZDflogwin Technology:

SZDflogwin Technology offers customized display solutions, consultation, logo integration, and after-sales support to meet clients' unique needs.

The Future of Display Technology:

With advancements in flexible displays, higher resolution, and improved energy efficiency, TFT LCD technology will continue to evolve. SZDflogwin Technology is committed to staying ahead of these trends and providing clients with the latest innovations.

Partner with SZDflogwin Technology:

SZDflogwin Technology is your trusted partner for high-quality and customized display solutions tailored to your requirements.
Visit our website: szdflogwin.com to learn more.

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

79358464

Date: 2025-01-15 13:52:37
Score: 3
Natty:
Report link

Check the routing and the .htaccess code you have added properly.

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

79358459

Date: 2025-01-15 13:51:37
Score: 3.5
Natty:
Report link

do you explicitly indicate it in the resources?

resources:
  repositories:
  - repository: R2
    type: git
    name: R2
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Alexey Kipnis

79358452

Date: 2025-01-15 13:48:35
Score: 8 ๐Ÿšฉ
Natty:
Report link

Hey did anyone found a solution for the problem, I stumbled upon it 5y later and it seems like this is still an issue it seems like you cannot register 2 validators

Reasons:
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): did anyone found a solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ZambosSs1

79358449

Date: 2025-01-15 13:48:34
Score: 2
Natty:
Report link

I know, this topic is older, but i was facing this problem yesterday and this helped me:

git config --global http.postBuffer 15728640

Source: https://docs.hyperlane.co/git/common-git-problems/

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

79358448

Date: 2025-01-15 13:47:34
Score: 0.5
Natty:
Report link

The below is what I eventually used to fix it:

microdnf install -y dnf oracle-epel-release-el9
dnf -y install 'dnf-command(config-manager)'
dnf config-manager --enable ol9_codeready_builder

Initially, I was just running microdnf install -y epel-release but being more specific seemed to work. I also switched to using dnf instead of microdnf, though I don't think that made much difference.

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

79358447

Date: 2025-01-15 13:47:34
Score: 0.5
Natty:
Report link

in your Specialization.php Controller add this line:

echo '<pre>';print_r($data);echo '</pre>';die;

right above this line:

// Load page components

Now, reload controller and you will see all of the data... Look on the page for your arrays: $xValuesJobs and $xValuesJobs

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

79358441

Date: 2025-01-15 13:46:32
Score: 8 ๐Ÿšฉ
Natty:
Report link

I would like to ask you what you are expecting to see, a particular date or the timestamp of the video. Could you explain that to me? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could you explain
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Emiliano A. Billi

79358438

Date: 2025-01-15 13:44:32
Score: 1
Natty:
Report link

Facing same type of issues and the fixes above are not helping:

Launching lib\main.dart on sdk gphone64 x86 64 in debug mode... Running Gradle task 'assembleDebug'... e: C:/Users/2000n/.gradle/caches/transforms-3/bd2d249c16b1bdaf35102b1c1dfeb30b/transformed/jetified-firebase-auth-23.1.0-api.jar!/META-INF/java.com.google.android.gmscore.integ.client.firebase-auth-api_firebase-auth-api.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.9999, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.common_common_ktx.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.common_logger.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.enterprise.android_impl.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.enterprise.internal.release.com.google.android.recaptcha.internal_release.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.enterprise.internal_impl.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.enterprise.internal_internal.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.enterprise.native_impl.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.enterprise.public_public.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.enterprise_enterprise.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.metricscollection_metricscollection.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/java.com.google.android.libraries.abuse.recaptcha.network_network.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/recaptcha.proto.mobile_allowlist_kt_proto_lite.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/recaptcha.proto.mobile_enterprise_sdk_kt_proto_lite.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/recaptcha.proto.mobile_mobile_reload_kt_proto_lite.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/recaptcha.proto.mobile_signal_collection_payload_kt_proto_lite.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/recaptcha.proto.mobile_webview_sdk_kt_proto_lite.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/third_party.java_src.protobuf.current.java.com.google.protobuf.kotlin_only_for_use_in_proto_generated_code_its_generator_and_tests.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: C:/Users/2000n/.gradle/caches/transforms-3/d13b60563cdac693f289f05d4426d38e/transformed/jetified-recaptcha-18.5.1-api.jar!/META-INF/third_party.java_src.protobuf.current.java.com.google.protobuf.kotlin_shared_runtime.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1.

FAILURE: Build failed with an exception.

A failure occurred while executing org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction Compilation error. See log for more details

Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

BUILD FAILED in 52s

โ”Œโ”€ Flutter Fix โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ [!] Your project requires a newer version of the Kotlin Gradle plugin. โ”‚ โ”‚ Find the latest version on https://kotlinlang.org/docs/releases.html#release-details, then โ”‚ โ”‚ update C:\Users\2000n\StudioProjects\caption_generator\android\build.gradle: โ”‚ โ”‚ ext.kotlin_version = '' โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ Error: Gradle task assembleDebug failed with exit code 1

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
  • Filler text (0): โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
  • Low reputation (1):
Posted by: Sandeep Chaudhury

79358436

Date: 2025-01-15 13:43:31
Score: 2.5
Natty:
Report link

If youโ€™re using TypeScript, you also need to update the types.

npm install --save-exact @types/react@^19.0.0 @types/react-dom@^19.0.0

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