79578912

Date: 2025-04-17 09:32:25
Score: 1.5
Natty:
Report link

After two days of searching and reseach, I fould a way to run my crons. I have just create a new wp-config.php file and copy/paste the info from the old one.. I don't know what exactly the problem was but my issue was finally solved.. so simple

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

79578903

Date: 2025-04-17 09:27:23
Score: 4
Natty:
Report link

Oh , i got the same problem, where paid agreement was not active.Spent 2 weeks figuring it out

Reasons:
  • Blacklisted phrase (1): i got the same problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sadig

79578901

Date: 2025-04-17 09:26:23
Score: 2
Natty:
Report link

Don't want to necropost but the original (marked) answer from user6432984 generates errors when there are named ranges in other sheets (On Error Resume Next simply moves to the statement after "Then", as per https://stackoverflow.com/a/40552264, which results the said ranges to be returned as part of the intersection, which is obviously wrong). In addition, VBA returns a bunch of internal names (beginning with "_xl") in certain scenarios which are a distraction. I have modified the original answer to this:

Function getRangeNames(Target As Range)
    Dim n As Name
    Dim s As String
    Dim intersection As Range
    For Each n In ThisWorkbook.Names
        If Left(n.Name, 3) <> "_xl" Then
            On Error Resume Next
            Set intersection = Intersect(Target, n.RefersToRange)
            On Error GoTo 0
            If Not intersection Is Nothing Then
                s = s & n.Name & ", "
            End If
        End If
    Next n
    
    getRangeNames = Left(s, Len(s) - 2)
End Function
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): user6432984
  • Low reputation (1):
Posted by: Detabonator

79578888

Date: 2025-04-17 09:19:21
Score: 0.5
Natty:
Report link

The Qt allow for flexible workflow for developing application with internationalization support since a lot depends on nature of the project and team dynamics.

The only extra call needed in CMakeList.txt is qt_add_translations which will add build targets update_translations (updates content of *.ts files for sources) and *release_translations (*generates *.qm files). How you will use those targets is up to you. Some may would like to add them to default build but please notice that in most cases it's not necessary. You need to make decision based on needs of your project and your team.

Alternatively to calling qt_add_translations you can choose to initialize internationalization using qt_standard_project_setup. Again build targets are produced for you and you decide on the workflow.

Here is an example of one of many of possible workflows:
1. Code is being developed and tested using default cmake build target (all)
2. If there were some changes to strings for translations you can update ts files by running build target update_translations How frequent will you do it is totally up to you e.g. you can do it just once, before doing the translations
3. Whenever translations (*.ts files) were updated you can generate *.qm files by running build target release_translations. Subsequent build of application will use updated files assuming application has default settings (*.qm files being included in application resources).

If you are using Qt Creator as your IDE you can simply switch build targets for cmake with few mouse clicks - you need to open details of build step (Projects view) and select/deselect desired targets on list.

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

79578882

Date: 2025-04-17 09:17:21
Score: 2.5
Natty:
Report link

Phone Authentication:
If you want to go with flutter then https://pub.dev/packages/firebase_phone_auth_handler is the good one. You can follow the given sample.

Let me know if you find any issue while integrating this.****

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

79578879

Date: 2025-04-17 09:15:19
Score: 4.5
Natty:
Report link

you can set stickyHeaderIndices prop for the ScrollView component.(DOC: https://reactnative.dev/docs/scrollview)

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

79578876

Date: 2025-04-17 09:12:18
Score: 2.5
Natty:
Report link

What about using a SortedDictionary<string, uint> to sort using a custom comparer?

Proposed code:

public static ReadOnlyDictionary<string, uint> GetWordCountDictionary(string stringToCount)
{
    Dictionary<string, uint> wordDictionary = new Dictionary<string, uint>();

    //Rest of the method here that is not relevant

    // Custom comparer can be created to order differently, instead of `StringComparer.InvariantCultureIgnoreCase`
    var sortedDictionary = new SortedDictionary<string, uint>(wordDictionary, StringComparer.InvariantCultureIgnoreCase); 

    var result = new ReadOnlyDictionary<string, uint>(sortedDictionary);

    return result;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Alexandru Chirita

79578867

Date: 2025-04-17 09:09:17
Score: 1
Natty:
Report link

By adding

{
  ...
  "converters": "tinyint-one-to-boolean,jdbc-sink,duration-converter",
  "tinyint-one-to-boolean.type": "io.debezium.connector.binlog.converters.TinyIntOneToBooleanConverter",
  "tinyint-one-to-boolean.length.checker": "false",
  "jdbc-sink.type": "io.debezium.connector.binlog.converters.JdbcSinkDataTypesConverter",
  "tinyint-one-to-boolean.selector": "my_database.my_table.my_column,my_database.my_table.other_column",
  "jdbc-sink.selector.boolean": "my_database.my_table.my_column,my_database.my_table.other_column",
  ...
}

to my source connector config I was able to replicate the tinyint as boolean in PostgreSQL.

see also https://debezium.io/documentation/reference/stable/connectors/mysql.html#_tinyint1_to_boolean

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

79578864

Date: 2025-04-17 09:05:16
Score: 0.5
Natty:
Report link

Android 15+ example

enableEdgeToEdge(
    statusBarStyle = SystemBarStyle(),
    navigationBarStyle = SystemBarStyle()
)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: georgehardcore

79578863

Date: 2025-04-17 09:04:16
Score: 3.5
Natty:
Report link
from pptx import Presentation
from pptx.util import Inches, Pt
from pptx.dml.color import RGBColor

prs = Presentation()

title_font_size = Pt(40)
content_font_size = Pt(24)
minimal_color = RGBColor(101, 67, 33)  # Café oscuro

def add_slide(title, content_lines):
    slide_layout = prs.slide_layouts[5]
    slide = prs.slides.add_slide(slide_layout)

    title_shape = slide.shapes.add_textbox(Inches(0.5), Inches(0.3), Inches(9), Inches(1))
    title_frame = title_shape.text_frame
    p = title_frame.paragraphs[0]
    p.text = title
    p.font.size = title_font_size
    p.font.bold = True
    p.font.color.rgb = minimal_color

    content_shape = slide.shapes.add_textbox(Inches(0.8), Inches(1.5), Inches(8.5), Inches(5))
    text_frame = content_shape.text_frame
    for line in content_lines:
        p = text_frame.add_paragraph()
        p.text = line
        p.font.size = content_font_size
        p.font.color.rgb = RGBColor(60, 42, 33)

# Portada
slide_layout = prs.slide_layouts[0]
slide = prs.slides.add_slide(slide_layout)
slide.shapes.title.text = "El Derecho como objeto teórico y la experiencia jurídica"
slide.placeholders[1].text = "Erika Brahona\nTeoría del Derecho – Unidad I\nFecha: Abril 2025"

# Diapositivas de contenido
add_slide("Objetivo de la exposición", [
    "Profundizar en los aspectos éticos y legales que conforman el Derecho",
    "como objeto teórico y la experiencia jurídica.",
    "Identificar su dimensión filosófica, normativa y práctica."
])
add_slide("¿Qué es el Derecho como objeto teórico?", [
    "• Es una construcción filosófica y conceptual.",
    "• Estudia qué es el Derecho, cómo se justifica y cuál es su función.",
    "• Analiza principios y valores jurídicos más allá de las leyes."
])
add_slide("Corrientes teóricas del Derecho", [
    "• Iusnaturalismo: Derecho basado en principios morales universales.",
    "• Positivismo jurídico: El Derecho son las normas impuestas por el Estado.",
    "• Realismo jurídico: Se enfoca en la aplicación práctica del Derecho."
])
add_slide("¿Qué es la experiencia jurídica?", [
    "• Es el contacto real del individuo con el Derecho.",
    "• Incluye juicios, procesos, trámites legales y decisiones judiciales.",
    "• Representa cómo se vive y se percibe el Derecho en la sociedad."
])
add_slide("Dimensión ética del Derecho", [
    "• Regula la conducta humana, involucrando valores fundamentales.",
    "• Justicia, equidad y libertad son bases esenciales.",
    "• La ética ayuda a evaluar la validez moral de las normas."
])
add_slide("Legalidad vs Ética", [
    "• No todo lo legal es ético, y no todo lo ético es legal.",
    "• Ejemplos: aborto, pena de muerte, derechos LGBTQ+.",
    "• El Derecho debe equilibrar la legalidad con la moral social."
])
add_slide("Función social del Derecho", [
    "• Ordenar la convivencia social.",
    "• Resolver conflictos y proteger derechos.",
    "• Promover cambios sociales desde una base justa."
])
add_slide("Crítica y reflexión", [
    "• ¿Las leyes reflejan los valores actuales?",
    "• ¿Qué pasa cuando el Derecho discrimina o no responde?",
    "• La experiencia jurídica permite mejorar el sistema legal desde la realidad."
])
add_slide("Conclusión", [
    "• El Derecho es teoría y práctica con una dimensión ética.",
    "• Reflexionar sobre él permite mayor compromiso con la justicia.",
    "• Necesitamos un Derecho justo, accesible y humano."
])

# Guardar archivo
prs.save("erikabrahona-taller1.pptx")
Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (1): cómo
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Erika Elizabeth

79578857

Date: 2025-04-17 08:59:15
Score: 3.5
Natty:
Report link

Hello I have 6 sheets in my file with windows media player in them. How to set all to not autostart each time when I open the file? I try you suggest, but nothing happen.

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

79578847

Date: 2025-04-17 08:55:13
Score: 2
Natty:
Report link

French native speaker here.

Please see https://xml.insee.fr/schema/commun.html#ChaineFrancaisOfficielMajuscule_stype and https://www.lalanguefrancaise.com/articles/alphabet-francais#liste-des-lettres-de-l-alphabet-en-francais.

The regex you are looking for is :

/^[a-zäàâçéèêëîïôöûùüÿæœ .-]*$/i
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michel Diemer

79578838

Date: 2025-04-17 08:52:12
Score: 1
Natty:
Report link

The Wikipedia page for the R language has a section on version names that is kept up and has references to the comic strip that the release code name comes from https://en.wikipedia.org/wiki/R_(programming_language)#Version_names

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

79578835

Date: 2025-04-17 08:50:12
Score: 3
Natty:
Report link

Getting the same error since 09.04 and guess what, there was an Office update on 08.04 https://learn.microsoft.com/de-de/officeupdates/current-channel
Please check your working PC for the build number: Version 2503 (Build 18623.20178) doesn´t work anymore.

For me, the query update works fine, excel also saves everything with:
ThisWorkbook.Save added to VBA before Application.Quit

so I force it by killing excel after my script.

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): Getting the same error
  • Low reputation (1):
Posted by: Serge Firebirth Neufeld

79578831

Date: 2025-04-17 08:47:10
Score: 4
Natty:
Report link

Just change the version of Python

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

79578830

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

The behavior for me on Windows is

worker start
main exiting

on both 3.13 and 3.12. (Which is expected, and I suppose what you want)

Although, in response to your questions

  1. Your specific case does seem weird, but the specification of the abstract event loop doesn't guarantee any order in how switching between tasks are done

  2. I don't think so; the idea of the async await design is that you wouldn't (need to) care about how concurrent tasks are scheduled. You need to await an awaitable to get its result (make sure it runs to completion). In general, why would you want the behavior you described anyway? Usual event-loop implementations will run tasks "asap" anyway.

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

79578825

Date: 2025-04-17 08:44:09
Score: 2
Natty:
Report link

the issue was the model. just changed it to

model: openai('gpt-4o')
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Erik Metz

79578814

Date: 2025-04-17 08:40:08
Score: 2
Natty:
Report link

The javascript equivalent of @sibu's correct answer is:

function submitForm(button) {
  let form = button.closest("form");
  if (form) form.submit();
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @sibu's
  • Low reputation (0.5):
Posted by: RiaanP

79578811

Date: 2025-04-17 08:38:08
Score: 0.5
Natty:
Report link

I don't trust Dir$ in this case, I assume it isn't update-safe. The folder is changed while reading it.

Can you get all *.BAT files first, e.g. read them into an array or List, and then call each of them?

Example:

Dim filenames List As String
fileName$ = Dir$(pathName$, 0)

Do Until fileName$ = ""
  filenames(filename$)= filename$
  fileName$ = Dir$()
Loop
ForAll f in filenames
   ...
End ForAll
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: D.Bugger

79578796

Date: 2025-04-17 08:31:05
Score: 1
Natty:
Report link

From changing this generator client { provider = "prisma-client-js" output = "../generated/prisma" } to this generator client { provider = "prisma-client-js" output = "../node_modules/.prisma/client" } solved my problem in nestjs.

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

79578792

Date: 2025-04-17 08:28:04
Score: 1
Natty:
Report link

I'd like for you to consider hybrid tables as a potential solution. They are designed for higher concurrent DML workloads than standard tables, potentially resolving queuing or abortion issues.

Important Considerations:

Refer to official Snowflake documentation for detailed information on hybrid tables.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ziv Foox

79578790

Date: 2025-04-17 08:26:03
Score: 1
Natty:
Report link

you need to add

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <version>${spring.boot.version}</version>
</dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Londoner

79578775

Date: 2025-04-17 08:14:59
Score: 4
Natty: 4
Report link

You have to implement this yourself. If you use Python, you can take these inference requests as an example: https://github.com/vllm-project/vllm/blob/main/benchmarks/backend_request_func.py

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

79578774

Date: 2025-04-17 08:13:59
Score: 0.5
Natty:
Report link

Never mind, I found an easy way to adapt this using multiple instances of react-i18next from this GitHub issue. Guess I'm overthinking it.

Just create a global instance and another instance, each of which loads different translations. Then wrap the global app with <I18NextProvider i18n={globalInstance} /> and use the other instance in the child component, either wrap the component with the same I18NextProvider or using the hook const { t } = useTranslation('banner', { i18n: childInstance });. Note that you should be aware of the namespace, as they load from different files.

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

79578763

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

If you have cPanel set the timezone in PHP settings.

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

79578759

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

For those running into this problem while building a Flutter project for Android: I've resolved it by running flutter clean.

After cleaning the build assets the building process worked.

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

79578756

Date: 2025-04-17 08:00:55
Score: 3
Natty:
Report link

Thanks to engineersmnky - I tried it without getting the config from the json and pasted the strings directly to the imap connection. I'm getting still the same error, so net/imap is incompatible with ractors.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Berti92

79578737

Date: 2025-04-17 07:47:52
Score: 3
Natty:
Report link

Cross-check if the id is a string when the API expects a number, and ensure the product object sent in PUT doesn’t include extra or mismatched fields like id.

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

79578727

Date: 2025-04-17 07:43:51
Score: 1
Natty:
Report link

One instruction:

         or    %ah,%al                 ;set zero flag if either byte was zero
         jz    oneofthemwaszero        ;one of the bytes was zero

( since no one was counting the jz that would likely follow. )

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

79578726

Date: 2025-04-17 07:42:50
Score: 0.5
Natty:
Report link

Your best bet would still be MD5, or hash() but with a few changes to the strategy.

If you can manage nulls and empty strings (and zeroes), then perhaps MD5 could be the most feasible. But it requires some human intervention to set the data right.

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

79578722

Date: 2025-04-17 07:40:49
Score: 8.5 🚩
Natty: 5.5
Report link

| Hi, did you found a solution or any other work-around ?

Reasons:
  • RegEx Blacklisted phrase (3): did you found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Corentin

79578716

Date: 2025-04-17 07:35:47
Score: 1
Natty:
Report link

Like user2357112's, but fixing the end element is simpler:

import collections
import itertools

def restricted_combinations(elements, sublist_length, combination_length):
    pool = collections.deque(maxlen=sublist_length-1)
    for elem in elements:
        for head in itertools.combinations(pool, combination_length - 1):
            yield (*head, elem)
        pool.append(elem)

Attempt This Online! (includes testing)

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

79578712

Date: 2025-04-17 07:31:45
Score: 7
Natty: 7.5
Report link

how do i deploy python static graphic in sent my api?

Reasons:
  • Blacklisted phrase (1): how do i
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how do i
  • Low reputation (1):
Posted by: Bilguun Monkhbat

79578709

Date: 2025-04-17 07:30:44
Score: 0.5
Natty:
Report link

hello,I see that you are asking about using Puppeteer and FlareSolver to bypass Cloudflare. In AI training, efficient data capture is crucial. However, many developers often encounter problems such as IP blocking, access restrictions, and rate control, which affect data collection efficiency.

Unlimited traffic IP proxy can perfectly solve these pain points: ✅ Break through anti-crawling restrictions - automatically switch IP to avoid being blocked ✅ Global data coverage - support multi-region IP to obtain accurate regional data ✅ 7×24 hours stable collection - unlimited traffic, long-term tasks worry-free ✅ Improve collection speed - multiple IP concurrency, accelerate data acquisition

We provide highly anonymous and highly available proxy services, especially suitable for large-scale AI data capture. If you are looking for a stable proxy solution, please feel free to communicate!

Residential proxy first purchase special 5GB discount 45%

We’d love to let you try it out. Here’s a free trial link http://www.piaproxy.com/?co=zai&ck=?03 to get started.

Good luck with your work! PIA Team [email protected]

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

79578706

Date: 2025-04-17 07:26:43
Score: 2
Natty:
Report link

It looks like the issue may be related to resource utilization in the Istio Ingress Gateway pod. Check CPU and memory usage when the problem occurs, and increase the resource limits if necessary.

To avoid a single point of failure, always maintain a minimum of two Ingress Gateway pods.

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

79578703

Date: 2025-04-17 07:24:42
Score: 1
Natty:
Report link

I got the same error when using yapf and resolved it by explicitly setting the interpreter path (i.e., the path to the Python executable) through the Settings panel or by modifying settings.json:

"yapf.interpreter": [
    "/usr/bin/python"  // Your python path
]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mryo

79578699

Date: 2025-04-17 07:23:42
Score: 3
Natty:
Report link

for me this helped:

export GIT_ALLOC_LIMIT=750m

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

79578694

Date: 2025-04-17 07:21:40
Score: 5.5
Natty: 4.5
Report link

@yudhiesh You sir, save me hours of looking for the answer for this one.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @yudhiesh
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Khoa Lê

79578675

Date: 2025-04-17 07:11:38
Score: 0.5
Natty:
Report link

You can full_join a tibble of columns with only NAs:

library(tidyverse)

mtcars %>%
  as_tibble() %>% 
  full_join(tibble(mpg = NA, topspeed = NA)

# or if want to have all columns of another tibble
mtcars |> 
  select(cyl) |> 
  full_join(mtcars |> filter(FALSE))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Benjamin Fretwurst

79578671

Date: 2025-04-17 07:08:37
Score: 2
Natty:
Report link

I had a similar issue with One Drive which is also a cloud storage.
It was not syncing my latest files even after saving them.
So i removed my files from that cloud storage and stored in my local computer.

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

79578668

Date: 2025-04-17 07:06:36
Score: 1
Natty:
Report link

Most centralized crypto exchanges (like Binance, Coinbase, etc.) do not move crypto on the blockchain for each trade. Instead, they manage trades internally.

What Happens During a Trade

Let’s say:

You have ETH and want to trade it for ZETH.

Another person wants to trade ZETH for ETH.

When your trade is matched:

The exchange updates your balances in its internal system.

You get ZETH in your exchange account, and the other person gets ETH.

No actual blockchain transaction happens during this trade.

How the Exchange Takes a Cut

The exchange charges a trading fee (usually a small percentage like 0.1% or 0.2%).

For example:

If you trade 1 ETH and the fee is 0.2%, the exchange takes 0.002 ETH as a fee.

You receive the equivalent value of 0.998 ETH in ZETH.

This fee is deducted automatically during the internal balance update.

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

79578662

Date: 2025-04-17 07:02:34
Score: 7
Natty: 7.5
Report link

How do you deal with the condition race when refreshing the access_token?

Reasons:
  • Blacklisted phrase (1): How do you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How do you
  • Low reputation (1):
Posted by: Naroto-Hasaka

79578656

Date: 2025-04-17 06:58:33
Score: 2
Natty:
Report link

In your answer, clicking on one of the controls triggers the label event, and then you change the value of the checkbox and edit the label manually. But I want the events/elements to be separate. Like the approach in 'Does work, but ugly'. Basically, I want the functionality from there, but using the look of the custom-control from bootstrap. But I think these classes are preventing me from achieving this. I think I need to copy the style. – zesaro CommentedFeb 20, 2024 at 14:38 Making labels for a form editable is a totally non-standard approach - the solution option to allow labels to be editable I present is ONE way to do that non-standard approach. Similar a "shadow" input might be another - I think you need to consider how to clearly separate a view label from an editable entity - SO you either want the label editable or you DON"T; and live with that choice you as a functional designer have made. FYIW Clicking a Label for a Checkbox to trigger the check/uncheck as I have here is the standard way labels work for those

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rahman Nibir

79578648

Date: 2025-04-17 06:55:32
Score: 0.5
Natty:
Report link

My code works in all the user pools I’ve created. But it doesn’t in the production pool, without any clear reason I can find through the AWS console or CLI.

I have some suspects but no real evidence. If you run into a weird issue like this, try using the User ID (Sub) as the username instead of the email. It should work either way, and it does in every other pool, but well... This workaround made it for me.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: José Daniel Montoya Salazar

79578645

Date: 2025-04-17 06:53:31
Score: 5
Natty:
Report link

Can you delete the folder: ${user}/.fx and try again?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Huajie Zhang

79578638

Date: 2025-04-17 06:48:29
Score: 1.5
Natty:
Report link

Self‑Answer: Root Cause and Fix

Apologies for the confusion and for taking up your time with this—it was my own mistake. I really appreciate your help.

After all the investigation above, I finally discovered the true culprit: a project‑root .env file that I had added for other tooling (e.g. to set JAVA_HOME for a Processing‑like Python library py5). That file contained something like:

# .env at the workspace root
JAVA_HOME=C:\Some\Java\Path
PATH=$JAVA_HOME$;$PATH

Why this caused the issue

The fix

Remove or adjust the .env so it doesn’t clobber your entire PATH. For example, change it to extend rather than replace(change $VAR to %VAR%):

# .env — extend the existing PATH instead of overwriting it
JAVA_HOME=C:\Some\Java\Path
PATH=%JAVA_HOME%;%PATH%

After making one of these changes, PowerShell subprocesses under debugpy will once again inherit the full environment, and $env:PROGRAMFILES, $env:LOCALAPPDATA, etc. will be populated as expected.

Reasons:
  • Blacklisted phrase (2): appreciate your help
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KLc3088

79578614

Date: 2025-04-17 06:39:26
Score: 3.5
Natty:
Report link

@Daniel, I tried your OpenAPI spec file, and if I selected only 1~2 API, then it works fine. I think the problem is that the error message is not correct, the maximum of OpenAPI supported is around 100K

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Daniel
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: SLdragon

79578613

Date: 2025-04-17 06:37:26
Score: 2.5
Natty:
Report link

Then use the Pagination component in combination with a custom Select component. The Pagination component only implements basic pagination functionality, so it won't include a page size selection dropdown.

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

79578608

Date: 2025-04-17 06:34:24
Score: 5
Natty: 5
Report link

In my case I don't have a References Metadata, Is any way i can properly extract the References ?

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

79578603

Date: 2025-04-17 06:26:21
Score: 4
Natty: 4.5
Report link

I started looking in to it last week and am still looking for streamlining processes.

Here's what I've been doing:

:: Export from Rithum

:: Select & Export a sample Product from within Shopify Admin (left side: Home, Orders, Products > Export Product

:: Paste the Rithum info into the relevant Fields (there are many that will be cast aside)

:: or Rename the Rithum CSV Fields to match and delete the rest

Fyi: Shopify will find any images hosted on CloudFare.

Hope that's helps.

Please let me know if you've discovered any better methods.

Thanks and good luck

Jim

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jamison SixtyFour

79578600

Date: 2025-04-17 06:25:20
Score: 1.5
Natty:
Report link

I feel your pain on this one—debugging Teams/Office add-ins can be super frustrating, especially when you're doing everything right and still getting these cryptic TLS errors. So let’s break this down in a human, no-BS way:

🔍 What’s actually going wrong? The key error here is:

nginx Copy Edit UNABLE_TO_GET_ISSUER_CERT_LOCALLY Which basically means:

The tool (in this case, @microsoft/teamsapp-cli) tried to make a secure HTTPS request but couldn't verify the certificate authority (CA) of the server it was trying to talk to. It doesn't trust the chain. 🧠 Why is this happening? Even though your dev certs (localhost.crt, etc.) are trusted locally for dev (hence no browser warnings), the Teams Toolkit CLI or Node environment (used by axios, etc.) may not trust those same certs—especially on corporate machines, behind proxies, or on Windows with funky cert setups. ✅ Fixes to try (start with the easiest):

  1. ✅ Tell Node.js to trust the local CA cert Add this to your environment variables temporarily before running the tool:

bash Copy Edit set NODE_EXTRA_CA_CERTS=C:\Users\admin-aja.office-addin-dev-certs\localhost.crt If you're using PowerShell:

powershell Copy Edit $env:NODE_EXTRA_CA_CERTS="C:\Users\admin-aja.office-addin-dev-certs\localhost.crt" Then re-run the command:

bash Copy Edit npx @microsoft/teamsapp-cli install --file-path "C:\Users\ADMIN-~3\AppData\Local\Temp\manifest.zip" 💡 If that works, you can add it to your start script or .env file. 2. 🔐 Make sure your machine trusts the cert Double-click on localhost.crt and ensure it’s installed in the Trusted Root Certification Authorities store for Local Machine or Current User.

  1. 🌐 Proxy in the way? If your org uses a corporate proxy, Node and the CLI tools might be struggling to get out to Microsoft endpoints.

Run:

bash Copy Edit npm config get proxy npm config get https-proxy If they're set and your proxy uses a self-signed cert, that could be breaking things. You’d have to export that cert and pass it as a trusted CA (same as above, using NODE_EXTRA_CA_CERTS). 4. ☠️ As a last resort – skip TLS verification (not recommended in production) Set this env var:

bash Copy Edit set NODE_TLS_REJECT_UNAUTHORIZED=0 ⚠️ Only use this for local debugging! It disables cert checking entirely. Note: You’ve done a solid job getting everything wired up. The manifest is valid, the dev server is running, certs are trusted by Office—it’s just the Teams CLI choking on that cert chain.

So yeah, try step 1 first—set NODE_EXTRA_CA_CERTS to point at your local .crt file and run again. That usually solves it for folks in environments with custom certs or local HTTPS setups.

Let me know what happens or if you want to jump on step 2 together. We’ll get it working.

Reasons:
  • RegEx Blacklisted phrase (0.5): Why is this
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Gokul Saravanaperumal

79578595

Date: 2025-04-17 06:23:20
Score: 2.5
Natty:
Report link

Its just because of any corrupted file is there, try to restart your system & android studio. if still not work then remove emulator then create new one. Let me know if that works.

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

79578592

Date: 2025-04-17 06:21:19
Score: 2
Natty:
Report link

In any file type? not just markdown?

It's currently not possible in every file type, with the base editor without a third party extension.
Same thing as trying to bold code comments, it will just read it as plain text unless its a markdown or similar file type.


Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: IndexZero

79578587

Date: 2025-04-17 06:17:18
Score: 2.5
Natty:
Report link

@polygenelubricants breadth first search (BFS) implementation works very well. When I tested it with the original 160 Rush Hour layouts I found 2 interesting things - first, Set 2 "intermediate" 1 was solved in 21 moves which is 1 better than the solution on the game card (!), second (unfortunately) it doesn't seem to handle those layouts which have a horizontal blocking car, for example Set 3 "expert" 30.

It's trivial enough to set the blocker as an intermediate goal, solve for that and then remove the blocker from the state and solve for the original goal.

Below are the 2 solutions for layout Set 2 "intermediate" 1:

Game: [D-1, P+3, B+3, Z-1, Q-3, C-3, O+1, Q+1, A+4, O-1, Q-1, C+3, Q+3, Z+1, B-4, Z-1, Q-3, D-3, C-3, O+3, Q+3, Z+6]

BFS: [B+3, Z-1, Q-3, C-3, Q+3, O+3, A+3, Z+3, Q-3, C+1, B-4, C-1, Q+3, Z-3, Q-1, O-1, D-4, P+3, Q+1, O+1, Z+4]

The game suggests D left 1 square, and later D left 3, the BFS produced one move of D left 4.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @polygenelubricants
  • Low reputation (1):
Posted by: xwindow

79578586

Date: 2025-04-17 06:16:18
Score: 1.5
Natty:
Report link

Https://memy-app-nameMydia files omy-app-nameMyn my phmy-app-nameMyone and ADMImy-app-nameMyNISTERmy-app-nameMy

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

79578584

Date: 2025-04-17 06:15:18
Score: 1.5
Natty:
Report link
SELECT Name
FROM Tags
GROUP BY Name
HAVING SUM(CASE WHEN TagId = 1 THEN 1 ELSE 0 END) > 0
   AND SUM(CASE WHEN TagId = 2 THEN 1 ELSE 0 END) = 0;


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

79578575

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

Less important to the question is that it appears that your example was loading %edi instead of %eax .
000000000 8B 04 25 A60D4000 mov 0x400da6,%eax
000000007 8B 3C 25 A60D4000 mov 0x400da6,%edi
00000000e 90 nop
Unless you are loading from an absolute address with position independent code, rip-relative addressing will save you a byte.
000000038 8B 05 680D4000 mov 0x400da6(%rip),%eax

Reasons:
  • No code block (0.5):
  • Filler text (0.5): 000000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Low reputation (1):
Posted by: Alan Larson

79578574

Date: 2025-04-17 06:09:16
Score: 4
Natty:
Report link

Oracle has two layers of network protection:

  1. VCN Security Lists

  2. Network Security Groups (NSGs) – optional but often used

You need to check both.

  1. Go to the Oracle Cloud dashboard

  2. Navigate to Networking > Virtual Cloud Networks

  3. Click on your VCN → Go to Security Lists

  4. Check your subnet’s security list

  5. Make sure it has Ingress rules like:

Source CIDR Protocol Port Range

0.0.0.0/0 TCP 80

0.0.0.0/0 TCP 443

if you already have this:

Check NSGs (if used)

Check Your Public IP

  1. Make sure you're using the correct public IP address (not the private one)

  2. Run curl http://your_public_ip from your local machine. Still not working? Probably still a firewall issue.

Tell me if you have anymore info

Reasons:
  • Blacklisted phrase (2): Still not working
  • RegEx Blacklisted phrase (2): working?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Omar Zubair

79578571

Date: 2025-04-17 06:08:15
Score: 0.5
Natty:
Report link

Why It Happens:

On Windows, the default maximum path length is 260 characters. Git sometimes hits this limit when you have deeply nested folders or long filenames (e.g., spark-jobs/long-folder-name/.../file-name.yml).

Solutions:

1. Enable Long Paths in Git (Windows only)

If you're on Windows 10 or later, run this in your Git Bash or CMD:

bash: git config --system core.longpaths true 

You might need admin privileges to run this.

This allows Git to use Windows’ newer APIS that support long paths beyond 260 characters.

2. Shorten the Path

As a workaround (especially if you're still hitting limits), you can:

bash: C:\src\myrepo 

This reduces the total path length Git has to deal with.

3. Check If It's Configured Properly

Run:

bash: git config --show-origin core.longpaths 

You should see:

vbnet file:...   core.longpaths=true
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Why It
  • Low reputation (1):
Posted by: ShubhGurukul

79578569

Date: 2025-04-17 06:07:14
Score: 5
Natty:
Report link

There seems to be no commands for that feature, but with the Natural Language Dates plugin, you can have autosuggest translations from @today to the current date.

Source: https://forum.obsidian.md/t/how-to-quickly-insert-the-current-date-or-time-in-obsidian/20535

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @today
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MikaData

79578562

Date: 2025-04-17 06:00:13
Score: 3
Natty:
Report link

Use code Code runner extension. Check that the gcc compiler path is set in the system environment.

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

79578561

Date: 2025-04-17 05:59:12
Score: 2
Natty:
Report link

You can handle force/soft updates using Firebase Remote Config.

I built a small open-source Swift framework that does exactly this —

you can check it out here: https://github.com/Manpreet7Kitlab/MeetAppUpdateManager

It supports:

- Firebase Remote Config version check

- Force and Soft update handling

- Customizable UI prompt

You change alert buttons as it seems to you

Reasons:
  • Blacklisted phrase (0.5): check it out
  • No code block (0.5):
  • Low reputation (1):
Posted by: Manpreet Singh

79578557

Date: 2025-04-17 05:57:12
Score: 0.5
Natty:
Report link

Nugget for someone:

update "test-dev-api-counter" 
  SET "ratingTest4" = if_not_exists("ratingTest4",0) + 1
  WHERE "idDotTypeId"='wapm.kyhw.person'
  AND   "relationType" = 'rating'
RETURNING ALL NEW *
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jason Henriksen

79578553

Date: 2025-04-17 05:54:11
Score: 2.5
Natty:
Report link

Yes, using both depends on your use case. For push notifications, Firebase Cloud Messaging is commonly used. While Firebase offers Real time Database or Firestore for storage, if you’ve already integrated MongoDB, it’s perfectly fine to continue using it for data storage.

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

79578551

Date: 2025-04-17 05:52:10
Score: 1.5
Natty:
Report link

Maybe the following approach will help. Try to use usual LLM (like llama, qwen, deeepseek etc..). Specify all possible categories in prompt and ask model to pick categories that fit to some text :)

Also you can get embeddings from all texts and feed them into multiclustering algorithm. Here's an example of such algorithm - https://www.researchgate.net/figure/Proposed-K-multicluster-algorithm_fig2_346086809.

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

79578539

Date: 2025-04-17 05:39:06
Score: 1
Natty:
Report link
exec(`"C:\Program Files\foo" bar"`);
    
String html = `<html>
                   <body>
                       <p>Hello World.</p>
                   </body>
               </html>
              `;

System.out.println("this".matches(`\w\w\w\w`));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Huynh Tinh Sao

79578536

Date: 2025-04-17 05:36:05
Score: 1.5
Natty:
Report link

ThreeJS provides very little support for FBX materials if it gets a little more complicated, like PBR textures. I understand that you want to avoid Blender if you haven't used it yet, but I think you can manage loading it in and then, if it all looks okay, export the same model in glTF (.glb) format, which works way better in ThreeJS.

Tutorial on converting FBX to glTF with Blender

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

79578523

Date: 2025-04-17 05:28:02
Score: 3.5
Natty:
Report link

I'm also experiencing the same issue — restoring pagination state with `v-model:first` in lazy mode causes an unwanted automatic reset to `first = 0` due to an internal page event emitted right after mount. Even if `first` is correctly set programmatically, PrimeVue still emits a `@page` with `page = 0`, which overrides everything.

This breaks expected behavior in lazy mode. Pagination should behave like a dumb view that reflects whatever data the app gives it, and emit `@page` events **only when the user interacts**.

More details (including a full StackBlitz reproducer and a GitHub issue opened against PrimeVue) here:

👉 https://github.com/primefaces/primevue/issues/7618

If you're facing the same problem, upvote the GitHub issue so the team gives it proper attention. This is critical for apps that rely on persisted pagination state (e.g., from localStorage or Vuex).

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (0.5):
Posted by: Jairo Bernal

79578521

Date: 2025-04-17 05:25:02
Score: 3.5
Natty:
Report link

If the response is i JSON format . Then to hide sensitive info like userId, email, mobile and any other in response we can use Annotation called @JsonIgnore which will hide the info like email, mobile and userId from response

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @JsonIgnore
  • Single line (0.5):
  • Low reputation (1):
Posted by: VYSHNAVI JASTI

79578513

Date: 2025-04-17 05:15:00
Score: 1
Natty:
Report link

Laravel 8.0 required php 7.3 or upper its seems your have lower then 7.3 in your command prompt type

php -v 

and check php version if its lower the php 7.3 update it

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

79578510

Date: 2025-04-17 05:13:59
Score: 3
Natty:
Report link

I have been facing the same issue for two days, but I got the solution. I think it's the issue related to Auth (folder or components name) - I have changed the Auth folder to UserAuth and vice versa.

Structure Changes I made:

  1. Auth -> UserAuth
  2. Signup -> UserSignup
  3. Login -> UserLogin

This solution is working. Kindly check this solution to see if it works for you. I hope it will work.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Faizan Ali

79578508

Date: 2025-04-17 05:12:59
Score: 2.5
Natty:
Report link

It happened with me also. In my case, the file which I was trying to copy from remote machine was already there with same file name and it was open at my target machine. Once I closed the file in my target machine, I could successfully copied the file using scp command.

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

79578507

Date: 2025-04-17 05:11:58
Score: 2
Natty:
Report link

You can handle force/soft updates using Firebase Remote Config.

I built a small open-source Swift framework that does exactly this —

you can check it out here: https://github.com/Manpreet7Kitlab/MeetAppUpdateManager

It supports:

- Firebase Remote Config version check

- Force and Soft update handling

- Customizable UI prompt

Example usage:

ForceUpdateChecker.shared.verifyVersion()

Reasons:
  • Blacklisted phrase (0.5): check it out
  • No code block (0.5):
  • Low reputation (1):
Posted by: Manpreet Singh

79578500

Date: 2025-04-17 04:59:55
Score: 2.5
Natty:
Report link

I've faced a similar problem. After deleting caches, the problem persisted until I deleted the Gradle folder. After reopening, IntelliJ started downloading new gradle as it always do

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

79578499

Date: 2025-04-17 04:57:55
Score: 0.5
Natty:
Report link

I would use this array of users:

soapBody = soapBody & "<Field Name=""BUPS_x0020_names"">" & _
  "<ArrayOfUser><User>[email protected]</User><User>[email protected]</User></ArrayOfUser>" & _
  "</Field>"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paul-ET

79578488

Date: 2025-04-17 04:49:52
Score: 2
Natty:
Report link

I did faced similar kind of issue and select user_name() was also returning "dbo" instead of the current logged in user. The reason was the user was given "sysadmin" role. Removing this role fixed the issue for me. I thought this would be helpful for some one facing this issue.

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

79578483

Date: 2025-04-17 04:41:51
Score: 2.5
Natty:
Report link

Sometimes, terminal processes may take time due to low CPU configuration or too many environment path configurations. Perform all these operations from your IDE (Android Studio) instead.

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

79578480

Date: 2025-04-17 04:35:49
Score: 3.5
Natty:
Report link

The answer is no one is able to provide an answer to the problem.

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

79578474

Date: 2025-04-17 04:33:48
Score: 2
Natty:
Report link

In my case i just install HtmlToPdfConverter.Core, which resolved my problem.

Reasons:
  • Whitelisted phrase (-1.5): resolved my problem
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: susam das

79578470

Date: 2025-04-17 04:31:47
Score: 2
Natty:
Report link

You could also try a series of 3m-dashes: #11835;

For me that works better than &m-dash; since it produces a solid line with no breaks.

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

79578465

Date: 2025-04-17 04:28:45
Score: 4
Natty:
Report link

This Issue was fixed in v0.14.7

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

79578463

Date: 2025-04-17 04:26:45
Score: 1
Natty:
Report link
#You just need to use try and except statements eg:

try:
    rev=container_of_reviews.find_element(locator_of_element)
except:
    #selenium driver cannot find the element so it will execute this block of code after
    # the try block retrieve an error.eg use case:
    rev=None
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nader Nofal

79578462

Date: 2025-04-17 04:26:45
Score: 2
Natty:
Report link

This version of react-router-dom(6.22.0) works fine with the latest version of react npm install [email protected] (install this router version it will work ) rm -rf .parcel-cache npm start

Try it

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

79578461

Date: 2025-04-17 04:26:45
Score: 2
Natty:
Report link

Well the values() method of HashMap does not guarantee any specific ordering of its elements in the same way HashMap<> does not guarantee any specific ordering of its key-value pairs.

Try printing both values() functions and you shall see this in action yourself.

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

79578452

Date: 2025-04-17 04:13:42
Score: 0.5
Natty:
Report link
Why is addEventListener('order') not receiving anything?

One possible cause is your code public SseEmitter subscribe() does not have @CrossOrigin("*") .

Is there something I'm missing with SseEmitter.event().name(...) or how Spring formats the stream?

I tested that emitter.send(SseEmitter.event().name("order").data(messageToSend)); worked in an example.

Does using data: gymIdx (a plain number) cause issues?

In emitter.send(SseEmitter.event().name("order").data(messageToSend));, I replaced messageToSend with 1 and I still got the 1 in the browser. Therefore, a number here was tested to not cause problems in sending the message.

What’s the correct way to verify eventName-based listeners in EventSource with Spring Boot?

Whether it is correct or not depends on your data, in my opinion. If you get what you want in the browser... I think you did the verification eventSource.addEventListener('order', (event) => { console.log('[✅ Event received]', event.data); }); in the browser. This was already some verification. To help speed up the debugging process, I printed the response in the HTML.

    eventSource.value.addEventListener("order", (event) => {
      const orderResponse = ("[✅ Event received]", event.data);
      console.log(orderResponse);
      document.querySelector("#orders").innerHTML = document.querySelector("#orders").innerHTML + "<div>" + orderResponse + "</div>";
      events.value.push(JSON.parse(event.data)); 
    });

I also printed what Spring Boot showed:

                for (int i = 0; i < orders.size(); i++) { 

                    String messageToSend = orders.get(i);

                    emitter.send(SseEmitter.event().name("order").data(messageToSend));

                    System.out.println(messageToSend);
                    
                    TimeUnit.SECONDS.sleep(2);
 
                     if (i > 18){
                         emitter.complete();
                     }

                }

When comparing what Spring Boot showed and what the browser showed, I had the confidence in saying that I had what data I wanted because they were the same on both sides.

{ "id": "1", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "pending" }
{ "id": "2", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "complete" }
{ "id": "3", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "complete" }
{ "id": "4", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "complete" }
{ "id": "5", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "complete" }
{ "id": "6", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "pending" }
{ "id": "7", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "complete" }
{ "id": "8", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "complete" }
{ "id": "9", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "pending" }
{ "id": "10", "time" : "2025-04-17T03:56:54.213627600Z", "OrderStatus": "complete" }

My usable example was here. After starting Spring Boot, I opened http://localhost:8080 in my browser.

The Nuxt files were in the nuxt folder for npm install and npm run dev. Then, I opened http://localhost:3000 in my browser.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hdvlp

79578450

Date: 2025-04-17 04:12:41
Score: 3.5
Natty:
Report link

The answer is, as @red_menace points out, is that the text string must be explicitly cast as a date object

set startDate to date "Sunday, April 20, 2025 at 12:00:00 AM"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @red_menace
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: spinhead

79578449

Date: 2025-04-17 04:09:40
Score: 3.5
Natty:
Report link

historicaldata.net provides stock data for delisted tickers.

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

79578448

Date: 2025-04-17 04:08:40
Score: 1
Natty:
Report link

Already solved, my program can run by add this injection at class MasterDebiturBatchConfig

@Bean
@StepScope
public DebtorReader debtorReader(@Value("#{jobParameters['filePath']}") String filePath) {
    return new DebtorReader(filePath);
}

and remove this annotation and constructor at DebtorReader

@Component
@StepScope
@Scope(proxyMode = ScopedProxyMode.TARGET_CLASS)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: iyp.prog

79578443

Date: 2025-04-17 03:55:36
Score: 7
Natty: 8
Report link

can you share you code? i also want to make the Note app in swift ios

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share you code
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you share you code
  • Low reputation (1):
Posted by: Neha Girase

79578435

Date: 2025-04-17 03:51:34
Score: 7
Natty:
Report link
 I found even I intergated amr-nb code into my C ++ project according to your request

    2. intergate amr-nb code to the c++ runtime project 

   but head files missing while compiling process, can you give me some advice?
thanks a lot
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (3): give me some
  • RegEx Blacklisted phrase (2.5): can you give me some
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: stephenliu

79578414

Date: 2025-04-17 03:24:26
Score: 2.5
Natty:
Report link

One way to get this working is by immediately providing one temporary item (e.g. "Loading ..."), then start the async stuff, and finally replace the temporary loading item by the real items.

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

79578404

Date: 2025-04-17 03:15:24
Score: 1.5
Natty:
Report link

I find the reason, because audiotrack is not init correct, correct code beside:

audioTrack = AudioTrack(AudioManager.STREAM_SYSTEM, sampleRateInHz, AudioFormat.CHANNEL_OUT_MONO, audioFormat, bufferSize * 4, AudioTrack.MODE_STREAM)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: jianglei

79578401

Date: 2025-04-17 03:11:23
Score: 0.5
Natty:
Report link
# I added this to ignore all 3rd party content, but allowed my content
# Also, included list of 3rd party libraries in README.md
!/MyGame
/MyGame/*
!/MyGame/Content
/MyGame/Content/*
!/MyGame/Content/_Content
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Trevy Burgess

79578393

Date: 2025-04-17 03:02:21
Score: 0.5
Natty:
Report link

java.lang.RuntimeException: Font asset not found fonts/fd

at android.graphics.Typeface.createFromAsset(Typeface.java:1159)

at n.ۥۡۧۨ.ۥۣ(Unknown Source:18)

at n.ۥۢ۟۟.run(Unknown Source:10)

at android.os.Handler.handleCallback(Handler.java:938)

at android.os.Handler.dispatchMessage(Handler.java:99)

at android.os.Looper.loopOnce(Looper.java:210)

at android.os.Looper.loop(Looper.java:299)

at android.app.ActivityThread.main(ActivityThread.java:8319)

at java.lang.reflect.Method.invoke(Native Method)

at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:556)

at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1038)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Akbar4a.2008.

79578389

Date: 2025-04-17 02:56:19
Score: 3.5
Natty:
Report link

I know how to use it. I should use the location in the local code instead of '_prefect_loader_',
Thank you all

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

79578384

Date: 2025-04-17 02:50:17
Score: 2
Natty:
Report link

I know the "problem", this is because you are creating a VM on Azure with a CORE version.

Microsoft creates 2 version for the same server - operating system:

  1. With Desktop Experience. Is easy to use (with the mouse) but is heavier than the Core Version.

  2. Core Version (PowerShell or CMD) Experience. A cleaner version like the "Linux Servers".

If you are beginner managing servers, I recommend you avoid using Azure Images like "Win2022AzureEditionCore" and learn about basic PowerShell and CMD commands and practice with the WindowsGUI like "Win2022AzureEdition" note that I don´t to involucre the word "Core".

So If you want to learn about the differences between Core and DesktopExperience or learn about the Core Edition please see this video and I hope to help you.

Bye :3 .

Reasons:
  • Blacklisted phrase (1): this video
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: JohnMayorga18

79578377

Date: 2025-04-17 02:41:14
Score: 5.5
Natty:
Report link

My question is who will meet me after my death, and how I will be treated?

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

79578375

Date: 2025-04-17 02:40:14
Score: 3
Natty:
Report link

I found the answer.

When using Kafka transactions, the acknowledge mode (AckMode) does not actually affect the behavior.

See this discussion for reference:

Spring Kafka Consumer ACKMODE & Producer buffering for Kafka transactions

Even in the TransactionTemplate, it simply executes the code and then commits — there's no coordination with AckMode.

So regardless of whether you set AckMode.BATCH or AckMode.RECORD, the transaction boundary determines the commit, not the acknowledge mode.
https://github.com/spring-projects/spring-framework/blob/39e263fe5d8ba767d22e594cffd02420bab43f2a/spring-tx/src/main/java/org/springframework/transaction/support/TransactionTemplate.java#L127

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

79578360

Date: 2025-04-17 02:22:09
Score: 2
Natty:
Report link

in case you still have this problem, I think a good workaround is to only return one of these two optimizers with your configure_optimizers method. The other one you can write into a field of your lightning module. This way only one of them will be wrapped as Lightningoptimizer (and thereby contribute towards global_step). I think this does not have any side effects except that now the optimizer states of only the optimizer that you returned with configure_optimizers are serialized together with your model checkpoints.

Best,

Chris

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

79578350

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

Needed to add @Configuration annotation then matching started to hit to custom filterchain

@EnableWebSecurity
@ComponentScan("com.xxxx.nes.**")
@EntityScan("com.xxxx.nes.model.**")
@EnableJpaRepositories("com.xxxx.nes.model.**")
@Configuration <---
public class ResourceServeConfig {

    @Bean
    @Order(1)
    public SecurityFilterChain actuatorEndpoints(HttpSecurity http) throws Exception {
        http
                .securityMatcher("/actuator/health")
                .authorizeHttpRequests(auth -> auth.anyRequest().permitAll())
                .csrf(AbstractHttpConfigurer::disable);
        return http.build();
    }

    @Bean
    @Order(2)
    public SecurityFilterChain securedEndpoints(HttpSecurity http) throws Exception {
        http
                .csrf(csrf -> csrf.ignoringRequestMatchers("/**/notifications/**"))
                .authorizeHttpRequests(
                        auth ->
                                auth
                                        .requestMatchers("/**/notifications/**")
                                        .hasAuthority("SCOPE_notifications")
                                        .anyRequest()
                                        .authenticated()
                )
                .oauth2ResourceServer(
                        oauth -> oauth
                                .jwt(jwt -> jwt.jwtAuthenticationConverter(jwtAuthenticationConverter()))
                );
        return http.build();
    }

    private JwtAuthenticationConverter jwtAuthenticationConverter() {
        JwtGrantedAuthoritiesConverter converter = new JwtGrantedAuthoritiesConverter();
        converter.setAuthorityPrefix("SCOPE_");
        converter.setAuthoritiesClaimName("scope");

        JwtAuthenticationConverter jwtConverter = new JwtAuthenticationConverter();
        jwtConverter.setJwtGrantedAuthoritiesConverter(converter);
        return jwtConverter;
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Configuration
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MOHAMMAD WASEEM