79779455

Date: 2025-09-30 19:35:15
Score: 4
Natty:
Report link

This is caused by CloudFlare. Your response to him was quick and easy, but incorrect.

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

79779448

Date: 2025-09-30 19:25:12
Score: 0.5
Natty:
Report link

Probably late to the party, but it doesn't work because you're matching everything in the previous setting, i.e., SECURE_REDIRECT_URLS = ['^'].
Remove (or at least adapt) this and it will work.

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

79779442

Date: 2025-09-30 19:10:09
Score: 3
Natty:
Report link

A SSN can return more than one account number if the member is tied to the account as primary, joint, etc... Each account would then need to be inquired on to confirm the correct account, member, and/or shares.

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

79779430

Date: 2025-09-30 18:47:03
Score: 0.5
Natty:
Report link

Without changing any code, you can enable/disable the login form:

and you'll find the options you need.

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

79779426

Date: 2025-09-30 18:44:02
Score: 0.5
Natty:
Report link

I believe because you rotate the y-axis label by -90 you need to apply the attr to x so that it moves "left and right" but that would be rotated by 90 so it would move up and down. If that makes sense.

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

79779420

Date: 2025-09-30 18:37:00
Score: 3
Natty:
Report link

print (4 + 3 _ ( 2 * 5 / 10) )

print ( 4 * 5 + 5)

Print (5 * (2 // 3))

print (2 ** 3 ** 2)

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

79779415

Date: 2025-09-30 18:30:58
Score: 1.5
Natty:
Report link

This code won't generate any HTML code, it's just printing on the console...

You only need to learn how to produce HTML with JSP code. A good JSP tutorial for beginners should help you a lot.

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

79779414

Date: 2025-09-30 18:27:58
Score: 1.5
Natty:
Report link

I had similar error when my junit-jupiter-engine dependency version was lower than version of junit-jupiter-params.

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

79779406

Date: 2025-09-30 18:18:56
Score: 2
Natty:
Report link

Plain ASCII is actually seven bits. "Extended" ASCII variants are eight bits. Its implementation defined if a char is signed or unsigned. And multi-byte encodings (like e.g. UTF-8) can't fit in an eight-bit type. If you want to "compress" bytes, don't compress "characters", compress a stream of unknown bytes instead. And if you want to compress raw data, don't open files in text-mode, that will mess things up on Windows. Also, I recommend you use a vector of std::uint8_t elements instead of a string. With std::uint8_t you won't have your negative value problem to begin with. The lesson to be learned: If you want to only deal with unsigned values, use unsigned types. Credits to: @Someprogrammerdude for answering this question in the comment section!

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Someprogrammerdude
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jordon

79779392

Date: 2025-09-30 18:01:52
Score: 0.5
Natty:
Report link

Deleting the android folder and running this command worked for me.

flutter create --platforms android .
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aabis Ahmed Hassan

79779389

Date: 2025-09-30 17:57:51
Score: 1
Natty:
Report link

You can apply a map to the index for formatting.

df.index = df.index.map(lambda x: f"{x:.2e}")

Full Example Code:

import pandas as pd
data = {
    "Name": ["Alice", "Charlie", "Alex"],
    "Age": [25, 30, 35],
    "Score": [88.5, 85.0, 91.5]
}

# Create DataFrame
df = pd.DataFrame(data)

# Set index values
index_values =[1000000, 10000000, 100000000]

# Format index
df.index = df.index.map(lambda x: f"{x:.2e}")

Output df

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

79779370

Date: 2025-09-30 17:34:45
Score: 0.5
Natty:
Report link

Wayyyyyy to the right of the toolbar labeled Clang-Tidy, you'll see a menu that might not look like a menu:

image of far right of Qt Creator window

...but if you click on Views you'll see the following:

image of the popup that appears when you click on "Views"

Click on Diagnostics and voilà! You get the pretty-looking output.

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

79779367

Date: 2025-09-30 17:33:44
Score: 3.5
Natty:
Report link

The solution was to downgrade the GPU driver - that specific version is having some issues. NVIDIA Studio Driver 580.97 solved that problem.

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

79779357

Date: 2025-09-30 17:20:41
Score: 2
Natty:
Report link

You can view the manual entries from Maxima by typing

?? create_list

or

?? makelist

If you have a particular list that you wish to create in Maxima that does not fit in either of the usages, or does not work with the 'collect' suggestion above, please feel free to explain your problem.

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

79779348

Date: 2025-09-30 17:08:38
Score: 2
Natty:
Report link

Just sharing this because it might happen to others:
When you try to "git push" some specific branch
make sure you don't forget the "remote" name:

I.e., make sure you're typing "git push origin main" instead of "git push main"

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

79779347

Date: 2025-09-30 17:07:38
Score: 2
Natty:
Report link

These tag descriptions aren't currently available, but Jack Henry is actively working to get them added within DataHub. The new dataset will be named settings_tags_v3, or similar.

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

79779339

Date: 2025-09-30 16:48:34
Score: 2
Natty:
Report link

As of September 24, 2025, Gemini 1.5 (pro and flash) were retired and became a legacy model. That's why you are getting the 404 error when using the retired models. You should migrate to Gemini 2.0/2.5 Flash and later instead. Please follow the latest Gemini migration guide to migrate.

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

79779337

Date: 2025-09-30 16:46:33
Score: 3.5
Natty:
Report link

The issue comes from the Dart package for VSCode; you can disable the options within the configuration panel.

enter image description here

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

79779336

Date: 2025-09-30 16:46:33
Score: 3
Natty:
Report link

but i get my homework code from classera, here is the code

g1=(int("Input your age"))

x=10

g2=g1+10

print("in ten years, you will be ", g2," years old")

whats wrong with my code? (remember, im using normal online small basic, not offline)

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

79779322

Date: 2025-09-30 16:17:27
Score: 1.5
Natty:
Report link
SELECT
    C.ItemID,
    C.Name AS ReportName,
    C.Path AS ReportPath,
    ReportDefinitionXML.exist('//*[contains(text()[1], "Pages/Folder.aspx")]') as hyperlink,
    CA1.ReportDefinitionXML
FROM
    dbo.Catalog AS C
CROSS APPLY (SELECT CONVERT(XML, CONVERT(VARBINARY(MAX), C.Content,1)) AS ReportDefinitionXML) AS CA1
WHERE
    C.Type = 2

This is what I did to get it to work. Thank you to everyone who contributed to helping me to get this working.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: John S

79779309

Date: 2025-09-30 16:09:24
Score: 2
Natty:
Report link

Situation was VS2022 and .Net 4.8. For us only creating custom SGen post build step worked.

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

79779307

Date: 2025-09-30 16:06:23
Score: 5
Natty:
Report link

Fixed by un-exporting app, and then re-exporting. See: https://github.com/89luca89/distrobox/issues/1847

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

79779302

Date: 2025-09-30 16:02:22
Score: 0.5
Natty:
Report link

I wrote a blog post with a section on this specific topic (search for 'Imports v Depends'). The visuals make it a lot easier to understand.

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

79779301

Date: 2025-09-30 16:02:22
Score: 0.5
Natty:
Report link

This is old but still relevant. I was writing a floodFill function to demonstrate recursion. (Flood fill is meant to fill an area of a graphic with single color, where "area" is a single, specific color touching other pixels with the same color. Drawing programs usually represent this feature with a spilling paint can.) My function worked properly in all browsers except FireFox because of an interesting user protection feature.

In FireFox, putImageData changes the specified colors subtlely before rendering them. getImageData returns the changed data. For example, if you specify opaque black (0x000000FF) for a pixel, the rendered and returned value might be 0x000200FF or 0x000001FF. It's not usually enough to notice visually, so it's not that big a deal until, of course, it is.

For example, I called my floodFill function to create the black triangle bounded by the cyan, light gray, and blue lines. FireFox renders it thusly:

Sample image with a triangular area filled, ostensibly, with black.

This is the same image, blown up:

An enlargement of the previous image.

If the black area is then flood-filled with yellow, you might see the following result:

The triangular area is now yellow, except for multiple, single pixels which are nearly, but not, black.

The flood-fill algorithm correctly misses single pixels which aren't exactly black (0x000000FF).

Why is FireFox purposely corrupting the data in this way? It's a feature that's enabled by setting "strict" privacy settings. It's meant to protect a FireFox user from fingerprinting graphics.

See https://www.h3xed.com/programming/javascript-canvas-getimagedata-pixel-colors-slightly-off-in-firefox for more information.

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

79779277

Date: 2025-09-30 15:34:15
Score: 1.5
Natty:
Report link

finaly i got it :

from ibapi.client import OrderCancel

app.cancelOrder(order_id, OrderCancel())
time.sleep(1)

that work for sure but not test without time sleep

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

79779276

Date: 2025-09-30 15:31:14
Score: 3
Natty:
Report link
import os

res = os.environ['var']
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gulam Jeelani

79779272

Date: 2025-09-30 15:28:13
Score: 2
Natty:
Report link

You can do this with an online font generator. It delivers the font already formatted in unicode and usually overrides website formatting. I haven't got all my bookmarks on this computer but here is an example: https://www.fontspace.com/font-generator There are plenty of free sites that do this and sometimes it is very useful.

𝓽𝓱𝓲𝓼 𝓯𝓸𝓷𝓽 or ƚᴎoᎸ ꙅiʜƚ

ʇuoɟ sıɥʇ

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

79779267

Date: 2025-09-30 15:26:12
Score: 2.5
Natty:
Report link

Running into a similar issue. Using a cloud scheduler to trigger a Cloud Run service and although the attempt deadline is set to 30 mins it retried after 3 minutes. It also oddly then set the "Last Run" time to "Dec 31, 1969, 7:00:00 PM". Some odd behavior going on.

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

79779261

Date: 2025-09-30 15:13:09
Score: 1
Natty:
Report link

Rwlock behavior

Why pthread_rdlock doesn`t downgrade the lock?

Just because you think a particular behavior or mode of operation would be reasonable does not mean you can rely on it to be the actual behavior or mode of operation. Often there are multiple plausible alternatives. Occasionally you will run into designs that just don't make sense to you or are objectively poor. It is your duty as programmer to rely on documentation instead of on assumptions.

In particular, this interface is specified by POSIX, which says:

The calling thread acquires the read lock if a writer does not hold the lock and there are no writers blocked on the lock.

(emphasis added)

If the calling thread holds the write lock then a writer does hold the lock. What's more:

[... I]f the read lock is not acquired, the calling thread shall block until it can acquire the lock. The calling thread may deadlock if at the time the call is made it holds a write lock.

The specs also describe among the error conditions:

[EDEADLK]
A deadlock condition was detected or the current thread already owns the read-write lock for writing.

, which would be an allowed alternative to actually deadlocking under those circumstances.

Therefore, there is no good reason for a programmer who has done their due diligence to assume that they could "downgrade the lock" from a write lock to a read lock by calling pthread_rwlock_rdlock() without first releasing the write lock by calling pthread_rwlock_unlock(). The same applies to upgrading from a read lock to a write lock.

Your code and questions

With respect to your code, then,

The (1) acquires the lock,

Yes, if successful. In particular, it acquires the write lock.

then (2) lock it into read-mode.

A read-write lock is better thought of as a bundle of two separate locks than as a single, modal lock. pthread_rwlock_rdlock() attempts to acquire the read lock of the pair. This will not succeed while any thread holds the write lock, including the one trying to obtain the read lock.

I suppose that (3) will block the current thread, but actually it hasn`t. The program goes well.

How do you know it doesn't block? If it blocked for only a few milliseconds then you probably wouldn't notice. Perhaps you meant that you supposed (3) would deadlock but then it's not clear to me why you thought you could downgrade a lock but could not upgrade one. (In fact, you cannot do either).

The manual doesn`t explain the downgrading or upgrading stuffs.

Exactly. The manual does not describe upgrading or downgrading a rwlock that is already held. On the contrary, although it doesn't explicitly say you can't, it does contain language that should at least make you doubt whether you can do it with your particular pthreads implementation, and that should convey that it is not portable to rely on doing so. But if you have a write lock and want a read lock instead then you can of course unlock the rwlock and then, separately, acquire the read lock. Likewise for going the other direction. That does afford the possibility that another thread acquires one side or the other of the lock in between, but if you cannot abide that then you need to prevent it by some other means.

Did I ignore something?

It looks like you may have ignored that attempts to acquire either side of a rwlock can fail, as almost all calls to system interfaces can do. You need to check the return values of your function calls to confirm that they succeeded and / or recognize when they fail. In your particular case, I suspect that some of your lock acquisition calls are failing, possibly with EDEADLK.

Rationale

If your "why?" is a request for a rationale for this design then I'm afraid you're out of luck. The POSIX system interfaces rationale document does devote a few words to pthreads read/write locks, but it does not speak directly to this question, so we can only speculate about why the rwlock interface is designed as it is in this regard.

If you want to rationalize it, though, you can imagine that a read-write lock is not a unitary object, but rather two separate locks bundled together and managed cooperatively. That doesn't necessarily imply that you couldn't have lock downgrades, but perhaps it makes that prospect seem less natural. You can also observe that POSIX maintains acquire / release consistency across a variety of synchronization objects.

Reasons:
  • Blacklisted phrase (1): How do you
  • Blacklisted phrase (0.5): why?
  • RegEx Blacklisted phrase (2.5): do you know it
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: John Bollinger

79779244

Date: 2025-09-30 14:56:05
Score: 5.5
Natty:
Report link

Of course, it wasn't broken when people just used the plain old meta-command:

<meta http-equiv="refresh" content="0;url=#contentstart" />

but I don't know if this still works with all of the MILLION different scripts you have NOW. (What was wrong with straight forward HTML? I want the information, not to be entertained by dancing fonts and 'poop with eyes' emojis.)

Reasons:
  • Blacklisted phrase (2): poop
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: MavortisCeasar

79779240

Date: 2025-09-30 14:50:03
Score: 4
Natty:
Report link

enter image description here
For me still crashing on launch in real device with iOS 26.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ricardo Belfort

79779234

Date: 2025-09-30 14:46:02
Score: 3.5
Natty:
Report link

I don't know why. but I use `gemini-2.5-flash` it work. let's try

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

79779232

Date: 2025-09-30 14:43:01
Score: 0.5
Natty:
Report link

Well this is a cautionary tale.
All my settings were correct, the missing piece was publishing from Visual Studio. When I set up the publish settings I either checked "Use this connection string art runtime" or left it checked and this was holding my original connection string before I add the SQL server user and saving it in appsettings.production in the published files which is not a part of my application.
With that being said, and having now noticed this I can now finally get on with my project as it can now connect to SQL.
I don't mind putting this out there if it helps someone else in the future!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Username_null

79779215

Date: 2025-09-30 14:23:56
Score: 0.5
Natty:
Report link

For the delay block there is no station id - the delay block has no station concept.

If you want better control, I'd suggest you move to a Service block, with a ResourcePool. Then you can have finer control (e.g. check which unit was seized and act accordingly)

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

79779213

Date: 2025-09-30 14:21:55
Score: 1
Natty:
Report link

hi I think this will work

df <- data.frame(replicate, start, Volume_loss) 

df %>% mutate( Cum_vol_loss= cumsum(Volume_loss), Final_Volume=(start-Cum_vol_loss)  )
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chathura Perera

79779211

Date: 2025-09-30 14:21:55
Score: 1.5
Natty:
Report link

In the sdk manager in android studio, uncheck (Hide obsolete packages) checkbox on the bottom, then search for (Android sdk tools (Obsolete)). by installing it you get the (tools) folder in the root of the Sdk dir.

EDIT: You will need Java installed to launch it.

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

79779206

Date: 2025-09-30 14:18:54
Score: 3
Natty:
Report link

You can't have multiple ID with the same name, so I wonder how you are not running into an issue. But use Class instead.

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

79779200

Date: 2025-09-30 14:14:52
Score: 5
Natty:
Report link

I'm facing the same issue. I can set the attempt deadline to about 10 minutes or more and it works, but

GCP doesn't respect the setting for max retry attempts = 0

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Low reputation (1):
Posted by: Lisa Villar

79779199

Date: 2025-09-30 14:14:52
Score: 4.5
Natty: 4.5
Report link

Use an older java version like jdk 17
https://developer.android.com/build/releases/past-releases/agp-8-9-0-release-notes

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

79779175

Date: 2025-09-30 13:55:47
Score: 1
Natty:
Report link

you actually don't need to use the piping operator at all. The table function allows for logical indexing.

table(iris$Species == 'setosa' & iris$Sepal.Length >= 5.7)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jclifto8

79779168

Date: 2025-09-30 13:49:45
Score: 5.5
Natty: 5.5
Report link

did you manage to install the Spacetimeformer so it works ? I keep having the problem with a torch version. Documentation says it requires Pytorch 1.11.0, but that version does not have torch.get_autocast_dtype() attribute and I can't find the answer to this problem. Any attempt to run:

python train.py model dset - h

crashes with this error.

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Mirek Wilmer

79779167

Date: 2025-09-30 13:48:45
Score: 1
Natty:
Report link

I think best way is to use .*? and capture first occurrence of three consecutive letters that come after a space. Hope this is what you are looking for.

gsub(".*? ([a-zA-Z]{3}).*?/.*? ([a-zA-Z]{3}).*", "\\1/\\2", mynames)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Chathura Perera

79779145

Date: 2025-09-30 13:28:40
Score: 8.5
Natty: 7
Report link

any update on this, I am facing a similar issue where the image build fails when installing dependencies?

Reasons:
  • Blacklisted phrase (1): update on this
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ibrahim Malik

79779138

Date: 2025-09-30 13:21:37
Score: 0.5
Natty:
Report link


smiling eyes steadfast 


smile
couldnt hide my smile if i 🧕🏿ryed
i like the way i feel around 👁️👁️stead
🖖🏿pi touch
🫵🏼 eyes smiling
sanz keep from smiling
hear  dem birds above Us
💖wondering whatpart of the earth you 🧶visiting today
osama bin ladem and ana aye chocolate walnut gluten free cookies at 
that bakery last night



was that u?

i truat in this us thing again


we are weaving the loom throughout our realities

shared the sweetest thing about you in the car
eye steadfast smiling
i just lost the thought to share with you
what is it 
what you believe in
why we exist
music you listen to





Bon Jovi bought a mansion
the beats that weave together your
ancestors in your heart


hiding ourtrue selves for the right 
raisins

i released the urge to edit i before steadfast
delete i
contemplation
us
?
smiling eyes steadfast 
new line
new title


contemplation
how to hide my sexy from u
dual ana
i am wanting to write sexy
turbulence and resistance
but
ah that smile


smiling eyes steadfast 


smile
couldnt hide my smile if i tried
i like the way i feel around you
your touch
your eyes smiling
i cannot keep from smiling
i hear the birds above me
and wonder what part of the earth you are visiting today
benti and i had chocolate walnut gluten free cookies at 
that bakery on montana avenue last night
you are weaved throughout our realities
a friend shared the sweetest thing about you in the car
smiling eyes steadfast
i just lost the thought to share with you
what is it 
what you believe in
why we exist
music you listen to
the beats that weave together your
ancestors in your heart
origin root
the decision to get in this line of work
rolling waves
malibu
sunsetting
spreader lights on
purples
magentas 
in the skies
ocean waters
wondering
what are you a snob about?


i said on the land line
fine art and muaic

i am hiding myself
for thoughts alone in you



Reasons:
  • Blacklisted phrase (0.5): i cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: universally

79779133

Date: 2025-09-30 13:19:37
Score: 3
Natty:
Report link

In app.yaml I have added openId for the scope of the oauth property. Because of this, instead of going with the oauth flow, Spring was triggering the open id connect flow. The solution was to extend the specific class of OidcService instead of DefaultOAuth2UserService

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

79779126

Date: 2025-09-30 13:13:35
Score: 4
Natty:
Report link

Man i am facing the same issue for some reason every time you switch between playables in a single playable director it looses its reverences. but this is only happening in certain gameobjects as i still use a single playable director with multiple playables. but for some reason it doesn't work on other gameobjects. so some fix you can do is have multiple playable directors each dedicated for each playable.

If you found a better solution let me know.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): i am facing the same issue
  • Low reputation (1):
Posted by: Charan Bose

79779124

Date: 2025-09-30 13:11:35
Score: 1
Natty:
Report link

Or simply use serde and set the rename_all attribute to lowercase like this:

#[serde(rename_all = "lowercase")]
enum BoxColour {
    Red
    Blue
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gabriel Stoica

79779119

Date: 2025-09-30 13:08:34
Score: 1
Natty:
Report link

Using the beta version helped me sort out this issue. I was experiencing this issue with the latest and alpha versions

This is my current setup

"react": "19.0.0",
"react-native": "0.78.0",
"react-native-maps": "^2.0.0-beta.15",
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AKA

79779115

Date: 2025-09-30 13:04:29
Score: 8.5 🚩
Natty:
Report link

I am also looking for a solution for this question.
May I know how you solved it?
And I am looking for a solution for wat to wasm 3.0 too

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (2): I am also looking
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: SUN

79779092

Date: 2025-09-30 12:35:22
Score: 1.5
Natty:
Report link

After placing required JARs inside <PRODUCT_HOME>/lib as stated in WSO2 official doc link , The above mentioned issue got resolved.

List of JARs added:

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

79779081

Date: 2025-09-30 12:22:19
Score: 1
Natty:
Report link

Thank you.

What I don't understand is that the debugger shows BaseObject to be of type PSVersionHashTable ; so, why can't I do:

ConsoleWriteLine((result[0].BaseObject)["OS"]);

What works is (as you've explained):

ConsoleWriteLine(((PSVersionHashTable)result[0].BaseObject)["OS"]);

The cast to PSVersionHashTable puzzles me...

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Andreas

79779078

Date: 2025-09-30 12:18:18
Score: 1.5
Natty:
Report link

What worked for me was using the original installer:

1. Go to your Downloads folder (or wherever you saved the Python installer executable).
2. Right-click the installer and select Run as administrator.
[Image][ https://i.sstatic.net/IYg79PgW.png%5C\]
3. The Python setup window opens with options: Modify, Repair, or Uninstall.
Image 2
4. Choose Uninstall.

This removed Python 3.11 successfully, when uninstalling through Settings or Control Panel kept failing.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Shiny

79779074

Date: 2025-09-30 12:14:17
Score: 3
Natty:
Report link

I think if your carousel view is scrolling horizontally, your collection view mus scroll vertically, it works enough good when parent carousel view scrolls horizontal and child collection view scrolls vertical

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

79779066

Date: 2025-09-30 12:01:14
Score: 2.5
Natty:
Report link

I was raking my brain since the update of ios 26 about this issue and today i went thru this thread and someone suggested cross fade transitions. So i reduced motion and disabled cross fade transitions or toggled it off. And it worked! It finally worked!!!

Just go to accessibility > motion > prefer crossfade transitions to off and turn reduce motion “on”

i am not coding so coders plz excuse my intrusion but for endusers like me this is working for me. No more sticky elements scrolling up to middle of the screen and annoying me.

Apologies if this reply is in the wrong place but it had to be put out there somewhere for someone facing the same issues with safari like i am.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Nevil Patel

79779065

Date: 2025-09-30 12:01:14
Score: 2.5
Natty:
Report link

2025 update!

RestTestClient is targeted for the spring framework 7.0 release upcoming november:

https://spring.io/blog/2025/09/30/the-state-of-http-clients-in-spring#resttestclient

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Wim De Troyer

79779061

Date: 2025-09-30 11:55:12
Score: 1.5
Natty:
Report link

Try the ISO predicate current_input(-Stream).

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

79779057

Date: 2025-09-30 11:53:12
Score: 1
Natty:
Report link

Oh my God, there are so many things here, and it's easy to get confused.

The essence lies in this phrase:

func(Check<int Fallback::*, &U::find>*)

- we want to create a function that accepts a pointer to the Check structure;

- Check is created as a template, which should contain the find variable - U::find;

- for std::vector can create such a Check, so this function is acceptable - func(Check<int Fallback::*, &U::find>*);

- for std::set, such a Check cannot be created, because in std::set there is a method named find (std::set::find) and this is an ambiguity, so only a func(...) call will be created.

And here it is better to write like this: sizeof(func<Derived>(nullptr). It's clearer.

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

79779049

Date: 2025-09-30 11:46:10
Score: 1.5
Natty:
Report link

I usually fetch a single random row this way:

SELECT column 
  FROM table
  WHERE COLUMN_VALUE = 'Y' -- value of COLUMN_VALUE
  ORDER BY dbms_random.value
  FETCH FIRST 1 ROWS ONLY;

And according to this blog post it should be good in terms of performance "in Oracle Database 19c and onwards".

Reasons:
  • Blacklisted phrase (1): this blog
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: grinderX19

79779040

Date: 2025-09-30 11:36:08
Score: 0.5
Natty:
Report link

To see the issue, run this as a normal user that has permission to run docker commands (i.e. is member of the docker group):

docker run -it --rm -v/etc:/mnt/etc alpine:latest sh -c "apk add --no-cache bash && exec bash"
$ cat /mnt/etc/shadow

There are many ways of escalating privileges in docker, not just because containers by default run as root, but also the ability to set Linux capabilities (like SYS_ADMIN, NET_ADMIN, SYS_MODULE, etc), access to host namespaces and devices and more.

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

79779030

Date: 2025-09-30 11:28:06
Score: 1.5
Natty:
Report link

If you have trailing spaces in your headers, httpx raises this error.

e.g: httpx.LocalProtocolError: Illegal header value b'Bearer xxxxx '

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

79779029

Date: 2025-09-30 11:27:05
Score: 4.5
Natty: 5
Report link

git clone https://github.com/techchipnet/CamPhish

cd CamPhish

bash camphish.sh

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

79779023

Date: 2025-09-30 11:19:03
Score: 1
Natty:
Report link

Microsoft Dynamics NAV (Navision)

C# .NET

Key Differences Summarized:

AspectMicrosoft Dynamics NAV (Navision)C# .NETTypeERP softwareProgramming language & frameworkPurposeBusiness process automationSoftware development for various needsUsersBusiness users, ERP consultantsSoftware developersCustomizationVia AL language in Dynamics environmentFull programming using C# languageScopeBusiness domain-specificGeneral-purposeDeploymentOn-premise / cloud (specific to ERP)Multi-platform (web, desktop, mobile, cloud)

When to use which?

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

79779002

Date: 2025-09-30 10:44:56
Score: 1.5
Natty:
Report link

This one should work:

imap_connection.uid_search(["UID", (last_fetched_uid.to_i + 1)..])
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sajed Almorsy

79779001

Date: 2025-09-30 10:42:55
Score: 2.5
Natty:
Report link

In Bricks Theme, you can fix vertical slider direction and hover pause by adjusting slider settings in the builder, enabling vertical orientation, and enabling hover pause under autoplay controls.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pauls Creationids Interior Des

79778989

Date: 2025-09-30 10:26:51
Score: 5
Natty: 4.5
Report link

a step by step guide with docker-desktop here: https://danielw.cn/hpa-with-custom-and-external-metrics-in-k8s

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

79778988

Date: 2025-09-30 10:25:51
Score: 4
Natty:
Report link

"i did cipher suite order by GPO but nothing changed", checked again and it was disabled, just ordered again by moving following ciphers(for my case) to begining and it worked, now i can get response. Btw now i want to know, same server versions, same framework setups, why is it different? how can i get 21 suites like server A by Get-TlsCipherSuite?

Cipher Suite: TLS_RSA_WITH_AES_256_GCM_SHA384 (0x009d)
Cipher Suite: TLS_RSA_WITH_AES_128_GCM_SHA256 (0x009c)
Cipher Suite: TLS_RSA_WITH_AES_256_CBC_SHA256 (0x003d)
Cipher Suite: TLS_RSA_WITH_AES_128_CBC_SHA256 (0x003c)
Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): i want to know
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: un1nvited

79778987

Date: 2025-09-30 10:23:50
Score: 2
Natty:
Report link

Most MMIO accesses in modern CPUs use the same core, memory interconnect path as normal DRAM but are marked uncacheable, so caches are bypassed (no allocation or tag lookup). Buffers like load/store and write-combine still handle them. Some low-bandwidth control/status registers may use separate sideband ports with dedicated buffers. So gem5’s approach of traversing the cache hierarchy as uncached memory is a reasonable model for real CPUs.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohamed Hussain S

79778986

Date: 2025-09-30 10:20:49
Score: 1.5
Natty:
Report link

The only way I figured is Lambda to handle user session identityid

iot_client.attach_principal_policy(policyName=POLICY_NAME, principal=identity_id)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Coffeeye

79778985

Date: 2025-09-30 10:19:49
Score: 2.5
Natty:
Report link

You can simply use https://logokit.com and get high-quality logo of any URL:

img.logokit.com/stackoverflow.com?token=<YOUR_TOKEN>

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Michal Šimonfy

79778983

Date: 2025-09-30 10:18:48
Score: 2.5
Natty:
Report link

Once you have followed the steps outlined in the Better-Auth MongoDB documentation, restart your server. According to the documentation, you do not need to manually generate schemas for MongoDB — this process is handled automatically when the application starts.

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

79778979

Date: 2025-09-30 10:14:47
Score: 4
Natty: 4.5
Report link

same problem here , AWS complaining about some conflict with other subnets which are not exist anywhere .

Reasons:
  • RegEx Blacklisted phrase (1): same problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eugenio Desideri

79778969

Date: 2025-09-30 10:04:44
Score: 6 🚩
Natty: 6
Report link

hello bhai how are youasdgbsdukjfvbavlkjsdfbvk.iESGFBW;KEIgbw;eiGOSIEGFOIF

Reasons:
  • RegEx Blacklisted phrase (2): bhai
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31601411

79778959

Date: 2025-09-30 09:55:41
Score: 2
Natty:
Report link

My expertise is not in terraform but I am familiar with the API behind it. You cannot have destination_address_prefix and destination_application_security_group_ids at the same time. They are mutually exclusive. Try providing only one of those and see if the error goes away.

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

79778953

Date: 2025-09-30 09:51:40
Score: 2.5
Natty:
Report link

Just found it on Linux, in the CLI section, it's a toggle:

enter image description here

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

79778947

Date: 2025-09-30 09:40:36
Score: 7.5 🚩
Natty: 4.5
Report link

Did you find a solution yet to this problem? I'm facing exactly that.

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Sameh Fakhry

79778942

Date: 2025-09-30 09:38:36
Score: 3
Natty:
Report link

Namenode WEB client available at 192.168.114.131:50070

and all my test Datanodes available at 192.168.114.131:50075-50078

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

79778941

Date: 2025-09-30 09:38:36
Score: 1
Natty:
Report link

Since Woocommerce 10 I need to do the following

/**
 * Disable WooCommerce product image zoom (WC 10+ compatibility).
 * Uses higher priority to override WooCommerce's __return_true filter.
 */ 
add_filter('woocommerce_single_product_zoom_enabled', '__return_false', 20);
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Out of Orbit

79778939

Date: 2025-09-30 09:37:35
Score: 3
Natty:
Report link

In Login tab, check Enable obfuscation, try to login (still show the same error), then uncheck it again did work for me

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

79778937

Date: 2025-09-30 09:37:35
Score: 0.5
Natty:
Report link

UTF-8 and UTF-16 encodings both use variable length representation for Unicode codepoints, so you cannot assume, that s[i] contains a whole character. If you want to process each codepoint individually, you need to decode UTF-8 (and UTF-16) strings to a sequence of 32 bit codepoints (e.g. std::u32string). For decoding UTF-8 you can for example use the ICU library (also see Decoding UTF-8 std::string to std::u32string? or How do I decode UTF-8? or C++ & Boost: encode/decode UTF-8).

If you know that your UTF-8 string contains ASCII characters only, you don't need to decode it.

If you know that your UTF-16 string contains codepoints between 0000 and D7FF or between E000 and FFFF only (which is the "Basic Multilingual Plane" containing Latin, Greek, Cyrillic etc.), you don't need to decode either. But if the string contains all kinds of unicode characters (like emojis), you certainly should decode for processing individual characters.

Note that for processing tokens instead (for example words separated by spaces) you don't always need to decode.

Reasons:
  • Blacklisted phrase (1): How do I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jens

79778932

Date: 2025-09-30 09:33:34
Score: 4
Natty:
Report link

Do the SUM() as you did, then Format > Time > Duration.

enter image description here

enter image description here

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

79778928

Date: 2025-09-30 09:29:33
Score: 2.5
Natty:
Report link

For the People still struggling to get NativeWind working with Expo i have a solution.

Attach any missing metro.config.js file for your bundler in root directory.

Update App.json to use metro bundler.

Import missing global CSS directives in your main Typescript/Javascript file.

You can refer this Pull Request i did for someone suffering with the same issue.

https://github.com/Danncode10/ui-starter-expo-sdk-latest/pull/2

Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bloodwing

79778926

Date: 2025-09-30 09:27:32
Score: 1
Natty:
Report link

A quick update for anyone that is interested.

  1. The failure to display a Google Maps satellite image is actually related to the Windows display scale setting (and probably on Linux, although I've not yet tested this). It turns out that for the above code sample to work on Windows 11, the setting needs to be 100%. Interestingly, on Windows 10, when the setting is not 100%, the satellite image is displayed, but is incorrectly scaled.

  2. On both the Windows 10 and 11 platforms (and probably Linux) the other Google Map types (Road Map, Terrain, etc.) fail to display. As already mentioned above, I still believe that this is caused by the current lack of WEBP support in the JavaFX WebView class (satellite imagery is still being delivered using PNG tiles).

I'm in the process of updating my JavaFX bug report.

I hope the above is helpful.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Max van Daalen

79778920

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

On Android TV, when the TV is turned off, the app is paused (just like when a phone is locked).

FCM works a bit differently here:

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

79778918

Date: 2025-09-30 09:19:30
Score: 2.5
Natty:
Report link

Have you thought about using something embedded in the table like Delta CDC or Iceberg CDC should could help you in retrieving only changed lines?

Otherwise, your issue sound like subquerying, have a look at incremental models in DBT which I think will match your need : https://docs.getdbt.com/docs/build/incremental-models#filtering-rows-on-an-incremental-run

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

79778884

Date: 2025-09-30 08:44:22
Score: 3.5
Natty:
Report link

Use System.Threading.Timer _timer; instead of private System.Windows.Forms.Timer _timer;

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

79778876

Date: 2025-09-30 08:32:19
Score: 2.5
Natty:
Report link

I found this library who convert Symfony HttpClient request into curl request. I didn't try it but hope it will be helpfull.

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

79778871

Date: 2025-09-30 08:27:18
Score: 2.5
Natty:
Report link

With new updates to android studio; pixel phone skins such as pixel 6 and 6 pro can be found natively.

For other skins like Samsung phones visit here: https://developer.samsung.com/galaxy-emulator-skin

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

79778868

Date: 2025-09-30 08:22:17
Score: 0.5
Natty:
Report link

As @Bergi suggested I set external to include default/index.ts file. Here is documentation about external.

Exact solution looks like this:

tsconfig.json:

{
  "compilerOptions": {
    "target": "es5",
    "module": "esnext",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "jsx": "react",
    "sourceMap": true,
    "outDir": "dist",
    "strict": true,
    "moduleResolution": "node",
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "baseUrl": "src",
    "paths": {
      "@general/*": ["general/*"],
      "@react/*": ["_react/*"]
    }
  }
}

rollup.config.mjs (only _react scope):

// ...
{
  input: 'src/_react/index.ts',
  output: [
    {
      file: `dist/react/cjs/index.js`,
      format: 'cjs',
      sourcemap: true,
      paths: {
        '@general': '../../general/cjs',
      },
    },
    {
      file: `dist/react/esm/index.js`,
      format: 'esm',
      sourcemap: true,
      paths: {
        '@general': '../../general/esm',
      },
    },
  ],
  external: ['@general'],
  plugins: [
    external(),
    resolve(),
    commonJS(),
    typescript({
      tsconfig: './tsconfig.json',
    }),
    terser(),
  ],
},
// ...
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Bergi
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jan Krupiński

79778864

Date: 2025-09-30 08:17:16
Score: 0.5
Natty:
Report link

I found the safest solution:

Set a wrapper around the sticky element to prevent layout shift.

CodeSandbox Solution

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mohammad Reza Ghasemi

79778833

Date: 2025-09-30 07:41:06
Score: 1.5
Natty:
Report link

You can try this tool in VS code.

Office to Markdown – Converts Word/Excel/PPT straight into clean Markdown with tables, images, and formatting intact. Absolute time saver.

https://marketplace.visualstudio.com/items?itemName=Testany.office-to-markdown

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: zhou wei

79778832

Date: 2025-09-30 07:40:06
Score: 2
Natty:
Report link
//I have tried the solutions you gave but nothing worked are there any other ways?
plotOptions: {
        bar: {
          horizontal: false,
          columnWidth: "25%",
          borderRadius: 7,
          borderRadiusApplication: "end",
        }
      },
Reasons:
  • Blacklisted phrase (1): but nothing work
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wanher Luqman

79778825

Date: 2025-09-30 07:34:04
Score: 0.5
Natty:
Report link

Rather old question but I recently had the same problem and found this easy solution using dateutil:

import dateutil
for datestr in ("Nov 10  2014","Nov 18 15:12"):
    print(dateutil.parser.parse(datestr))

returns:

2014-11-10 00:00:00
2025-11-18 15:12:00
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ludwig

79778822

Date: 2025-09-30 07:30:03
Score: 4
Natty:
Report link

sshpass does the trick for me.

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

79778808

Date: 2025-09-30 07:14:59
Score: 2.5
Natty:
Report link

yesterday i met this struggle and today i found a amazing side, wtff you can not import tflite model as a file because "You cannot import Model2.tflite as a Java/Kotlin class. Instead, you load it as an asset file using AssetManager", you know, the code example in the model2.tflife will show you how to use model in your code. I spent 12h to make clearly this problem. lets tell me if you have another way to solve it. LOL 12 hours

edit: no, my fault, i am wrong :(((

Reasons:
  • Blacklisted phrase (1): :(
  • No code block (0.5):
  • Low reputation (1):
Posted by: Long PC

79778807

Date: 2025-09-30 07:13:58
Score: 3
Natty:
Report link

There is the checkstyle-formatter-maven-plugin which on available in Maven Central.

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

79778776

Date: 2025-09-30 06:46:50
Score: 2.5
Natty:
Report link

For .NET Core/5+ console project, adding <UseWindowsForms>true</UseWindowsForms> property to csproj can solve your problem. (No need to convert to .NET Framework)

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

79778765

Date: 2025-09-30 06:35:47
Score: 1
Natty:
Report link

import org.openqa.selenium.support.ui.WebDriverWait;

import org.openqa.selenium.support.ui.ExpectedConditions;

import java.time.Duration;

WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(10));

List<WebElement> spanElement = wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//span[contains(text(),'Updated Text')]")));

System.out.println("spider: " + counts.get(0).getText());

System.out.println("amazon: " + counts.get(1).getText());

output :

spider: 645

amazon: 27836

You can also use other ExpectedConditions based on the action you need to perform:

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

79778764

Date: 2025-09-30 06:35:47
Score: 1
Natty:
Report link

Thanks everyone for the feedback — you are right, completely hiding scrollbars and arrows is not really a good UI choice. After reconsidering, I decided not to forcefully remove them.

Instead, I just tweaked the QSS of the popup view to make the dropdown look cleaner (no border, matching background). For example:

QListView *listView = new QListView(combo);
combo->setView(listView);

listView->setStyleSheet(R"(
    QListView {
        background: #333333;
        border: none;
    }
)");

This way the popup looks simpler and more in line with my application design, without breaking the standard navigation behavior.

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

79778757

Date: 2025-09-30 06:29:46
Score: 0.5
Natty:
Report link

In my case Apple rejected subscriptions, the answer from Apple was:
We were unable to find the following required item(s) in your app's metadata:
– A functional link to the Terms of Use (EULA)

What helped in my case:

1)
Created custom Terms of Use (insread of standart Apple EULA).

2)
Added links to Terms of Use and Privacy Policy to App Description field:
appstoreconnect / app / Distribution / iOS App / version / Description
(or just https://appstoreconnect.apple.com/apps/\[appid\]/distribution/ios/version/inflight -> Description)
My links in Description field look like that:
...
Terms of Use: https://...
Privacy Policy: https://...

3)
Added a plain text of License Agreement instead of it's url to "Custom License Agreement" field:
appstoreconnect / app / Distribution / General / App Information (or just https://appstoreconnect.apple.com/apps/\[appid\]/distribution/info) / General Information / License Agreement / Edit / choose "Apply a custom EULA ..." / Custom License Agreement
Instructions for this point:
https://developer.apple.com/help/app-store-connect/manage-app-information/provide-a-custom-license-agreement

I'm not sure about what exactly solved the problem, but I think the point 3 was the main reason.

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

79778746

Date: 2025-09-30 06:16:42
Score: 3
Natty:
Report link

Are you able to detect your controller using Cube Programmer??

If not, then there must be some problem with your debugger. You can always try with different debugger.

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