79822491

Date: 2025-11-17 15:54:15
Score: 2
Natty:
Report link

In addition of @Gil answer, you can also use only-of-type like so

table tbody tr:only-of-type td { /* The override. */
  border: none;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Gil
  • Low reputation (0.5):
Posted by: TCH

79822489

Date: 2025-11-17 15:53:15
Score: 0.5
Natty:
Report link

assumeassert. Herb Sutter wrote up P2064 R0 that examines the distinction.

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

79822488

Date: 2025-11-17 15:53:15
Score: 1
Natty:
Report link

DinoBuilder to make a real console Scratch app

Start by a class Extension system from dinobuilder

here is the example of the Scratch's extension coding:

function add_piece_of_system(system){
    return system
}

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

79822482

Date: 2025-11-17 15:45:13
Score: 2
Natty:
Report link

What is your block element structure for the carousel?

The format needs to be {<alias prefix>: <contents>} so if the alias of the data you're trying to render is carousel then it would be {umbValue: carousel}.

The fact that {umbValue: Carousel} returns nothing suggests that Carousel is not the alias of a property. It's not a valid alias - it should be camelCase.

= is shorthand for umbValue so would be {=<property alias>} e.g. {=carousel}.

Reasons:
  • Blacklisted phrase (1): What is your
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is you
  • Low reputation (0.5):
Posted by: Wiggy

79822477

Date: 2025-11-17 15:41:11
Score: 6.5
Natty:
Report link

@p011yr011n, I compiled wit optimization. @Art, you are right I found it. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @p011yr011n
  • User mentioned (0): @Art
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: chav1s

79822476

Date: 2025-11-17 15:39:10
Score: 4
Natty:
Report link

This feels an awful lot like a memory leak, but in my experience, that's not always the case. I'll try to throw out a few things to try based on the configurations that you provided. I think the key culprits here though may be related to one (or more) of: state changelog, checkpoint retention, or possibly some other configurations.

I'll provide a few suggestions (feel free to try one or more):

Disabling State Changelog
This is a recommendation that likely could explain some of the situation as the use of changelog can add some additional memory pressure (it functions as a buffer for those changes as mentioned in this older blog post). I'd suspect that using it in conjunction with RocksDB could likely impact memory utilization:

state.backend.changelog.enabled: false

Limiting Checkpoint Retention
Currently your job has checkpoint retention enabled which is fine, however you may want to consider limiting it to a specific number of those to retain (otherwise things could balloon) as well as cleaning them up to ensure too many don't stick around:

state.checkpoints.num-retained: 5
state.checkpoints.externalized.enable: true
state.checkpoints.externalized.delete-on-cancellation: true

Gather Metrics
One thing that I would highly suggest as you monitor the job and these changes would be to implement and monitor some of the built-in metrics that Flink provides out of the box with regards to memory/JVM. Using these with some type of visualization tool (e.g., Prometheus, Grafana, etc.) would allow you to easily monitor things like the JobManager, Changelog, Checkpointing, etc.

Definitely check out:

Questions
As far as your questions go -- I'll try to give a few possible explanations:

Please help me understand why would checkpointing consume such large buffers gradually? Even then why aren't they getting released?

tl;dr: there's a lot more moving pieces to the puzzle when checkpointing is enabled that can impact memory pressure (even gradually) in a consistently flowing system

So there's a lot of things at play when checkpointing is enabled (vs. why things are rainbows and butterflies when it's disabled). Checkpointing is going to bring RocksDB into the picture which has a native memory impact with each checkpoint this in conjunction with the changelog could apply a quite a bit more pressure for the changelog-related segments as well.

Many of these things can stick around much longer than expected if data is continually flowing at scale into the system and may require tuning. RocksDB, for example, does a decent job at cleanup during its compaction process, however if the job is busy 24/7 it may never have the opportunity to do so, especially with all of the checkpointing operations and state being interacted with.

What exactly is getting stored in this buffer memory by checkpoint co-ordinator?

Obviously there's things like just direct memory like Netty, checkpoint buffers for your filesystem, tons of RocksDB related things (e.g, cache, tables, changelog, etc.), and the changelog has its own series of content.

How can i handle this issue or apply tuning so that this wouldn't occur? What can be my next steps of action to try out and resolve this?

Combining these two as this is already way too long, but hopefully some of the configurations that I provided above can help relieve the issue. Checkpointing and OOM type errors can be really nasty to troubleshoot, even when you know the ins/outs of a given job, but I'll keep my fingers crossed for you.

Reasons:
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (0.5): How can i
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • RegEx Blacklisted phrase (1.5): resolve this?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Rion Williams

79822473

Date: 2025-11-17 15:34:09
Score: 0.5
Natty:
Report link

i added this line and its work
just exclude the libraries which is not in your code

packagingOptions {
    exclude "lib/**/libmodpdfium.so"
    exclude "lib/**/libmodft2.so"
    exclude "lib/**/libmodpng.so"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: shubomb

79822469

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

See Passing variable number of arguments around

Make sure to also read the linked questions.

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

79822462

Date: 2025-11-17 15:22:06
Score: 2
Natty:
Report link

NOTE: Only is a comment about the solucion of Naren, not the solución, but I feel that it's not clear if I use a comment.

@Naren, it's not necesary convert to FormControl an abstractControl if you indicate in the function if the FormArray is a FormArray of FormControls (use FormArray<FormControl>) or FormArray of FormGroups (use FormArray<FormGroup>). I think remember that this works on Angular 19 but not pretty sure (time pass so quickly...)

In this case is a FormArray of FormControls, so:

getDates(attendanceForm: AbstractControl<any>): FormArray<FormControl> {
    return attendanceForm.get('dates') as FormArray<FormControl>;
  }

Now you can use in .html directly [formControl]=date

@for(date of getDates(attendanceFormGroup).controls;let idx=$index;track idx) {
     ...
     <input [id]="'lessonTitle' + i" type="text" [formControl]="date" >
}
Reasons:
  • Blacklisted phrase (2.5): solucion
  • Blacklisted phrase (3): solución
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Naren
  • High reputation (-2):
Posted by: Eliseo

79822453

Date: 2025-11-17 15:16:04
Score: 3
Natty:
Report link

I have already reached out but it seems that for a free tier user, they don't provide any support

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

79822450

Date: 2025-11-17 15:12:03
Score: 4
Natty:
Report link

The `tab_model` function in the SjPlot package might be helpful. It prints the results into a nice html table with lots of options to customise as you like.

https://www.rdocumentation.org/packages/sjPlot/versions/2.8.17/topics/tab_model

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Juju Bowow

79822449

Date: 2025-11-17 15:10:02
Score: 3
Natty:
Report link

@463035818_is_not_an_ai I agreee with you. But in my case an empty map or no map is not the same information. The optional having a value indicates that an action is required, even with an empty map.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @463035818_is_not_an_ai
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Caduchon

79822442

Date: 2025-11-17 15:00:59
Score: 4
Natty:
Report link

Is a pointer all that's needed? Why does my code work anyway when I attempt to run it? And what does passing a pointer change since I'm passing ap as a direct value to va_arg anyway, and not by its address?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is a
  • Low reputation (0.5):
Posted by: m0d1nst4ll3r

79822436

Date: 2025-11-17 14:56:58
Score: 1
Natty:
Report link

i would reach out to gitlab for support

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Daniel A. White

79822433

Date: 2025-11-17 14:53:57
Score: 0.5
Natty:
Report link

I had the same error, and it went away after I excluded the integration tests from mutation testing.

As far as I understand, the fact is that integration tests are not intended for mutation testing at all, because they are too "heavy"

Therefore, the conclusion is this: check if you have integration tests or unit tests that take too long to run for any reason, and exclude them!

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Serzhio S

79822424

Date: 2025-11-17 14:44:55
Score: 0.5
Natty:
Report link

I used this:

document.querySelectorAll('input[type="checkbox"]').forEach(function(element){element.checked=false});

I admit, this is sort of aramgeddon weapon, but if a page is meant to give me only things to read...

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

79822422

Date: 2025-11-17 14:41:54
Score: 2.5
Natty:
Report link

With https://github.com/adamtheturtle/sphinx-substitution-extensions you can do:

.. image:: path/to/|OTHER_REPO|_diagram.png
   :path-substitutions:
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adam Dangoor

79822405

Date: 2025-11-17 14:22:49
Score: 2.5
Natty:
Report link

Yes, I desire a completely explicit system.

When you say "larger components" you are saying instead of making a group of smaller components, making a single (Jax)ExplicitComponent with all of the physics? My concern is primarily swapping out aero models (rocket vs airplane) but I suppose you can still abstract that functionality away in another class that is called by the ExplicitComponent.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Philip Hahn

79822404

Date: 2025-11-17 14:22:49
Score: 2
Natty:
Report link

Question answered here : https://github.com/jpmml/sklearn2pmml/issues/466

TLDR : Version of sklearn2pmml is too old. Find in their github the file requirements.txt of your version of sklearn2pmml, and adapt all other libraries to the ones on the file

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

79822395

Date: 2025-11-17 14:14:46
Score: 0.5
Natty:
Report link

You are mistaken. Git supports "nested branching", a branch in a branch.

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

79822393

Date: 2025-11-17 14:11:45
Score: 4.5
Natty:
Report link

transactions are best solution for hear
https://docs.nestjs.com/techniques/database#typeorm-transactions

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

79822386

Date: 2025-11-17 14:06:43
Score: 0.5
Natty:
Report link

I wrote a function for anyone who wants curly braces:

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import transforms


def partial_circle(x_center, y_center, radius_x, radius_y, start_deg, end_deg, n=100):
    t = np.linspace(start_deg/180*np.pi, end_deg/180*np.pi, n)
    return x_center + radius_x * np.cos(t), y_center + radius_y * np.sin(t)


def underbrace(ax,
               x_start, x_end,       # horizontal position in data coords
               y=-0.15,              # vertical position in axes coords (0 = bottom, 1 = top)
               label=None,
               radius_y=0.02,        # vertical radius in axes coords
               radius_x=0.1,         # horizontal radius in data coords
               lw=1.0,
               color="black",
               text_offset=-0.04,    # extra offset for the label in axes coords
               **text_kwargs):

    # x in data coords, y in axes coords
    trans = transforms.blended_transform_factory(ax.transData, ax.transAxes)

    x_mid = 0.5 * (x_start + x_end)

    y_top = y + radius_y
    y_mid = y
    y_bottom = y - radius_y

    # left brace
    X_circ_left, Y_circ_left = partial_circle(x_start + radius_x, y_top, radius_x, radius_y, 180, 270)
    X_line_left = np.linspace(x_start + radius_x, x_mid - radius_x)
    Y_line_left = np.full_like(X_line_left, y_mid)
    # middle kink
    X_circ_mid_left,  Y_circ_mid_left  = partial_circle(x_mid - radius_x, y_bottom, radius_x, radius_y, 90, 0)
    X_circ_mid_right, Y_circ_mid_right = partial_circle(x_mid + radius_x, y_bottom, radius_x, radius_y, 180, 90)
    # right brace
    X_line_right = np.linspace(x_mid + radius_x, x_end - radius_x)
    Y_line_right = np.full_like(X_line_right, y_mid)
    X_circ_right, Y_circ_right = partial_circle(x_end - radius_x, y_top, radius_x, radius_y, 270, 360)

    Xs = np.concatenate([X_circ_left, X_line_left,
                         X_circ_mid_left, X_circ_mid_right,
                         X_line_right, X_circ_right])
    Ys = np.concatenate([Y_circ_left, Y_line_left,
                         Y_circ_mid_left, Y_circ_mid_right,
                         Y_line_right, Y_circ_right])

    ax.plot(Xs, Ys, color=color, lw=lw, transform=trans, clip_on=False)

    if label is not None:
        ax.text(x_mid, y + text_offset, label,
                ha="center", va="top",
                transform=trans, color=color, **text_kwargs)


# Array of values
values = np.array([[1,2,3], [1,2,3]])

# Line plot
fig, ax = plt.subplots()
plt.plot(values[0,:], values[1,:], 'bo-',label='$P_{1}$')

# make room for braces + labels
plt.subplots_adjust(bottom=0.25)

# add braces
underbrace(ax, 1.0, 2.0, label="s", color="red")
underbrace(ax, 2.0, 3.0, label="t - s", color="green")

plt.legend()
plt.show()

Output image: Graph with curly underbraces

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

79822384

Date: 2025-11-17 14:05:43
Score: 3
Natty:
Report link

Same issue but mine has a different cause. Check your acr - settings - properties - role assignment permissions mode, which one do you have?

If you've selected "RBAC Registry + ABAC Repository Permissions" and didn't assign extra roles https://learn.microsoft.com/en-us/azure/container-registry/container-registry-rbac-abac-repository-permissions?tabs=azure-portal you won't be able to push image. For me, I just changed it to "RBAC Registry Permissions", then "unauthorized" error was gone.

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: 啾啾啾

79822381

Date: 2025-11-17 14:02:42
Score: 0.5
Natty:
Report link

Notifications obtained from NotificationManager does not have any data. To distinguish them it is possible to send AndroidNotification.tag tr FCM see https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#androidnotification

fun Context.notificationManager() =
    getSystemService(NOTIFICATION_SERVICE) as NotificationManager

...

context.notificationManager()
    .activeNotifications
    .onEach { statusBarNotification ->
        // Api should send processedNotificationsUuids as tag
        // https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#androidnotification
        if (statusBarNotification.tag in processedNotificationsUuids) {
           context.notificationManager()
                  .cancel(statusBarNotification.tag,statusBarNotification.id)
        }
    }
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vouskopes

79822378

Date: 2025-11-17 13:59:41
Score: 1
Natty:
Report link
// Thread A
start_transaction();
update_mysql();         // External I/O
commit_transaction();
remove_redis_cache("key");

// Thread B
if (read_redis_cache("key", msg)) {
    return msg;
}
msg = read_mysql();     // External I/O
update_redis_cache("key", msg);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shaikh Tashif

79822365

Date: 2025-11-17 13:49:38
Score: 3
Natty:
Report link

@Naren Murali

I had hoped there was a way to use my package without having to install intl-tel-input unless you use the ReactiveFormField with the inputType set to 'phone'.

My package is used in numerous projects in my company, and only a subset of them need the intl-tel-input functionality.

If I understand you correctly, what I want is not possible and intl-tel-input will need to be installed in all projects which use my private package.

In regard to the @defer, are you suggesting wrapping the contents of the PhoneWrapper HTML instead of the contents of the @case('phone') block?

ReactiveFormField HTML:

@switch (inputType()) {
  @case ('phone') {
    <app-phone-wrapper 
      [control]="control()"
    />
  }
  <!-- bunch of other types  -->
}

PhoneWrapper HTML:

@defer (on viewport) {
  <intl-tel-input 
    [initOptions]="telOptions"
  />
}

I am on viewport is the event to use here, as I'd only want to load the intl-tel-input dependency when the PhoneWrapper is rendered.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Naren
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alex Davis

79822351

Date: 2025-11-17 13:34:34
Score: 1
Natty:
Report link

You should try http://agentm-ai.com/ it's a new tool that is a lot easier to work with, as it's more of an AI-first approach

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

79822350

Date: 2025-11-17 13:33:34
Score: 2.5
Natty:
Report link

@PepijnKramer : My real case is more complex (vector of a struct containing a lot of data, each of them is an optional map<string,map<string,map<string,double>>> storing an history of mathematical data related to my algorithm). I used a map in the optional to keep the spirit of "emplace when required", I put the optional in a container in order to have an elegant one-line call (without redudancy of access).

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

79822348

Date: 2025-11-17 13:33:34
Score: 2
Natty:
Report link

Make me a roblox script (loadstring) that is for murder mystery 2 (can work on mmv) that makes shoot (aimbot) for sherrif (knife throw good) for murder and make fake bomb and esp everyone even the dropped gun like almost everything and tell which map is gonna be chosen and give free premium to changing avatar and change shiftlock like mouse any custome they want and for innocents make them speed glitch and juke the murder FOR THE HERO make the person fling and trickshot

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

79822331

Date: 2025-11-17 13:19:29
Score: 1
Natty:
Report link

Excellent code! But I think there is a closing curly bracket missing for the class "inner":

div.inner{
    float: left;
    width: 100%;
}

@media (min-width:768px){
    div.inner{
        width: 50%;
    }                  \* <- this one*\
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: John Maxwell

79822310

Date: 2025-11-17 12:47:22
Score: 1.5
Natty:
Report link

use this line

include("se.michaelthelin.spotify:spotify-web-api-java:9.2.0")

this line will pack the lib or mod to the final jar file

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 黑雪公主

79822309

Date: 2025-11-17 12:47:21
Score: 6
Natty:
Report link

@Mayukh Bhattacharya - Thanks, but despite how this seems logical, it's not working for me.

I have applied the Conditional Formatting formula:

="IF(OR($G$3=""Sat"",$G$3=""Sun"")"

to rows:

=$5:$500

(By the way, I can't seem to respond to answers here on Stack Overflow - despite me having used the site for many years. There's been a recent change, but I don't know why it's affecting my ability to comment) on answers.)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (3): not working for me
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Mayukh
  • Self-answer (0.5):
Posted by: Chris Melville

79822296

Date: 2025-11-17 12:36:18
Score: 1.5
Natty:
Report link

You can retrieve all detected apps on a device using
https://graph.microsoft.com/beta/deviceManagement/managedDevices(DEVICEID)/detectedApps

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

79822293

Date: 2025-11-17 12:33:17
Score: 3
Natty:
Report link

To fully eliminate flicker when drawing to IDCompositionSurface, ensure proper double buffering, correct offsets, and compositor synchronization.

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

79822288

Date: 2025-11-17 12:30:16
Score: 2
Natty:
Report link

UIBackgroundModes is not an entitlement, it is a plist entry. AI sometimes adds it incorrectly as an entitlement, so it needs to be removed and entered correctly as per: https://developer.apple.com/documentation/bundleresources/information-property-list/uibackgroundmodes

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

79822284

Date: 2025-11-17 12:25:15
Score: 0.5
Natty:
Report link

How to fix it

Use a simple formula like this:

=OR(A$3="Sat", A$3="Sun")

In Applies to, select the entire row where the rule should apply, for example:

=$1:$1

When the “Applies to” range covers the whole area you want, Excel automatically adjusts the column reference for each cell.

Hope this helps!

Exemple for you

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): How to fix it
  • Low reputation (1):
Posted by: Lais Ribeiro

79822280

Date: 2025-11-17 12:17:13
Score: 1.5
Natty:
Report link

[S]oftware engineering is a scientific discipline, and thus that questions about software enigneering are never opinion-based Guess what? That's an opinion. You don't get to impose that on everyone else. What was that about opinions and some other body part?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Andrew Henle

79822275

Date: 2025-11-17 12:13:12
Score: 0.5
Natty:
Report link

You are hitting a known bug in Kubuntu 25.10’s stty (rust-coreutils). It breaks Laravel interactive prompts with stty: invalid argument .... try run:

sudo apt install coreutils rust-coreutils- coreutils-from-uutils-

Then rerun laravel new / php artisan filament:install and it should work.

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

79822274

Date: 2025-11-17 12:12:12
Score: 3.5
Natty:
Report link

Thank you both for your responses - this has really helped me understand this better :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: chrixm

79822265

Date: 2025-11-17 12:05:10
Score: 0.5
Natty:
Report link

I fixed this by using the installer of AppDynamics instead of installing it directly in my code. AppDynamics' docker image installs it if it isn't yet, so, the correct dependencies are injected without doing it explicitly

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Carabes

79822260

Date: 2025-11-17 12:02:08
Score: 6 🚩
Natty: 4.5
Report link

I'm too stuck at Google verification from last 2 Month’s

Right after first approval of CASA TAC Security after getting LOV from Google for our earlier scopes and afterward we added new 150 + Sensitive Scopes and 19 Restricted scopes in GCP right after and after when we submitted request for reverification we did not get any update from last 1 month in the verification Centre the process was stuck.

And now we decided to removed all un-necassary scopes from GCP console making 20 sensitive scopes from 150 and 9 restricted scope from 19 .

Now I have question how much google will take time to update on our next step..

I need your help guys

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1.5): I have question
  • Blacklisted phrase (2): I need your help
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Wafa Abbas

79822259

Date: 2025-11-17 12:01:07
Score: 3
Natty:
Report link

I don't know why this happened, but the problem was solved by lowering the minimum SDK version from 21 to 19. After the installation, the normal name appeared in the package installer.

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

79822258

Date: 2025-11-17 12:00:07
Score: 0.5
Natty:
Report link

After days investigation and discussiones with colleague, we found the following command works for us (instead of p4d -xx 925)
It's run in client, with same user ( admin priviliege supposed to work as well)
p4 unlock -x //xxxxx

the -x is the magic !

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

79822255

Date: 2025-11-17 11:58:06
Score: 0.5
Natty:
Report link

To remove all branches except main:

git checkout main && git pull && git branch | grep -v "main" | xargs git branch -D

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

79822254

Date: 2025-11-17 11:58:06
Score: 3.5
Natty:
Report link

You can configure VS to use dotPeek as a symbol server with VS.

This guide explains how to do it: https://www.jetbrains.com/help/decompiler/Using_product_as_a_Symbol_Server.html

Reasons:
  • Blacklisted phrase (1): This guide
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: SENya

79822247

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

@jeanie77

There are few providers who sell integrated certs for cheaper price. I've tried this one. Root CA is Digicert.

https://signmycode.com/azure-key-vault-ev-code-signing

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @jeanie77
  • Low reputation (0.5):
Posted by: Nas_T

79822243

Date: 2025-11-17 11:44:03
Score: 1.5
Natty:
Report link

import matplotlib.pyplot as plt

import numpy as np

# 交叉分析数据

age_groups = ['18岁以下', '18-30岁', '31-40岁', '40岁以上']

students = np.array([30, 35, 0, 0])

newcomers = np.array([0, 24, 0, 0])

white_collars = np.array([0, 6, 9, 0])

others = np.array([0, 0, 0, 4])

x = np.arange(len(age_groups))

width = 0.2 # 柱形宽度

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

# 绘制柱状图

plt.bar(x - 1.5*width, students, width, label='学生')

plt.bar(x - 0.5*width, newcomers, width, label='职场新人')

plt.bar(x + 0.5*width, white_collars, width, label='职场白领')

plt.bar(x + 1.5*width, others, width, label='其他')

# 坐标轴与标题

plt.xticks(x, age_groups, fontsize=12)

plt.ylabel('人数', fontsize=12)

plt.title('不同年龄段的身份分布(交叉分析)', fontsize=14)

plt.legend()

plt.tight_layout()

plt.show()

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

79822241

Date: 2025-11-17 11:43:02
Score: 2.5
Natty:
Report link

Wise is a good app for doing this. You can put money in the app and keep a balance. Convert between various currencies. And send it wherever you want. If you want to access it, just use my link and you'll also have access to a transaction of up to $600 without paying any fees: https://wise.com/invite/ahpc/diogod1649

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

79822231

Date: 2025-11-17 11:31:59
Score: 3
Natty:
Report link

Where did you find that {QueryString:}? It's not mentioned in the docs: https://learn.microsoft.com/en-us/azure/active-directory-b2c/claim-resolver-overview#oauth2-key-value-parameters.

You need to use {OAUTH-KV:any custom query string} instead.

E.g. {QueryString:EntityId} should be {OAUTH-KV:EntityId}.

Or if this is in fact a SAML policy, then you need SAML-KV instead: https://learn.microsoft.com/en-us/azure/active-directory-b2c/claim-resolver-overview#saml-key-value-parameters.

Reasons:
  • RegEx Blacklisted phrase (3): did you find that
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Where did you find that
  • High reputation (-2):
Posted by: juunas

79822216

Date: 2025-11-17 11:14:55
Score: 0.5
Natty:
Report link

It’s completely normal to feel stuck when you’re starting out, especially if you didn’t come from a programming background. Don’t beat yourself up for that. Learning Python takes time. In fact, learning any new skill takes time!

If you get stuck when trying to write small programs, it usually means you need to slow down and strengthen your fundamentals. Break problems into smaller steps and figure out how to solve each step with Python. Use simple exercises to understand what every part of your code is doing and why.

  1. Small projects help a lot. Pick things you’re genuinely interested in. If you like health data, try something like predicting medical costs or exploring heart disease datasets. If you prefer e-commerce, try customer segmentation or churn. These projects introduce you to real problems while improving your thinking and your coding.

  2. There are plenty of beginner resources. DataCamp has structured paths. You can also check W3Schools, DataLemur for SQL, and many free Python resources on YouTube.

  3. The only way to get comfortable with problem solving is to keep practicing. Even experienced programmers struggle sometimes. It’s part of the craft. If possible, try to set aside 3 hours a day if you can. Bootcamps or in-person classes can also help if you learn better with guidance.

I guess the last thing I would say is: Be patient with yourself. You might feel confused for a while, but that’s normal. We've all been there. You may feel left behind, but in truth, we all are....LOL. And....you’ve already made progress. Some months ago you didn’t know what a python function was, and today you’re writing loops. Next thing you know, you can actually train predictive models. That’s growth. Keep going. It adds up.

Hope this helps.

Reasons:
  • Blacklisted phrase (1): how to solve
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eugene

79822201

Date: 2025-11-17 10:57:50
Score: 3
Natty:
Report link

in gitlab the section can be like '## My Section Title'

your link can not contain capitals or whitespaces, you need to use #my-section-title

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

79822193

Date: 2025-11-17 10:53:48
Score: 4
Natty:
Report link

how does your input look like? do you know in advance which the region of text?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how do
  • High reputation (-1):
Posted by: cards

79822191

Date: 2025-11-17 10:49:47
Score: 3.5
Natty:
Report link

could you add the image, the original one?

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

79822190

Date: 2025-11-17 10:48:47
Score: 0.5
Natty:
Report link

Hi there I saw your solution and I am sure there is some errors But chek it out here is my solution I am little confused what I did in inner loop but it actually works!!!!

public static boolean hasSharedDigit (int first, int second){

    int checkFirst = 0;
    int checkSecond = 0;

    if (first < 10 || first > 99 || second < 10 || second > 99){
        return false;
    }
    while (first > 0){

        int digit = first % 10;
        checkFirst += digit;
        first /= 10;

        int tempSecond = second;
        while (tempSecond > 0){
            int digit2 = tempSecond % 10;
            tempSecond/=10;
            if (digit == digit2){
                System.out.println("Has equal digits");
                return true;
            }
        }
    }
    return false;
}
Reasons:
  • Blacklisted phrase (0.5): Hi there
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Нуримухаммад Гофуржонов

79822188

Date: 2025-11-17 10:48:47
Score: 1
Natty:
Report link

Best WebSocket Library for React Native (Universal & Stable)

react-native-websocket (Simple WebSocket)

Works with ANY backend:

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

79822185

Date: 2025-11-17 10:43:45
Score: 4.5
Natty:
Report link

Not a solution, but a way to explore the equation for any value for n:

https://www.desmos.com/calculator/uqhivh3mw4

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Dana Lee Ling

79822176

Date: 2025-11-17 10:37:43
Score: 1.5
Natty:
Report link

@cigen, done

@mods if you can, please, delete this "thread".

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @cigen
  • User mentioned (0): @mods
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: ixSci

79822175

Date: 2025-11-17 10:37:43
Score: 3
Natty:
Report link

I was able to understand the reason. The problem is connecting to getcomposer.org - if for some reason it is not possible to connect, then the installation goes on, just without the composer.

thx for RKN /s

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

79822172

Date: 2025-11-17 10:36:43
Score: 2
Natty:
Report link

Firstly, I send "rays of goodness" to those two who gave a minus to a perfectly reasonable question
Secondly, a solution was found for both issues: yes, @types/diff should be removed, it's defective, and a custom declaration should be made, and the global namespace is now configured differently: answer here

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

79822168

Date: 2025-11-17 10:34:42
Score: 2.5
Natty:
Report link

When a Mono is stored as a variable, nothing special happens until something subscribes to it. Use defer to postpone executing the code until subscription occurs, otherwise it is executed when the Mono is created

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When a
  • Low reputation (0.5):
Posted by: Ole

79822166

Date: 2025-11-17 10:30:41
Score: 4.5
Natty:
Report link

@ixSci Oof, that's even more annoying :( Ok, can you at least post another question? It will be a duplicate of this, of course, but it's better to have the question in normal Q&A.

Reasons:
  • Blacklisted phrase (1): another question
  • Blacklisted phrase (1): :(
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @ixSci
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: cigien

79822158

Date: 2025-11-17 10:23:38
Score: 3
Natty:
Report link

@cigien, I tried deleting it but it won't let me (people answered you can't delete it). Thanks for the link!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @cigien
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: ixSci

79822154

Date: 2025-11-17 10:21:38
Score: 1.5
Natty:
Report link

@ixSci You can delete this "advice" question and repost as "debugging". Yes, this is obviously not a debugging question, but it's a way to get to post your question as normal Q&A. The current UI options that lead to this are a horrendously misguided effort by the company Opinion-based questions alpha experiment on Stack Overflow. I'm sorry for the incovenience.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @ixSci
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: cigien

79822147

Date: 2025-11-17 10:14:36
Score: 0.5
Natty:
Report link

The answer to that is because my pipeline also has an input of a service connection and it seems to load some stuff behind the scenes which made it possible

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

79822146

Date: 2025-11-17 10:14:36
Score: 2.5
Natty:
Report link

ConfigurationClassPostProcessor

This is the class that processes:

@Configuration

@ComponentScan

@Import

@PropertySource ⬅️ your answer

@Bean

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Configuration
  • User mentioned (0): @ComponentScan
  • User mentioned (0): @Import
  • User mentioned (0): @PropertySource
  • User mentioned (0): @Bean
  • Low reputation (1):
Posted by: Rishav Jain

79822140

Date: 2025-11-17 10:07:34
Score: 1.5
Natty:
Report link

@wohlstad it is weird but if you switch to the latest gcc version it won't compile. @Marek I don't need it to work I need to understand why it doesn't.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @wohlstad
  • User mentioned (0): @Marek
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: ixSci

79822137

Date: 2025-11-17 10:03:32
Score: 4
Natty:
Report link

@wohlstad sorry, I just don't understand this new SO question types so I chose whatever seemed correct to me. I don't need a troubleshooting, just an answer. I can't change it, I presume?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @wohlstad
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: ixSci

79822132

Date: 2025-11-17 09:58:30
Score: 1
Natty:
Report link

android:name="MyApp"

android:name denotes an application class, not an app name. What you are looking for is android:label property. Look at your <activity>, you'll see both fields, correctly used (that's why you see a normal name in launcher — it is a label of your 'launcher' activity).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Валерий Маевский

79822131

Date: 2025-11-17 09:58:30
Score: 2.5
Natty:
Report link

I'm not sure I follow you. Did I say something which does not make sense? Will try again. I wish to read once from my topic and populate two stores inside my DataProcessor. I find it strange having to manually add myStoreBuilder and myStoreBuilder2 using addStateStore(..) but then only reference one of them when setting up my GlobalStore afterwards. What are the implications of this, and is there another way where I do not have to invoke addStateStore(..) twice, but instead provide a list of store builders when invoking addGlobalStore?

Let me know if my use-case is not clear enough. Thanks!

EDIT(Tried to explain it better in the main post)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Andreas10001

79822127

Date: 2025-11-17 09:58:30
Score: 2.5
Natty:
Report link

That has worked perfectly. the date is being imported from spreadsheet so the only field I was confident on have data was the ID field as a quick look through it showed blanks and duplicates in other fields

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

79822124

Date: 2025-11-17 09:55:29
Score: 2
Natty:
Report link

This appears to be a recent bug in VSCode https://github.com/microsoft/vscode/issues/277174.

The second column is the "Terminal Tabs View" and should be hidden if only one terminal is open.

As a workaround you can drag-and-drop the Terminal Tabs Vew to another location be hidden again. After the first drag operation it remains hidden thereafter.

Thanks to jonsharpe for pointing me in the right direction.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Paul D

79822121

Date: 2025-11-17 09:53:29
Score: 1
Natty:
Report link

So basically, Snapchat doesn’t really send snaps directly from one phone to another. 😅 What happens is your snap first goes up to Snapchat’s servers. From there, it gets sent to the other person’s device. This setup helps them manage things like disappearing messages, notifications, and keeping everything secure. iOS and Android just have some built-in tricks to make it faster, but the server is the middleman every time.

If you’re curious about how Snapchat tracks activity and message delivery between devices, you can check out tools like OnlyTraced that show how Snapchat data and account interactions are monitored. It’s kinda cool to see what info is being sent back and forth behind the scenes.

Hope that clears it up! 👍

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

79822120

Date: 2025-11-17 09:52:28
Score: 7
Natty:
Report link

@PepijnKramer:

use interfaces/dependency injection and inversion of control to keep your design as loosely coupled as possible

I think the initial design above does use dependency injection? Or maybe I misunderstand what that means. The derived FeatureDefaultImpl class uses a constructor to allow the settings class to be injected in, but FeatureBase and SettingsBase are already uncoupled. Could you clarify what you meant?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you clarify what you
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @PepijnKramer
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: josh_eime

79822117

Date: 2025-11-17 09:50:27
Score: 4.5
Natty: 5
Report link

I'm wondering if there is a way to pass the parent pipeline ID as an input instead of a variable?

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

79822113

Date: 2025-11-17 09:47:26
Score: 10.5
Natty:
Report link

@Swift Can you suggest a better name?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you suggest
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Swift
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: PlsHelp

79822111

Date: 2025-11-17 09:46:25
Score: 0.5
Natty:
Report link

Try this:

  1. Flutter clean

  2. Flutter pub get

  3. Flutter run

Alternatively: flutter create . to rerun the android configurations

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Elijah Agbedam

79822109

Date: 2025-11-17 09:44:25
Score: 1
Natty:
Report link

My PC is set to a Japanese environment, so please take that into consideration.

Microsoft® Word for Microsoft 365 MSO (バージョン 2510 ビルド 16.0.19328.20190) 64 ビット

Since I am using MatchWildcards, the Excel sheet is assumed to contain data as shown below.

Excel Example

A B
------------------ ------------
[Hh]yla [Cc]inerea Hyla cinerea
[Bb]ig [Aa]pple Big apple
ABcd Abcd

In the code in question, the following error occurred:
-----------------------------------

実行時エラー'6182’:

MatchPhrase, MatchWildcards, MatchSoundsLike, MatchAllWordForms,

MatchFuzzy パラメーターは、同時に True に設定することはできません。

-----------------------------------

(1) I am changing the properties of Find for this purpose.(MatchFuzzy = False)
(2)I modified the processing after With Selection.Find.

Changing rng.Text inside a Do While loop results in an infinite loop, so I stored the searched ranges in an array and changed each Range's properties after the search was completed.  

before image

enter image description here

after image

enter image description here

code

Dim myarray_range(1000) As Range  
Dim cnt_ranges As Long  
cnt_ranges = 0  
With Selection.Find  
    .Forward = True  
    .MatchFuzzy = False  
    .MatchWildcards = True  
    .Wrap = wdFindStop  
    .MatchCase = False  
    Do While .Execute(FindText:=myarray(i, 1)) = True  
        Set myarray_range(cnt_ranges) = Selection.Range  
        cnt_ranges = cnt_ranges + 1  
        Debug.Print Selection.Range.Text  
    Loop  
End With  
Dim j As Long  
For j = 0 To cnt_ranges - 1  
    With myarray_range(j)  
        .Font.Italic = True  
        .Font.Bold = True  
        .Font.Color = RGB(200, 187, 0)  
        .Font.Name = "Times New Roman"  
        '.Text = UCase(Left(.Text, 1)) & LCase(Mid(.Text, 2))  
        .Text = myarray(i, 2)  
    End With  
Next j
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Filler text (0.5): ------------------
  • Filler text (0): ------------
  • Filler text (0): -----------------------------------
  • Filler text (0): -----------------------------------
  • Low reputation (1):
Posted by: motosann

79822101

Date: 2025-11-17 09:40:23
Score: 5.5
Natty:
Report link

@jasonharper Maybe I can tweak something. I need to know what tool to target to.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @jasonharper
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: jorge is not ai

79822090

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

How often do you need to run this script? It sounds to me like a one-time job. In that case I don't see a reason to optimize anything.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How of
  • High reputation (-1):
Posted by: Jeyekomon

79822083

Date: 2025-11-17 09:24:19
Score: 4
Natty:
Report link

What IDE tool are you using? Eclipse, Netbeans, IDEA?

Eclipse (Dynamic Web Project)

What operating platform are you using? Windows? Linux?

 Windows

Does the index.html in your original description correspond to login.html in your directory tree? Or index.jsp?

It corresponds to login.html
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Vegada Deep

79822078

Date: 2025-11-17 09:21:17
Score: 4
Natty:
Report link

How fast would you like to process those 100,000 files?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • High reputation (-1):
Posted by: Jeyekomon

79822075

Date: 2025-11-17 09:18:16
Score: 1.5
Natty:
Report link

Add init=False to exclude it from __init__:

id: Mapped[int] = mapped_column(primary_key=True, init=False)

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

79822070

Date: 2025-11-17 09:09:14
Score: 0.5
Natty:
Report link

It is completely legal for two different people named "John Smith" to study in the same year on the same university. The table should have had unique person IDs in the first place. There is no reliable way to recreate them.

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

79822061

Date: 2025-11-17 09:03:13
Score: 3
Natty:
Report link

Thank you @Nas_T, I’ve checked DigiCert’s offering, but so far I haven’t found a plan that fits our scenario at a cost comparable to traditional file-based code signing certificates (PFX), which were only a few hundred euros per year. The cloud signing options seem significantly more expensive, especially when considering frequent builds.
Regarding the AWS KMS + jsign approach, @tresf thank you for sharing that experience, it could be very valuable. Our pipelines run on Azure DevOps, so we probably won’t adopt AWS directly, but if you have any lessons learned that would apply even outside AWS, I would really appreciate it.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Nas_T
  • User mentioned (0): @tresf
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jeanie77

79822059

Date: 2025-11-17 09:01:12
Score: 3.5
Natty:
Report link

is there no way to fix this, i got really annoy with this as my prj has a lot of OnGUI to check line render , like, it can cause unity layout to crash out

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is there
  • Low reputation (1):
Posted by: Dũng

79822056

Date: 2025-11-17 08:58:11
Score: 4.5
Natty:
Report link

@Lex Li, you mentioned Microsoft Trusted Signing: I’m not familiar with it yet, but I will look into it. Does Trusted Signing fully replace the need for purchasing an EV certificate from a CA, or does it rely on an underlying certificate issued by a partner CA? If anyone has experience with Trusted Signing in CI/CD pipelines, especially for .NET assemblies, VSTO add-ins, or installer signing, I’d be interested in hearing how it compares.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Lex
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: jeanie77

79822052

Date: 2025-11-17 08:50:09
Score: 1
Natty:
Report link

Note that the project directory tree structure you posted is incorrect; please refer to the content I posted.

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

79822045

Date: 2025-11-17 08:43:08
Score: 1.5
Natty:
Report link

To replace the HTML of some part of the page with new HTML that has been generated on the server, please use a region with data-wp-router-region and the actions.navigate action from the @wordpress/interactivity-router package.

More info on the docs: https://developer.wordpress.org/block-editor/reference-guides/packages/packages-interactivity-router/

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

79822043

Date: 2025-11-17 08:41:07
Score: 2
Natty:
Report link
var oAction = oModel.bindContext("/read_file(...)", oBindingContext);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: York Chen

79822041

Date: 2025-11-17 08:38:07
Score: 1
Natty:
Report link

Looking at your sequence diagram, you're actually correct - there are three valid traces, not just two!

Let me explain why:

Valid Traces

(m1!, m2?, m2!, m2?) - left:Client sends m1, Server receives it, Server sends m2 to right:Client, right:Client receives it

(m2!, m1!, m1?, m2?) - Server sends m2 first, then left:Client sends m1, Server receives m1, then right:Client receives m2

(m1!, m2!, m1?, m2?) - left:Client sends m1, Server sends m2, Server receives m1, right:Client receives m2 ✓ This is valid!

Why the third trace is valid

In asynchronous communication (which is typical for sequence diagrams with send/receive notation using ! and ?):

m1! = left:Client sends message m1 (doesn't require immediate receipt)

m2! = Server sends message m2 (doesn't require immediate receipt)

m1? = Server receives message m1

m2? = right:Client receives message m2

Messages can be "in flight" - sent but not yet received. So:

left:Client can send m1 (m1!)

Server can send m2 before receiving m1 (m2!)

Server then receives m1 (m1?)

right:Client receives m2 (m2?)

This is perfectly valid in asynchronous messaging systems where sends are non-blocking and messages can overtake each other or be processed in different orders.

Your book may have overlooked this trace or may be making an unstated assumption about synchronous behavior. But based on standard sequence diagram semantics with asynchronous messaging, you found a valid third trace.

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

79822038

Date: 2025-11-17 08:35:06
Score: 0.5
Natty:
Report link

Except a possibly increased compilation time, I don't see an issue.

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

79822033

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

how exactly would you think to "populate both" without "populating both"?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how
  • High reputation (-1):
Posted by: Stultuske

79822032

Date: 2025-11-17 08:28:04
Score: 4
Natty: 4.5
Report link

So should we or should we not await params? I'm confused

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

79822026

Date: 2025-11-17 08:25:03
Score: 3
Natty:
Report link

Starting with version 2.262.0 (or so), Flow indeed stopped including standard libraires.
From now on, you have to use flow-typed.

Useful links:
https://flow-typed.github.io/flow-typed/#/
https://flow.org/blog/2016/10/13/Flow-Typed/

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

79822023

Date: 2025-11-17 08:23:02
Score: 2.5
Natty:
Report link

I somehow managed to make it work with

CONTENT     CLOB PATH '<path>/content',
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pierrick Dupas

79822020

Date: 2025-11-17 08:22:01
Score: 4
Natty:
Report link

I’ve just made a tool which works well on Windows PowerShell. You can install it easily and use it right away. Welcome to try it out — and feel free to leave any valuable suggestions!🤩👐🏻

here is link:Alpaca10086zyys/TreeView-PS

Reasons:
  • RegEx Blacklisted phrase (2): any valuable suggestions
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yue Zhang

79822019

Date: 2025-11-17 08:19:00
Score: 6 🚩
Natty: 5
Report link

This helped resolve the issue on my side. Thanks for sharing.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MMuzammil

79822012

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

This is probably overly pedantic, but I want to add something to the previous answers: yes, class variables are usually initialized with zero values, but not when they are final. For final variables, you must provide an initializer or initialize them in all constructors, as stated in Java Language Specification 8.3.1.2 (https://docs.oracle.com/javase/specs/jls/se21/html/jls-8.html#jls-8.3.1.2):

A blank final instance variable must be definitely assigned and moreover not definitely unassigned at the end of every constructor of the class in which it is declared, or a compile-time error occurs.

For example, the following code does not compile:

class A {
    final int x;
}
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Fizz Areh

79822007

Date: 2025-11-17 07:54:54
Score: 1
Natty:
Report link

Just use a textarea with align-content: center

textarea {
  align-content: center;
  width: 200px;
  height: 100px;
  background: #f5f5f5;
  border: 1px solid black;
  padding: 5px;
}
<textarea placeholder="I am centered vertically."></textarea>

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

79822004

Date: 2025-11-17 07:48:53
Score: 1.5
Natty:
Report link

In my case I have replaced docker-compose command by docker compose to stop relay on the unwanted binary

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