79806499

Date: 2025-11-01 11:39:23
Score: 1.5
Natty:
Report link

Go to
Xcode → Build Phases → “Bundle React Native code and images”

Then untick the checkbox labeled “For install builds only”.

This ensures the JavaScript bundle is included in all builds (not just install builds), which often resolves issues where the app launches with a red screen or can’t find the JS bundle in debug/release mode.

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

79806472

Date: 2025-11-01 10:35:09
Score: 2
Natty:
Report link

Replace your loading var by a signal. Remove the setTimeout stuff and run the code directly.

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

79806470

Date: 2025-11-01 10:27:07
Score: 4.5
Natty: 4.5
Report link

к слову есть 1 минус некоторые браузеры (или их версии) к сожелению не разешают запускать музыку сразу со звуком в таком случае надо написать элемент muted который будет запускать все без звука а после добавить выскакивающие сообщене для того чтоб включить звук тогда сайты не будут его блокировать (но для всего этого нужен JavaScript)

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Sigici

79806464

Date: 2025-11-01 10:19:05
Score: 4.5
Natty:
Report link

enter image description here

enter image description here

Then just Ok and close then open your journal

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

79806463

Date: 2025-11-01 10:19:05
Score: 2.5
Natty:
Report link

File open" option it give me error "Either it is not importable using selected filter or this format is not supported

i am using coral 12

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

79806460

Date: 2025-11-01 10:16:04
Score: 0.5
Natty:
Report link

Coma was missed in (6). That's why TypeError was about int. Silly mistake. The solution was found during the writing process:

sum([(1,2,3),(4,5),(6,)], start=())

(1, 2, 3, 4, 5, 6)

itertools.chain is also well known solution, but without sum function

from itertools import chain

tuple(chain(*[(1,2,3),(4,5),(6,)]))
# or
tuple(chain( (1,2,3),(4,5),(6,) ))
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: leofun01

79806453

Date: 2025-11-01 10:00:00
Score: 2.5
Natty:
Report link

just use these two commands and u are good to go
1. conda install anaconda-navigator
2. conda run anaconda-navigator

and then pin the application in the dock using the keep in dock option and voila!!

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

79806450

Date: 2025-11-01 09:56:59
Score: 2
Natty:
Report link

I would do it like this:

awk ‘{ a[FNR] = sprintf(“%s\t%s”, a[FNR], $1)
if (m < FNR) m = FNR }
END { for (i=1; i <= m; i++) print a[i] }’ UE*.dat | tee UE_all.dat

This will give you all the first fields of all thirty files on there own line number.

This solution looks very much like https://stackoverflow.com/users/3337836/isosceleswheel suggested.

Note that this works for files having the same line count; if the files differ, and the numbers from each must be in their corresponding column, you must make some minor changes.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: TheRealRobbedoes

79806449

Date: 2025-11-01 09:56:59
Score: 1.5
Natty:
Report link

Creating an AI-based Image Background Remover in React Native is quite simple using an API service. You can allow users to pick an image from their gallery and automatically remove the background using an online AI API like FreePixel AI Background Remover.

This feature is useful for apps related to photo editing, e-commerce product listings, or social media content creation.

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

79806443

Date: 2025-11-01 09:45:57
Score: 0.5
Natty:
Report link

The remainder of the OAuth2/OIDC ceremony, namely the exchange of the code for a token, is missing.

Your server needs to implement a Servlet with the path /Callback to process the callback provided in the callback_url.

The internal processing of http://localhost:8081/Callback?code=xxxxxxxxxxxxxxxxxx should make a call to https://accounts.google.com/o/oauth2/token with the code as a parameter.

The call to https://accounts.google.com/o/oauth2/token will return the JWT for later use for authorization by the client.

This is the missing step.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): xxxxxxxxxxxxxxxxxx
  • High reputation (-1):
Posted by: John Williams

79806436

Date: 2025-11-01 09:35:55
Score: 3.5
Natty:
Report link

use https://zk.boldet.org . Configure your webhook there and use the IP address on the account.

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

79806435

Date: 2025-11-01 09:30:53
Score: 2
Natty:
Report link

For fast loading data you have to temporarily drop the index(s) and recreate after data load so that import of bulk data will be faster and make sure that recovery model has been set to bulk logged before data load and once the load task has been done st load is completed ensur that index are recreated and run the maintenance jobs(reindex, update statistics and backup jobs)

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

79806428

Date: 2025-11-01 09:09:49
Score: 0.5
Natty:
Report link

In addition to @standard_revolution answer, I had to specify #[serde(default)]

#[derive(Deserialize)]
#[serde(default)]
struct PageParams {
    limit: i64,
    offset: i64,
}

impl Default for PageParams {
    fn default() -> Self {
        PageParams {
            limit: 10,
            offset: 0,
        }
    }
}

#[get("/list")]
async fn list(query: web::Query<PageParams>) -> impl Responder { ... }
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @standard_revolution
Posted by: max-lt

79806424

Date: 2025-11-01 08:57:46
Score: 3.5
Natty:
Report link

OMG THANK YOU SOOOOOOOO MUCH!

I’ve been working on this issue for months, even put in over 12 hours today on it. There a lot of misinformation out there. I kept being notified it was the crypto.com exchange site giving me wrong api keys.

THANK GOD THAT PART IS OVER! MUCH APPRECIATED!

I feel like I instantly lost weight!

Reasons:
  • Blacklisted phrase (0.5): THANK YOU
  • Blacklisted phrase (1): APPRECIATED
  • No code block (0.5):
  • Filler text (0.5): OOOOOOOO
  • Low reputation (1):
Posted by: Inzzane

79806423

Date: 2025-11-01 08:57:46
Score: 3
Natty:
Report link

I don't know if you are looking for such a tool, but you can check out

https://logchange.dev/tools/logchange/getting-started/

Apache Solr using it exactly because of wasting time for pull requests conflicts

https://lists.apache.org/thread/4dotf4qx4ss3qr3xonv2y63v7wdg40nt

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

79806421

Date: 2025-11-01 08:49:44
Score: 0.5
Natty:
Report link

I have been troubled by this for a while, and this is my final solution:

A Python script replace emoji with images: https://gist.githubusercontent.com/fengchang/885365a6e0c95dc54aeacc328ae31d29/raw/b1d7880e17a3d762ca2879d6bce3e73623318b5d/md2pdf.py

The emoji images are download from here: https://github.com/iamcal/emoji-data

If Apple emoji not available, it will try download Twemoji instead.

The script also fix other markdown issues, like list must have an empty line. with other pandoc parameters I like.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Contains signature (1):
  • No code block (0.5):
Posted by: Chang

79806419

Date: 2025-11-01 08:46:43
Score: 2
Natty:
Report link

The structure of that file is pretty simple (though I tried only usernames, but no sessionIDs, etc).

Just each user name on a new line. That's it. And, by the way, the @ symbol in front of the filename is mandatory.

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

79806410

Date: 2025-11-01 08:26:39
Score: 4
Natty:
Report link

💥 Lagi gabut? Coba main di Jo777 — siapa tau hoki lo lagi on fire! 🔥

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

79806409

Date: 2025-11-01 08:25:38
Score: 6 🚩
Natty: 5
Report link

https://p16-sign-sg.tiktokcdn.com/tos-alisg-avt-0068/d37791f4ee07e8e3ce7ff38d605ecf06\~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=14579&refresh_token=eb935378&x-expires=1762153200&x-signature=Uk%2B4%2F4VB%2Fdg9M0mVh8LCcY6rLc0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=maliva

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

79806403

Date: 2025-11-01 08:13:35
Score: 3
Natty:
Report link

Fly88 là nhà cái cược online mới, dự kiến cung cấp đầy đủ các sản phẩm từ cá cược thể thao, casino, slot,... cùng tỷ lệ trả thưởng minh bạch. Tham gia +58 miễn phí ngay

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

79806395

Date: 2025-11-01 07:59:32
Score: 0.5
Natty:
Report link

import numpy as np

import matplotlib.pyplot as plt

# Настройка для поддержки кириллицы

plt.rcParams['font.family'] = 'DejaVu Sans'

plt.rcParams['font.size'] = 12

# Создаем данные для графика

x = np.linspace(0.1, 10, 500)

y = np.log(x) / np.log(1/3) # log_{1/3}(x) = ln(x)/ln(1/3)

# Создаем фигуру и оси

plt.figure(figsize=(10, 6))

# Рисуем график

plt.plot(x, y, 'b-', linewidth=2, label=r'$y = \log_{\frac{1}{3}} x$')

# Отмечаем ключевые точки

points = [(1/9, 2), (1/3, 1), (1, 0), (3, -1), (9, -2)]

for px, py in points:

plt.plot(px, py, 'ro', markersize=6)

plt.annotate(f'({px:.2f}, {py})', (px, py), 

            xytext=(5, 5), textcoords='offset points')

# Настраиваем внешний вид

plt.axhline(y=0, color='k', linestyle='-', alpha=0.3)

plt.axvline(x=0, color='k', linestyle='-', alpha=0.3)

plt.grid(True, alpha=0.3)

plt.xlabel('x')

plt.ylabel('y')

plt.title('График функции $y = \log_{\frac{1}{3}} x$')

plt.legend()

# Устанавливаем пределы осей

plt.xlim(0, 10)

plt.ylim(-3, 3)

plt.tight_layout()

plt.show()

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Qewerytion

79806390

Date: 2025-11-01 07:51:30
Score: 2
Natty:
Report link

Try changing the zIndex to a number — it might work. You can also try increasing the zIndex value.

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

79806389

Date: 2025-11-01 07:49:30
Score: 3
Natty:
Report link

sid is "session id", which is hardcoded to 00 on mavericks. tk is "tile key", an md5 hash of the url and hardcoded api secrets. mapkey is the access token, a unix timestamp of the expiration date (4200 seconds after current time), followed by another md5 hash. all 3 are used together to authenticate maps requests to the gspaxx servers. your mapkey probably expired.

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

79806386

Date: 2025-11-01 07:42:28
Score: 0.5
Natty:
Report link

I found example in roslyn project.

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFrameworks>$(NetRoslynSourceBuild);net472</TargetFrameworks>
    <IsSymbolPublishingPackage>true</IsSymbolPublishingPackage>
    <TieredCompilation>false</TieredCompilation>
  </PropertyGroup>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Trivalik

79806379

Date: 2025-11-01 07:22:24
Score: 8.5 🚩
Natty: 5
Report link

So, how did you figure out how to use it, because I'm currently having the same issue and can't seem to find a work around.

Reasons:
  • RegEx Blacklisted phrase (3): did you figure out
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pink Phoenix

79806367

Date: 2025-11-01 06:53:14
Score: 3.5
Natty:
Report link

Valid question!

Currently I'm looking at the solution with a conditional pragma. I believe, if in the called method you define some 'Variant' variable, then it should be possible to show / hide inputs / outputs.

I wonder what the experts here are thinking about usability of a conditional pragma with definition directly in the code?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Aleksandr Soldatov

79806364

Date: 2025-11-01 06:41:12
Score: 3.5
Natty:
Report link

I would recommend installing clink instead of setting macros in every terminal emulator.

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

79806356

Date: 2025-11-01 06:18:07
Score: 2
Natty:
Report link

Telegram doesn't allow you to do so, you may try

  1. Open Telegram Desktop

  2. Play the stream (Desktop uses hardware acceleration more reliably)

  3. Cast screen → Android TV

    please vote if you think it helped you in any way

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

79806351

Date: 2025-11-01 05:59:03
Score: 11.5
Natty: 7
Report link

I have the same problem... Did you find the answer?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Did you find the answer
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Elona Mishmika

79806348

Date: 2025-11-01 05:53:02
Score: 3
Natty:
Report link
data:{'user_id':user_id,'role_id':role_id},
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Esenceweb IT

79806343

Date: 2025-11-01 05:33:58
Score: 1
Natty:
Report link

HTML (for page the needs image)
<body class="with-bg">

HTML(pages that dont need image)
<body class="no-bg">

CSS


body.with-bg {
  background-image: url("bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}


body.no-bg {
  background-image: none !important;
}

!important this might ensure that background is completely removed if any another rule was stronger

Or you may also use inline css

<body style="background-image:none;">

Please upvote if it works !

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Prasad Yewale

79806335

Date: 2025-11-01 05:01:52
Score: 0.5
Natty:
Report link

As @Alohci suggested, I finally made it with line-break: anywhere.

<p>with white-space:break-spaces;</p>
<output style="display:inline-block;font-family:monospace;width:8ch;border: 1px solid black;white-space:break-spaces;line-break: anywhere;">123456  1234  7812  5678  345678</output>

According to the specification, The "missing" whitespace for white-space:pre-wrap and early wrap for white-space:break-spaces could be intentional.

4.1.1. Phase I: Collapsing and Transformation

  • If white-space is set to pre, pre-wrap, or break-spaces, any sequence of spaces is treated as a sequence of non-breaking spaces. However, for pre-wrap, a soft wrap opportunity exists at the end of a sequence of spaces and/or tabs, while for break-spaces, a soft wrap opportunity exists after every space and every tab.

Chromium chooses not to wrap lines before spaces.

4.1.2. Phase II: Trimming and Positioning

  1. If there remains any sequence of white space, other space separators, and/or preserved tabs at the end of a line
    • If white-space is set to pre-wrap, the UA must (unconditionally) hang this sequence. ...
    • If white-space is set to break-spaces, spaces, tabs, and other space separators are treated the same as other visible characters: they cannot hang nor have their advance width collapsed.

So, for white-space: pre-wrap, space sequences are hanging at the end edge of previous line; for white-space: break-spaces, lines are wraped early to avoid a hanging space. That's why I didn't get the expected layout.

To force the line to be wrapped anywhere, I shall use line-break: anywhere.

5.3. Line Breaking Strictness: the line-break property

anywhere : There is a soft wrap opportunity around every typographic character unit, including around any punctuation character or preserved white spaces, ...

... it does have an effect on preserved white space, with white-space: break-spaces, it allows breaking before the first space of a sequence, which break-spaces on its own does not.

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

79806331

Date: 2025-11-01 04:32:47
Score: 0.5
Natty:
Report link

I created a simple wrapper called FixedMenu that solves this issue.

Just replace Menu with FixedMenu:

import FixedMenu

FixedMenu {
    Button("Action 1") {}
    Button("Action 2") {}
} label: {
    Text("Options")
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: nullproduction

79806328

Date: 2025-11-01 04:23:45
Score: 0.5
Natty:
Report link

I just encountered the same problem. Same exact behavior as you. That is, I can start typing and the color of the text is fine and readable. But as soon as there is a space, the background color of the text turns to black, making it impossible to read the text. Or as you said, even pasting in a string value with spaces will cause it to turn black.

I don't have an exact solution to fix the PowerShell terminal, but did find out that I could instead just set the default to be the Developer Command Prompt instead of PowerShell. And that doesn't have the problem.

Terminal Options

Obviously you can't run any PowerShell commands, but that is alright for me.

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

79806326

Date: 2025-11-01 04:20:44
Score: 1.5
Natty:
Report link

Before that, the sale of the NFTs began for an exclusive group of selected users on May 15, about a week after the originally planned launch date on May 8.At the time of writing on Friday, more than 71,000 NFTs had been sold, data from Polygonscan showed.The [url=https://dbtodata.com]db to data[/url] marketplace started out with a total inventory of 106,453 NFTs for sale.Each NFT is selling for $19.82, with the price referencing the release year of Nike’s original Air Force 1 sneaker.Given the price tag, Nike’s NFT sales have now likely surpassed $1.4 million. Despite already bringing in around $1.4 million, comments from the .SWOOSH team about an extension of the pre-sale for selected users have indicated that at least that part of the sale was moving slower than anticipated.”As a reminder, we have extended the First Access Sale until Wednesday at 11:59 PM PDT to ensure you have plenty of time to participate,”the team wrote on Twitter on May 17.

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

79806316

Date: 2025-11-01 03:19:32
Score: 2
Natty:
Report link

you can use - This is a long-#text("distance") travel.

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

79806305

Date: 2025-11-01 02:46:25
Score: 4.5
Natty: 4
Report link

The awnser of the top is great.

I just make some complement on it.

when you set the anaconda as your interpreter, how can you add package on it?

the image below explained the whole process to add package and some problems may be occured and their solutions.

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: chard zy

79806304

Date: 2025-11-01 02:35:22
Score: 4.5
Natty: 4
Report link

idk man this is hard bro idk -s

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

79806285

Date: 2025-11-01 00:33:58
Score: 1.5
Natty:
Report link

For me this works. You have to add key field

<Select
   key={field.value}
   value={field.value}      
   onValueChange={field.onChange}
   >
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: wajid

79806283

Date: 2025-11-01 00:22:56
Score: 0.5
Natty:
Report link

The provided answers are wrong. Construction is not always required.

C++11, 3.8 Lifetime

The lifetime of an object of type T begins when:

— storage with the proper alignment and size for type T is obtained, and

— if the object has non-trivial initialization, its initialization is complete.

Notes:

`malloc()` guarantees the first condition (by the C standard).

the "non-trivial initialization" condition was later modified in cpp14 and cpp17, but the modification still preserves the fact there are "trivially" (before cpp17) or "vacously" (from cpp17) initializable objects that do not require the ctor call to start their lifetime.

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

79806279

Date: 2025-11-01 00:11:53
Score: 2
Natty:
Report link

Mostly parts of defunct websites can still be reached via archive services, which seems to be new to you. "extensive research" and "gotten nowhere" still leaves undefined which ways to go don't need to be written in a potential answer, avoiding pointless work for others. You're here for 14+ years and so far never used formatting at all - do you even want help?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: AmigoJack

79806265

Date: 2025-10-31 23:19:40
Score: 0.5
Natty:
Report link

In case this is useful to someone starting with a bunch of Material Typography. You can make the getter for the Typography val @Composable, and then use dimen resources just like in traditional Android. Useful if your project is a mix of Compose and xml.

in theme.Type.kt


val Typography
@Composable
get() = Typography(
    bodyLarge = TextStyle(
        fontFamily = ibmFamily,
        fontSize = dimensionResource(R.dimen.lgtext).value.sp,
        lineHeight = dimensionResource(R.dimen.lgtext).value.sp,
        letterSpacing = 0.sp
    ),
    bodyMedium = TextStyle(
        fontFamily = ibmFamily,
        fontSize = 16.sp,
        lineHeight = 21.sp,
        letterSpacing = 0.sp
    ),
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Composable
  • Low reputation (0.5):
Posted by: alr3000

79806264

Date: 2025-10-31 23:18:40
Score: 2.5
Natty:
Report link

What the insertion sort + binary search algorithm provides is reducing the number of catching the smallest element , it becomes O(log(n)) instead of O(n), but the shifting operations are still the same O(n) for every iteration. Hence, the total time complexity is O(n log(n) +nn) , we take the biggest so it is O(n*n ).

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What the in
  • Low reputation (1):
Posted by: Mohammad Othman

79806263

Date: 2025-10-31 23:14:39
Score: 3
Natty:
Report link

If you still have issues, try https://zk.boldet.org

Give them your webhook that's all

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

79806260

Date: 2025-10-31 23:06:37
Score: 1.5
Natty:
Report link

Warning: Setting the NODE_TLS_REJECT_UNAUTHORIZED environment variable to '0' makes TLS connections and HTTPS requests insecure...

vconst sslRootCAs = require('ssl-root-cas/latest').create();

sslRootCAs.addFile('/path/to/dymo/certificate.pem'); // Replace with actual path

require('https').globalAgent.options.ca = sslRootCAs;

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

79806258

Date: 2025-10-31 22:57:35
Score: 2
Natty:
Report link

How am I supposed to manage that scenario?

Chezmoi is not a good tool for that scenario. But you can define where neovim init file is located. Read neovim help :help nvim-config

In short, set XDG_CONFIG_HOME env var to the result of %USERPROFILE%\.config , in Windows.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How am I
  • Low reputation (1):
Posted by: Júlio Maranhão

79806250

Date: 2025-10-31 22:36:30
Score: 1.5
Natty:
Report link

Just installed 26.0.1 (not beta) and had this same issue still.

Go to Xcode -> Settings -> Components and you'll see metal toolchain 26.0.1

Just need to install and you're all good

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

79806242

Date: 2025-10-31 22:24:27
Score: 0.5
Natty:
Report link

A solution to print images and labels even when the dataset is batched, "this case ". So here, the variable

imagexd and labelxd will pick a batch from the dataset as shown by test_ds.take(1). Now, to go to this selected batch, we will need a nested for loop, which will run up to the batch_size and print the respective image, along with its label on top.

####

plt.figure(figsize=(10, 10))
for (imagexd, labelxd) in (test_ds.take(1)):
  for i in range(batch_size):

    yea_image = imagexd[i].numpy().astype("int32")
    axd = plt.subplot(4,8, i+1)

    plt.imshow(yea_image)
    plt.axis("off")  
    plt.title(f"Label is {int(labelxd[i])}") 

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

79806241

Date: 2025-10-31 22:20:25
Score: 4.5
Natty:
Report link

I might have something that can shed some light on the hard work you’ve been doing?

It is relative to the apache license 2.0 which was mine?

Can I submit it for you to take a look at?

I have it in word and pdf form?

Please advise, and I thank you very much as well!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (2.5): Please advise
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: donn

79806229

Date: 2025-10-31 21:46:17
Score: 3.5
Natty:
Report link

Thanksgiving...

The above code should also work if the JSON strings contain newlines.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fearsus Lucena

79806224

Date: 2025-10-31 21:33:14
Score: 1.5
Natty:
Report link

the namespace is:

namespace Elastic\Elasticsearch;

adjust it:

use Elastic\Elasticsearch\ClientBuilder;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Herno del pueblo

79806221

Date: 2025-10-31 21:30:13
Score: 1.5
Natty:
Report link

No, pre-production and sandbox environments are not the same.
They serve different purposes in the software development and deployment lifecycle. Pre-Production environment is the only system environment where we have to do Performance Testings like Stress Testing and Load Testing etc. & UAT, but In some companies where Pre-Production environment is not available, then They do few rounds of Performance Testing in QA Environment itself or they do Performance Testing slightly for few Major scenarios/ Priority 1 scenarios or Priority 1 business functions Testing.

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

79806220

Date: 2025-10-31 21:29:12
Score: 1.5
Natty:
Report link

Please [edit] the code in the question to be a [mre]; that means any third party or private stuff should be removed or fully defined/declared for us. That lets us test any suggestions against an example we all have in front of us. For example, please either remove or define snakeToCamel for us.

EDIT: uh... I guess this isn't a normal comment. Or a normal question. It's an... "open ended question"? Hmm, I'm confused. Sorry, I'll probably come back and edit this in a bit?

Reasons:
  • RegEx Blacklisted phrase (2): any suggestions
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: jcalz

79806213

Date: 2025-10-31 21:20:10
Score: 3
Natty:
Report link

May I ask where the backend is hosted?
This behavior typically isn’t a code issue as many free or low-tier hosting services automatically suspend your app after being idle for sometime.
The first request after a long idle period usually fails because it’s waking up the server ‘cold start’ if you want to put it that way, and requests that follow works fine once the instance of your server is active again.

Reasons:
  • Blacklisted phrase (1): May I ask
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Fouad

79806195

Date: 2025-10-31 20:55:04
Score: 3.5
Natty:
Report link

Updated link to blog post by fdubs that contains details on what data to send over port 9100:

https://frankworsley.com/printing-directly-to-a-network-printer

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

79806189

Date: 2025-10-31 20:51:02
Score: 2
Natty:
Report link

I confirm that UAT(User Acceptance Testing) is done in SIT(System Integration Testing or Testing) environment or QA environment(QA environment is the another name of Testing environment or QA system). UAT is not done in Production. In this UAT phase of testing Business Users will be supported by UAT testers.

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

79806186

Date: 2025-10-31 20:46:01
Score: 0.5
Natty:
Report link

I find the $SECONDS feature available in MACOS zsh to be easy to use

start_time=$SECONDS

... your code to measure

end_time=$SECONDS
elapsed=$((end_time - start_time))
echo "Elapsed time: $elapsed seconds"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ron at BiophysicsLab

79806183

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

Failure to access the list of forms of a project using the ACC API with a two-legged OAuth token is expected behavior, according to how Autodesk authentication system was designed. HTTP 401 “Unauthorized” error with the “Authorization failed” message indicates that the token does not have the necessary permissions to access this specific resource. Although the two-legged token works correctly in other ACC APIs, the Forms API has a different requirement: it needs a three-legged token, as forms-related operations are directly linked to permissions and the context of a user within the project.

Two-legged token represents only the application and not a specific user, which limits access to features that require user-level authentication. On the other hand, the three-legged token is obtained by explicit authorization from an end-user and allows the application to act on behalf of this user, respecting the permissions defined in the ACC project. Therefore, even if the two-legged token works well for endpoints dealing with more generic data, it is not enough to access information that requires connection with a human user's account, such as forms.

Unfortunately, so far, Autodesk has not announced support for two-legged tokens in the Forms API. This limitation is related to the Autodesk Construction Cloud security architecture, which prioritizes the traceability and individual responsibility of each action within a project. As forms usually involve compliance, security, inspections, or field records, it makes sense that access to them depends on an authenticated user context.

For integrations that cannot use three-legged tokens, this restriction really imposes a challenge. In many cases, the only viable alternative is to re-evaluate the authentication flow using a service user or a dedicated account to carry out the initial authorization and, from that, store and renew the three-legged token in a controlled manner. Although this requires more complexity in the integration process, it is currently the only compatible way to access the Forms API.

For now, there is no official prediction of when — or if — Autodesk intends to allow the use of two-legged tokens in this API. The most recommended is to monitor updates of official documentation and APS forums (Autodesk Platform Services), where ads and support changes are usually published. This is a limitation widely recognized by the community, and several development teams have already requested Autodesk to reassess this policy, especially for automation cases without direct user interaction.

In short, the 401 error is not related to a technical problem in authentication, but to a deliberate limitation of API design. The Forms API requires a three-legged token to ensure the association of actions with an authenticated user, and so far there is no support or forecast for the implementation of two-legged tokens for this endpoint.

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

79806175

Date: 2025-10-31 20:11:52
Score: 3
Natty:
Report link

The core issue with your JWT decorator is the missing essential @ symbol. You are using jwt_required instead of @jwt_required() with a leading @ and following parentheses. Note that in class-based views or if you want to have more control over the authentication flow, it is recommended to use verify_jwt_in_request because it supports better error handling and ensures get_jwt_identity will never return None since it validates the token before it tries to extract its identity.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @jwt_required
  • Single line (0.5):
  • Low reputation (1):
Posted by: Raghav Thakur

79806162

Date: 2025-10-31 19:52:47
Score: 1.5
Natty:
Report link

NVARCHAR(MAX) can hold up to 2 GB of data, so a 700 KB JSON string is not a problem by itself.

However, building and storing large JSON blobs inside SQL Server is not recommended.

Maximum capacity specifications for SQL Server

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): can
  • Low reputation (0.5):
Posted by: Alparslan ŞEN

79806148

Date: 2025-10-31 19:42:44
Score: 2.5
Natty:
Report link

It runs in vscode cause of an extension. Try using Python from Python.org instead of MSFT store, check if the installation path is not added to your system environment variable path and/or reinstall Python and choose the ‘Add Python to PATH’ on the installer

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

79806142

Date: 2025-10-31 19:29:41
Score: 1
Natty:
Report link

You could use ThreadPoolExecutor and initialize workers who have a shared memory but it's affected by GIL.

you could use this simple code

from concurrent.futures import ThreadPoolExecutor
import tarfile
import os

def extract_file(fullpath, destination):
   
    try:
        with tarfile.open(fullpath, 'r:gz') as tar:
            tar.extractall(destination)
       
    except Exception as e:
        print(f"Error extracting {fullpath}: {e}")

def unziptar_parallel(path):
   
    tar_files = []
    for root, dirs, files in os.walk(path):
        for file in files:
            if file.endswith(".tar.gz"):
                fullpath = os.path.join(root, file)
                tar_files.append((fullpath, root)) 
    
   
    
    with ThreadPoolExecutor(max_workers=4) as executor:
      
        tasks = []
        for fullpath, destination in tar_files:
            task = executor.submit(extract_file, fullpath, destination)
            tasks .append(future)
        
        # انتظار انتهاء جميع المهام
        for task in tasks :
            task.result()

path = 'your path'
unziptar_parallel(path)

Check these resources for more information:

  1. https://www.geeksforgeeks.org/python/how-to-use-threadpoolexecutor-in-python3/

  2. https://medium.com/@parthsurati096/threadpoolexecutor-vs-processpoolexecutor-a-complete-comparison-03828617bb83

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammad Othman

79806141

Date: 2025-10-31 19:29:41
Score: 3
Natty:
Report link
header 1 header 2
Emil limens
emil3 limens_67
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Emil Jonsgården

79806140

Date: 2025-10-31 19:27:40
Score: 2
Natty:
Report link

I'm from the Apryse Mobile support team. In order to best assist you, would you be able to submit a minimal runnable sample along with a video demonstrating the issue you are encountering. You can submit a ticket here: https://support.apryse.com/support/tickets/new

I look forward to further assisting you.

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

79806134

Date: 2025-10-31 19:20:39
Score: 0.5
Natty:
Report link

Right before posting I noticed that my extension is actually working correctly, and the error, although cryptic, is not stopping the communication with the native host.

I will leave this question open since it would be good to know how to debug the error.

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

79806129

Date: 2025-10-31 19:13:37
Score: 1.5
Natty:
Report link

I'm not sure about typescript, sounds like your issue is there because short will always be 2 bytes in length. The method you are using will perform fast but will have a larger memory footprint. You could use a for loop(using BitConverter to get each byte) which will take a little longer(about 2x nano seconds) but memory footprint reports half.

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

79806123

Date: 2025-10-31 19:03:34
Score: 1.5
Natty:
Report link

Consider referencing users by their Keycloak UUID in your application tables rather than maintaining a separate local user table. If your business requirements don’t demand querying users by name or other attributes locally, storing only the Keycloak UUID allows you to fetch full user details through the Keycloak Admin REST API (GET /realms/{realm}/users/{uuid}) as needed. This approach leverages Keycloak’s built-in IAM security, keeps your app decoupled from identity management concerns, and ensures you always have current data while minimizing local exposure of sensitive user info.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ayush Shukla

79806122

Date: 2025-10-31 19:03:34
Score: 3
Natty:
Report link

I found this website which uses google sheet for names

https://livefamilytrees.com

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

79806115

Date: 2025-10-31 18:52:31
Score: 0.5
Natty:
Report link

Click the three-dot menu in the Outline then click Follow cursor.

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

79806114

Date: 2025-10-31 18:52:31
Score: 1.5
Natty:
Report link

The tip mentioned here Docker containers exit code 132 worked for me too! Adding a screenshot to help find it for others.

enter image description here

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: ubienewbie

79806099

Date: 2025-10-31 18:39:28
Score: 3.5
Natty:
Report link

I found that it is blocked from within my organization. I am going to delete my question.

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

79806093

Date: 2025-10-31 18:24:24
Score: 4
Natty:
Report link

It was happening on my Edge. It was because Pause on caught exceptions was checked.

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

79806088

Date: 2025-10-31 18:16:21
Score: 3.5
Natty:
Report link

Use a VM running something like windows 7/XP, it'll probably work.

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

79806069

Date: 2025-10-31 17:40:13
Score: 1.5
Natty:
Report link

Might be discussed. I think option B is the correct, modern, and production-ready best practice. Your identity provider (Keycloak) should be the single source of truth (SSoT) for user identity. Option A (Syncing) is an anti-pattern. It violates the single source of truth principle. It creates a fragile, tightly-coupled system where your application database is just a stale, partial copy of Keycloak's data.

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

79806063

Date: 2025-10-31 17:32:11
Score: 1.5
Natty:
Report link

What do you mean by "is down"? For me, the page seems to load normally.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What do you mean
  • High reputation (-2):
Posted by: mkrieger1

79806041

Date: 2025-10-31 17:09:05
Score: 0.5
Natty:
Report link

After emailing the Solr user mailing list, there are TWO things you need to do:

  1. You need to have uninvertible=true, AND

  2. You need to explicitly specify an analyzer for fields, even though they're based on TextField.

Here's what wound up working:

curl -X POST -H 'Content-type:application/json' \
  "http://localhost:8983/solr/$COLLECTION/schema" \
  -d '{
    "add-field-type": {
      "name": "multivalued_texts",
      "class": "solr.TextField",
      "stored": true,
      "multiValued": true,
      "indexed": true,
      "docValues": false,
      "uninvertible": true,
      "analyzer": {
        "type": "index",
        "tokenizer": {
          "class": "solr.StandardTokenizerFactory"
        },
        "filters": [
          {
            "class": "solr.LowerCaseFilterFactory"
          }
        ]
      }
    }
  }'
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mark Bennett

79806038

Date: 2025-10-31 17:07:04
Score: 0.5
Natty:
Report link

just ran into this issue!

It seems to be an issue with the loop, cam.GetNextImage needs to be increased to allow for your first hardware trigger. I just added a few 0s.

  for i in range(NUM_IMAGES):
            try:

                #  Retrieve the next image from the trigger
                result &= grab_next_image_by_trigger(nodemap, cam)

                #  Retrieve next received image
                image_result = cam.GetNextImage(1000)

                #  Ensure image completion
                if image_result.IsIncomplete():
                    print('Image incomplete with image status %d ...' % image_result.GetImageStatus())

                else:
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Amon-Ra Refractor

79806029

Date: 2025-10-31 16:51:00
Score: 0.5
Natty:
Report link

I was able to solve this issue by changing my code from

@Configuration
@EnableTransactionManagement
public class Neo4jConfig {

    @Bean
    public Neo4jTransactionManager transactionManager(org.neo4j.driver.Driver driver) {
        Neo4jTransactionManager manager = new Neo4jTransactionManager(driver);
        manager.setValidateExistingTransaction(true);
        manager.
        return manager;
    }
}

to

@Configuration
@EnableTransactionManagement
public class Neo4jConfig {

    @Value("${spring.data.neo4j.database}")
    private String database;

    @Bean
    public DatabaseSelectionProvider databaseSelectionProvider() {
        return () -> DatabaseSelection.byName(database);
    }

    @Bean
    public Neo4jClient neo4jClient(Driver driver, DatabaseSelectionProvider provider) {
        return Neo4jClient.with(driver)
                .withDatabaseSelectionProvider(provider)
                .build();
    }

    @Bean
    public PlatformTransactionManager transactionManager(Driver driver, DatabaseSelectionProvider provider) {
        return Neo4jTransactionManager.with(driver)
                .withDatabaseSelectionProvider(provider)
                .build();
    }
}

I found this on a Chinese website, along with an explanation: https://leileiluoluo-com.translate.goog/posts/spring-data-neo4j-database-config-error.html?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=sv&_x_tr_pto=wapp

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

79806021

Date: 2025-10-31 16:42:58
Score: 3.5
Natty:
Report link

Added a simple implementation. I have not attempted any of your suggestions yet.

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

79806012

Date: 2025-10-31 16:33:56
Score: 0.5
Natty:
Report link

The reason audio cuts off when you release a key is that you only calculate the next audio sample in updateStream() when a key is pressed. The moment you release the key, the envelope release works, but the audio signal stops because you just assign each new sample to prevSample (i.e. keysPressed[i] is false). A solution would be just calculate the next sample every iteration of the loop with no if condition.

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

79806011

Date: 2025-10-31 16:32:55
Score: 1
Natty:
Report link

It's likely that you're simply reaching some internal maximum number of connections. As @Barmar pointed out in a comment, you're not actually ending your responses. Change response.end; to response.end(); and it's likely to work as expected.

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

79806006

Date: 2025-10-31 16:29:55
Score: 2
Natty:
Report link

=============== Solution thanks to acw1668 =================

Updated Excel_Frame 
1) Added width=800, height=300 
2) Added sticky="nsew" 
3) Added Excel_Frame.pack_propagate(0)


# Create Excel_Frame for TreeView Excelsheet
Excel_Frame = ttk.Frame(Main_Frame, width=800, height=300)
Excel_Frame.grid(row=0, column=1, rowspan=20, sticky="nsew")

treeScroll_x = ttk.Scrollbar(Excel_Frame, orient="horizontal")
treeScroll_y = ttk.Scrollbar(Excel_Frame, orient="vertical")

treeScroll_x.pack(side="bottom", fill="x")
treeScroll_y.pack(side="right", fill="y")

treeview = ttk.Treeview(Excel_Frame, show="headings", xscrollcommand=treeScroll_x.set, yscrollcommand=treeScroll_y.set)

treeview.pack(side="left", fill="both", expand=True, padx=5, pady=5)

treeScroll_x.config(command=treeview.xview)
treeScroll_y.config(command=treeview.yview)

Excel_Frame.pack_propagate(0)
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • No latin characters (1):
  • Filler text (0.5): ===============
  • Filler text (0): =================
  • Low reputation (0.5):
Posted by: user2741620

79806005

Date: 2025-10-31 16:29:55
Score: 3.5
Natty:
Report link

Are there any results? is it working with setting int10h?

If so can you post the content of the grub/grub-core/boot/i386/pc/boot.S file or at least

the part of the boot.S file where the int 10h is handled

                                                                                    
/*                                                                                  
 * message: write the string pointed to by %si                                      
 *                                                                                  
 *   WARNING: trashes %si, %ax, and %bx                                             
 */                                                                                 
                                                                                    
        /*                                                                          
         * Use BIOS "int 10H Function 0Eh" to write character in teletype mode      
         *      %ah = 0xe       %al = character                                     
         *      %bh = page      %bl = foreground color (graphics modes)             
         */                                                                         
1:                                                                                  
        movw    $0x0001, %bx                                                        
        movb    $0xe, %ah                                                           
        int     $0x10           /* display a byte */                                
LOCAL(message):                                                                     
        lodsb                                                                       
        cmpb    $0, %al                                                             
        jne     1b      /* if not end of string, jmp to display */                  
        ret                                                                         
                                                                                    
        /*                                                                          
         *  Windows NT breaks compatibility by embedding a magic                    
         *  number here.                                                            
         */                                                                         
                                                                                    
Reasons:
  • RegEx Blacklisted phrase (2.5): can you post
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Mario Pink

79805992

Date: 2025-10-31 16:15:51
Score: 1.5
Natty:
Report link

@Mindswipe The alignment problem occurs in the TypeScript. The reason the short array is being converted to a byte array is to leverage the Blazor interop optimisation that I linked from my question. If you transfer a short array, Blazor 64-bit encodes the array before using SignalR to transfer it to the browser, and then converts it back in the TypeScript interop, which introduces a large overhead.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Mindswipe
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Matthew Watson

79805990

Date: 2025-10-31 16:11:50
Score: 4
Natty:
Report link

@Dai I added this link to the original question. I'm also curious how other people might define it, but the definition I've seen used most is:

An architectural style where independently deliverable frontend applications are composed into a greater whole.

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Dai
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jaidiac

79805989

Date: 2025-10-31 16:09:49
Score: 1.5
Natty:
Report link

@dbc I had a typo in the original code, which I've fixed. However note that the only way to get Blazor to optimise the interop call to use binary data rather base-64 encoded data is to transfer bytes. If you try to transfer shorts it will use base-64 encoding. (Also note that JSON serialisation has even more overhead than base-64 encoding!)

Reasons:
  • No code block (0.5):
  • User mentioned (1): @dbc
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Matthew Watson

79805975

Date: 2025-10-31 15:54:45
Score: 0.5
Natty:
Report link

We'll forget about the right way to do thing and just fix your code.

Firstly, why all that?

tile.classList.add('date_active');
imgSelect.classList.add('tl_LegImgVisible');
imgSelect.setAttribute('aria-hidden', false);
legendSelect.classList.add('tl_LegImgVisible');
legendSelect.removeAttribute('inert');
credSelect.classList.add('credShow'); 

And not something like that ?

// assume item is a wrapper or each timeline item
item.setAttribute('aria-hidden', false);

And secondary, you issue is related to opacity so where is the CSS code because I don't see where you update it and assume that it is in your CSS code.

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

79805971

Date: 2025-10-31 15:51:44
Score: 2
Natty:
Report link

Why don't you just use Livekit? Here's an example: https://willlewis.co.uk/blog/posts/deploy-element-call-backend-with-synapse-and-docker-compose/ I have a synapse server set up recently. Livekit works for Element Call, but I am not jet finished with implementing a TURN server. I recommend to use nginx and docker-compose but you don't have to.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: s_cheese

79805968

Date: 2025-10-31 15:50:44
Score: 3
Natty:
Report link

I have already done extensive research into this problem and have gotten nowhere. As for putting in a link to IBObjects; if you don't know what IBObjects is you're not going to be able to help. Putting in a link to the defunct web site isn't going to help.

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

79805965

Date: 2025-10-31 15:48:43
Score: 2
Natty:
Report link

This happened for me in a similar fashion as OP's question. After reading Ybl84f1's comment, I realized that (a) my laptop has dual GPUs, and (b) it wasn't plugged in at the time, forcing Windows to use the Intel GPU. Plugging it in solved the issue.

Tried to comment on answer above, but couldn't. But maybe this will help someone.

Reasons:
  • Blacklisted phrase (1): to comment
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Steve K.

79805962

Date: 2025-10-31 15:46:42
Score: 0.5
Natty:
Report link

When calling a function, whether it is main or any other function, its return address is pushed on the stack.

The important thing to note in the example is:

 ret = (int *)&ret + 2;

Here, we are casting ret as an int, and then moving up the stack by &ret + 2 (+14 bytes)

This means that ret is now pointing to the return address for function main.
(*ret) = (int)shellcode;
Here, we overwrite the return address with the address of the shellcode.
So now, when the program returns, the jmp instruction goes to the address of the shellcode and not the intended return address

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: CPPNEWBIE

79805959

Date: 2025-10-31 15:45:42
Score: 1
Natty:
Report link

I found this script which does the trick

#!/bin/bash

# Get the time one hour ago in ISO 8601 format
one_hour_ago=$(date -u -d '1 hour ago' +'%Y-%m-%dT%H:%M:%SZ')

# List all the latest delete markers
delete_markers=$(aws s3api list-object-versions --bucket my-bucket --prefix my-folder/ --query 'DeleteMarkers[?IsLatest==`true`].[Key, VersionId, LastModified]' --output text)

# Delete only the delete markers set within the last hour
while IFS=$'\t' read -r key version_id last_modified; do
  if [[ "$last_modified" > "$one_hour_ago" ]]; then
    echo "Deleting delete marker for $key with version ID $version_id, set at $last_modified"
    aws s3api delete-object --bucket my-bucket --key "$key" --version-id "$version_id"
  fi
done <<< "$delete_markers"

source: https://dev.to/siddhantkcode/how-to-recover-an-entire-folder-in-s3-after-accidental-deletion-173f

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

79805954

Date: 2025-10-31 15:40:40
Score: 1
Natty:
Report link

Following up on this -- I reported this to Intel and it turns out this is a bug! Adrian Hunter has recently posted patches to the mailing list to fix this.

https://lkml.org/lkml/2025/10/13/282

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

79805953

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

Change your content scale to crop for your imageview... same with coil AsyncImage

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

79805951

Date: 2025-10-31 15:38:39
Score: 0.5
Natty:
Report link

Slow processing likely isn't avoidable with the limitations of the hardware you're using.

If the issue is simply that older frames are getting processed, you can separate the image retrieval into its own thread, then pull the latest frame from that each time the YOLO process finishes processing a frame. This will result in a lot of lost frames, but you'll have a somewhat consistent delay. This also works well for ensuring you don't miss intermediate frames for encoded streams, which can result in corrupted frames getting processed.

If the issue is that you expect your frames to be processed faster, you can consider using a lighter model (replace "yolov8n.pt"). I still wouldn't expect to your code to keep up with the frame rate of your camera, though. Another option here is to look into purchasing a third-party AI chip to plug in to your Pi, which would function as a sort of GPU replacement for accelerated inference.

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

79805943

Date: 2025-10-31 15:30:38
Score: 3
Natty:
Report link

It's not necessary to appendTo the modal body. This solution can leads to other rendering problems.

I gave an explanation of why this "bug" happens. And a "clean" solution without downfall. Here's the link:
https://stackoverflow.com/a/79805871/19015743

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

79805940

Date: 2025-10-31 15:28:37
Score: 0.5
Natty:
Report link
SELECT 
    p.id,
    CASE
        WHEN EXISTS (SELECT 1 FROM b_codes WHERE p.Col1 LIKE value) THEN 'b'
        WHEN EXISTS (SELECT 1 FROM s_codes WHERE p.Col1 LIKE value) THEN 'S'
        WHEN EXISTS (SELECT 1 FROM u_codes WHERE p.Col1 LIKE value) THEN 'U'
        ELSE 'U'
    END AS Flag
FROM p;

output:

ID Flag
AAA b
AAA S
AAA U
AAA U
BBB U
BBB U
BBB U
BBB U
CCC b
CCC U
DDD U
DDD U
DDD U
Reasons:
  • Has code block (-0.5):
  • No latin characters (0.5):
  • Low reputation (0.5):
Posted by: Alparslan ŞEN

79805936

Date: 2025-10-31 15:26:36
Score: 1.5
Natty:
Report link

I switched to the pre-release version of the Jupyter extension, and it worked for me.

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

79805935

Date: 2025-10-31 15:25:36
Score: 0.5
Natty:
Report link

We don't need you to simply repeat that you perceive a problem—we understood that from your first post. We were asking for more details on what you see, and suggesting ways to debug it further.

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

79805932

Date: 2025-10-31 15:21:35
Score: 0.5
Natty:
Report link

Have you tired to change ConfluentKafkaContainer by KafkaContainer?

import org.testcontainers.containers.KafkaContainer;

@Container
@ServiceConnection
static KafkaContainer kafka = new KafkaContainer(
    DockerImageName.parse("confluentinc/cp-kafka:7.7.0")
);

By switching to the base KafkaContainer, Spring Boot's KafkaContainerConnectionDetailsFactory will execute, read the container's getBootstrapServers() method, and correctly configure the spring.kafka.bootstrap-servers property for you.

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