79481785

Date: 2025-03-03 18:13:52
Score: 1
Natty:
Report link

Yes, in Carbon 3.x, diffInSeconds() now returns a signed value, unlike Carbon 2.x, which always returned positive.

Fix:

Use abs() to get a positive value:

$duration_in_secs = abs($time_after->diffInSeconds($time_before));

Or swap the arguments:

$duration_in_secs = $time_before->diffInSeconds($time_after);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Foysal Rahman

79481778

Date: 2025-03-03 18:10:51
Score: 1
Natty:
Report link

You can also offload some environment variables over to Parameter Store or Secrets Manager.

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

79481768

Date: 2025-03-03 18:07:50
Score: 3.5
Natty:
Report link

As @JohnH suggested, seems like having SET SEARCH_PATH TO XXX at the beginning of each transaction is enough for PgBouncer operating in transactional mode.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @JohnH
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mikhail Shulga

79481744

Date: 2025-03-03 17:56:47
Score: 4.5
Natty:
Report link

If anyone wants to do this in Swift, I made a library based on Myndex's answer that you may find useful: https://github.com/gregmturek/color-perception

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

79481736

Date: 2025-03-03 17:52:47
Score: 1.5
Natty:
Report link

A couple of checks... is the yamada.gltf model accessible? Check the Network tab of your browser to see if the model is actually retrieved or does it generate a 404 error?

Then, if it is accessible, try using a hiro preset to see if the marker can be used to display the yamada model.

TLDR; check for availability of model and then scale/position of model. Then it is mainly due to GPS coordinates. Remember that GPS coordinates need to be more precise. A 0.5 change can put you miles away.

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

79481734

Date: 2025-03-03 17:51:46
Score: 2
Natty:
Report link

This is not an error, you are just stuck on breakpoint. If you click on blue sticker at line 120, you will disable it and execution is going to continue.

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

79481725

Date: 2025-03-03 17:48:45
Score: 3.5
Natty:
Report link

Update: About an hour after acknowledging the Paid Apps Agreement, the app subscriptions worked as designed.

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

79481709

Date: 2025-03-03 17:38:43
Score: 5
Natty: 4
Report link

Do you still have a copy of this GATS Generators data? I am starting to work with this dataset and noticed that PJM does not publish an archive. So I am looking for some historic files to identify any changes over time.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: newuser12345

79481696

Date: 2025-03-03 17:29:41
Score: 6 🚩
Natty: 4
Report link

Extension to this problem, I do face the similar issue that my jenkins slave node taking lot of time to provision in ECS Fargate. In the ECS it showing the node is provisioning. In the cloudwatch it showing the following Error.

i.j.plugins.sqs.SqsPollerImpl#getMessagesAndDelete: Error to retrieve messages from . java.net.MalformedURLException: no protocol:

any idea on this?

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): face the similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Bellamkonda Narendra Venkata S

79481689

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

simply just decompile an apk and hit the marked button

gradle project will be store in your PC

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

79481687

Date: 2025-03-03 17:24:39
Score: 3.5
Natty:
Report link

I disabled "Highlight Active Indent" in my settings, and its resolved, not sure if I've created other problems! <3

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

79481685

Date: 2025-03-03 17:24:39
Score: 1
Natty:
Report link

I have faced with this problem too. You used incorrect path to mount here:

COPY --from=builder /home/builder/target/wiremock-transformer-1.0.jar /home/wiremock/extensions/

Correct path /var/wiremock/extensions/

Because of this your extension cannot be found

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

79481683

Date: 2025-03-03 17:24:39
Score: 3
Natty:
Report link

Neither of these answers are the solution as they don't allow you to open SEVERAL at once..

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

79481678

Date: 2025-03-03 17:22:39
Score: 1
Natty:
Report link

I would suggest to only add the form once on the page. And then use JavaScript to show the form when opening the accordion. Then you need to make sure, that only one accordion item can be opened at time showing the form.

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

79481671

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

You can easily set and get any Electron state using the electron-store library.

First, install the library using npm i electron-store -D

main.js

import Store from 'electron-store';

function createWindow() {
  // Initialize electron store
  const store = new Store();
  
  // Create the browser window with previous store settings
  const mainWindow = new BrowserWindow({
    ...
    width: store.get('width') || 640,
    height: store.get('height') || 360
  });

  // Save window states for later
  function storeWindowState() {
    const [width, height] = mainWindow.getSize();
    store.set('width', width);
    store.set('height', height);
  }

  // Save window size after resizing
  mainWindow.on('resized', storeWindowState);
  mainWindow.on('maximize', storeWindowState);
  mainWindow.on('unmaximize', storeWindowState);
}

If needed, you can also save the window position using the moved event: https://www.electronjs.org/docs/latest/api/browser-window#event-moved-macos-windows

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

79481670

Date: 2025-03-03 17:20:38
Score: 5.5
Natty: 5
Report link

Iam trying something similar but cannot get it to work. can you please elaborate on how you got the udp stream to play on the vlc media player.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please elaborate
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nado

79481668

Date: 2025-03-03 17:20:38
Score: 2
Natty:
Report link

I know this is an old question but I ran into a similar problem and my solution was to create a top level .env file and then just create a sym link to it in each of the folders for the containers I wanted that .env file to be accessible for, this works.

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

79481663

Date: 2025-03-03 17:16:37
Score: 2.5
Natty:
Report link

Open the cube in Visual Studio then click on Extension tab -> Model -> Translations and export an empty json, then edit it as you want for the required dimensions, after that you import the edited json translation and deploy the cube.

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

79481654

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

The answer is in the question.

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

79481652

Date: 2025-03-03 17:11:35
Score: 14.5
Natty: 9.5
Report link

I have the same problem as you, do you have a solution?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (3): have a solution?
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hưng Vũ

79481648

Date: 2025-03-03 17:09:34
Score: 3.5
Natty:
Report link

I sure af don't understand any of this so why in the hell is this stuff in my system logs someone pls pls lmk

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

79481647

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

A: By putting the FAB and a TextView with the same elevation in a FrameLayout.

Source: https://stackoverflow.com/a/39518405/343825

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Henrik Erlandsson

79481642

Date: 2025-03-03 17:08:34
Score: 5
Natty:
Report link

Newbie here but maybe create different turtles so that they can follow a + 1 or + 2 for how many patches they are allowed to move per tick?

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

79481636

Date: 2025-03-03 17:05:33
Score: 3
Natty:
Report link

{reduxCart.length > 0 ? ( reduxCart.map((item) => ....

The problem lies here. There is no need for "(" or ")" in this expression

{reduxCart.length > 0 ? reduxCart.map(...) : ....}

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

79481634

Date: 2025-03-03 17:05:33
Score: 1.5
Natty:
Report link

You must check again whether what you're running is actually what you wrote.

You should make a double check about the green "run" button in the Pycharm IDE. Sometimes, Clicking this button will run another project you wrote directly, instead of the pygame project you wrote.

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

79481633

Date: 2025-03-03 17:04:33
Score: 3.5
Natty:
Report link

You can try implementing your own MessageConverter which will determine for what packages it should be used, as it is done here:

https://stackoverflow.com/a/36689772/9956901

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

79481624

Date: 2025-03-03 16:59:32
Score: 3.5
Natty:
Report link

xmlSchemaSetValidStructuredErrors is also a good way to get errors.

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

79481622

Date: 2025-03-03 16:58:31
Score: 4.5
Natty: 5
Report link

Triggers are now available in preview in CockroachDB v25.1: https://www.cockroachlabs.com/docs/stable/triggers

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

79481617

Date: 2025-03-03 16:56:30
Score: 1
Natty:
Report link

Firebase CLI takes -j, --json option to format output in JSON rather than text.

Other options and commands can be listed with firebase --help.

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

79481614

Date: 2025-03-03 16:55:30
Score: 2.5
Natty:
Report link

This is intensly frustrating. ALL of the guidance on YOUTUBE and in LBO help says simply enter the function and it will just work. Some say compile some don't. I 'm on Fedora 41 and it does not work!!! I made the 'VOL' function as suggested by LBO help and 'nothing'!!

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

79481610

Date: 2025-03-03 16:53:30
Score: 1.5
Natty:
Report link

For even df_even = df.iloc[::2] For odd df_odd = df.iloc[1::2]

Then call either df_even or df_odd

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

79481607

Date: 2025-03-03 16:52:30
Score: 2
Natty:
Report link

The answer for tfjs-npy-node is to install a different library @tensorflow/tfjs-backend-cpu and import import "@tensorflow/tfjs-backend-cpu" into the project. Idk if there is a fix for npyjs yet.

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

79481599

Date: 2025-03-03 16:50:29
Score: 1.5
Natty:
Report link

I think the fastest and the easiest way to implement this is going for Throughput Shaping Timer

In combination with Concurrency Thread Group and Feedback function it will only be required to configure the Throughput Shaping Timer like this:

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ivan G

79481597

Date: 2025-03-03 16:49:29
Score: 2
Natty:
Report link

Hey just figured this out myself. Looks like the button to open the form has an option for Single-click: Button can only be clicked once and it's enabled by default (not sure why??)

If you disable this, it should (hopefully) allow everyone on the channel to submit.

Steps

  1. Click the Edit button (pencil icon) on the message that's being sent to your channel (will probably be step 1 in your workflow)
  2. Click the Edit button (pencil icon) on the button in the bottom 'button' section
  3. Uncheck the setting for 'Single-click - Button can only be clicked once'

I'm not allowed to post pictures directly to Stackoverflow yet, so I have to add a link to the pic, but here's what it should look like.

https://i.sstatic.net/Um6ezL7E.png

Reasons:
  • Blacklisted phrase (0.5): why?
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Nick Schneider

79481589

Date: 2025-03-03 16:45:28
Score: 1
Natty:
Report link

Clustering is meant to be used on point features. You can't use it directly on other geojson types (lines, polygons etc..)

I would rethink what you are trying to accomplish. If you are just trying to show a count of routes available, in each group, you can retrieve them and put them into a popup or render them into a sidebar.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Andrew-Sepic

79481585

Date: 2025-03-03 16:43:27
Score: 0.5
Natty:
Report link

The pip-compatible interface of uv is:

uv pip 

and NOT uv run pip!

If you look at uv pip --help, then the -e (--editable) option is listed there.

So, try simply:

uv pip install -e .

and not: uv run pip install -e ..

And simply remove the run inbetween.

I haven't tested it yet - just yesterday in the night read about uv and was fascinated. But reading your question I was like - but why "uv run pip" and not uv pip?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Gwang-Jin Kim

79481584

Date: 2025-03-03 16:43:27
Score: 1.5
Natty:
Report link

It's not currently possible to do this with the Generally Available release of ML Runtime and Notebook. However Snowflake does have this functionality available in Private Preview utilising a 'Headless' mode of execution, where you can initiate execution from an external client e.g. VSCode. If your interested in participating in the Private Preview you can reach out to your Snowflake Sales/Technical representative who can assist in getting you added to the Private Preview program.

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

79481582

Date: 2025-03-03 16:43:27
Score: 3
Natty:
Report link

try just opening a google doc or something and sharing it with your friend, then you can both chat just the same.

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

79481579

Date: 2025-03-03 16:42:27
Score: 0.5
Natty:
Report link

You can simply use the following syntax

import pandas as pd
df = pd.DataFrame(columns=['A', 'B', 'C'])
df[['D', 'E', 'F']] = None
print(df)

This creates an empty dataframe with columns from 'A' to 'F' with below result

 >>Empty DataFrame
 >>Columns: [A, B, C, D, E, F]
 >>Index: []
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pramod B R

79481571

Date: 2025-03-03 16:40:26
Score: 9 🚩
Natty: 5.5
Report link

Hi how did you solve this ...I am facing same issue

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rabia Anand

79481570

Date: 2025-03-03 16:40:26
Score: 2
Natty:
Report link

This happened to me because I was trying to install and run a 64-bit Windows Service binary that was included as a dependency in the output directory of an AnyCPU project. I had to switch the AnyCPU project to be 64-bit.

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

79481567

Date: 2025-03-03 16:39:25
Score: 2.5
Natty:
Report link

Elimination technique is used for LL parsers and it needs a grammar that can be parsed by LL parsers. Those grammars are called LL grammars which are subset of context free grammar. Therefore not all context free grammar are LL or can be transformed to LL. That's why this algorithm fails. I have to check whether the grammar is LL or LL-convertible.

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

79481562

Date: 2025-03-03 16:35:25
Score: 2.5
Natty:
Report link

Already solved this a while ago. think I found the problem, putting this together for you I found it. A bit confused how this happened. Probably one of my kids when I was not looking sorry to waste your time. I will just look up the correct line and fix it sigh oh the problem is - _EXPORT_STD template <class w, class _Duration = typename _Clock::duration> the w should not be there. So a simple typo from my 5yr old touching my keyboard. Thanks for the response

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Richard Day

79481560

Date: 2025-03-03 16:34:25
Score: 1
Natty:
Report link

You can also include the color mapping vector in get_con():

geom_conn_bundle(data = get_con(from = from, to = to, color = data_df_color_mapping), 
                   aes(color = color, alpha = .3, width = 2)

I had a similar problem and found this solution in this post.

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

79481557

Date: 2025-03-03 16:33:24
Score: 2.5
Natty:
Report link

So as the guy above me said, it calls that function, though imo it is too much bloated code, this should do the trick. I did this and it did what I wanted it to, nothing. Do mine if you prefer non-bloat and if your stack_chk or so works idk. Use his if you want a working "__stack_chk_fail_local" or so. Thanks.

int __stack_chk_fail_local = 0; This will resolve the error. atleast for me

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: llcch

79481551

Date: 2025-03-03 16:32:24
Score: 4
Natty: 5
Report link

thanks for the answer. its working fine now

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anish Adhikari

79481550

Date: 2025-03-03 16:32:24
Score: 2
Natty:
Report link

I had similar problem, and it was because a local repository setted in my Nuget.config. To solve I added 'AllowInsecureConnection' to true in my local repository. .

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

79481544

Date: 2025-03-03 16:29:23
Score: 3
Natty:
Report link

I wanted to share that I did some digging through the clerk discord and found an unofficial code example for this using Node.js. Here it is, I plan on using it as a reference for my CLI tool. https://github.com/clerk/cli-auth-unofficial-example

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

79481541

Date: 2025-03-03 16:29:23
Score: 1
Natty:
Report link

Maybe it helps you:


        _app.add_widget(Button(text='open settings', 
                               size=_app.size, 
                               pos=_app.pos, 
                               on_release=self.DoOpenSettings))

...

    def DoOpenSettings(self, bla):
        self.close_settings()
        self.destroy_settings()
        self.open_settings()

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: AnAir

79481540

Date: 2025-03-03 16:29:23
Score: 1
Natty:
Report link

You can create a new access token for databricks following these steps here: https://docs.databricks.com/aws/en/dev-tools/auth/pat.

Please note that this token is associated with your user account and will have the same permissions as you.

Once generated, you can update your secret in Azure Key Vault (named databricksPAT)

Let me know if you'd like any further refinements!

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Salvatore Nedia

79481534

Date: 2025-03-03 16:27:22
Score: 3.5
Natty:
Report link

In a recent update, it appears that plot_implicit() no longer has an attribute get_points. That has changed to get_data

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

79481526

Date: 2025-03-03 16:24:22
Score: 0.5
Natty:
Report link

SOLVED : it was my interceptor that was modifing the header newly

export class AuthInterceptor implements HttpInterceptor {

intercept(req: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>> {

  // put this before your current code
  if (req.url.indexOf(environment.authPaypalUri) === 0) {
    const auth = `${environment.client_id}:${environment.client_secret}`;
    let authString = "Basic " + window.btoa(auth);

    req = req.clone({
      setHeaders: { Authorization: `${authString}` }
    });
    return next.handle(req);
  }
  
  ... other requests ...
  
}
}

autenticaService(): Observable<Object> {

  const data = 'grant_type=client_credentials';

  return this.httpClient.post(
    this.endpoint_url, data ).pipe(
      map(
        data => {
          console.log(data);
          return data;
        }
      ))
}

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

79481513

Date: 2025-03-03 16:19:20
Score: 4
Natty:
Report link

Thanks for the responses.

After much searching the issue was that I was missing the decorator on the python view

@xframe_options_sameorigin def home(request):

Once I added the @xframe_options_sameorigin decorator, I was able to use in the iframe.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @xframe_options_sameorigin
  • User mentioned (0): @xframe_options_sameorigin
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bob D

79481512

Date: 2025-03-03 16:19:20
Score: 1
Natty:
Report link
    <template>
  <v-container class="fill-height">
    <bug />

  </v-container>
</template>

<script>
import locale from "@/components/bug.vue";
import bug from "@/components/bug.vue";
export default {
  components: { bug },
  data() {
    return {
      selectedComponent: locale,
      items: [
        {title: "Get started", components: locale},
        {title: "Documentation", components: locale},
      ]
    };
  },
};
</script>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dixit Patel

79481501

Date: 2025-03-03 16:16:20
Score: 1.5
Natty:
Report link

Versioning will let you keep track of file versions so the reader can stick with the version it started with until it decides to fetch a new one. No directory versioning directly in S3, but you can manage versions by using timestamps or version IDs in filenames. You can stream the file without downloading it all using get_object or use S3 Select for querying specific parts of the CSV.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muzzamil Mujahid

79481500

Date: 2025-03-03 16:15:19
Score: 1
Natty:
Report link

You inferred it correctly. The new observability feature of spring boot 3 is designed keeping system performance monitoring in mind and not Tracing/logging. Thus a small data set serves good enough for the assessment.

The feature of management.tracing.sampling.probability is offered to the devops/ developers to configure the probability value based on specific requirement for each app.

Setting the probability to 1 does negatively affect the application and eventually it does comes down to Trade-Off Between Observability and Performance.

High probability does affect Increased CPU usage, Higher memory consumption and Greater network I/O to send traces to the backend.

For Production, my recommendation would be to reduce the exposure gradually e.g. Keep the probability higher (less than 1) in first 24 hours and then gradually decreasing it. This way, you would have a good data set to see how your application is behaving without affecting performance.

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

79481499

Date: 2025-03-03 16:15:19
Score: 3.5
Natty:
Report link

Restart Your System For some users, simply restarting the system has resolved the issue by clearing temporary Gradle cache problems.

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

79481481

Date: 2025-03-03 16:10:18
Score: 1
Natty:
Report link

if in my html i have something like this (a blade.php in my case):

<body>
    <div id="app" data-example="{{ $data }}"></div>
</body>

I can access those data like this in my vue components:

const appElement = document.getElementById('app');
const example = JSON.parse(appElement.dataset.example);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Raffaele Bertani

79481480

Date: 2025-03-03 16:09:18
Score: 1
Natty:
Report link

In my case, a write stream could not be created without first making the directory. Using fs.mkDir() or fs.mkdirSync() to create the directory in advance fixes the issue.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: daniel.caspers

79481476

Date: 2025-03-03 16:08:17
Score: 6 🚩
Natty:
Report link

did you ever figure this out? I am running into the same error, install went great until I added an input.

Reasons:
  • RegEx Blacklisted phrase (3): did you ever figure this out
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
Posted by: Drewdin

79481472

Date: 2025-03-03 16:07:16
Score: 4
Natty: 5.5
Report link

Thank you for the very comprehensive answer! Is anyone else running into the following error Cannot access 'RowScopeImplInstance': it is private in file when trying to set the GlanceModifier.defaultWeight? Or is there a different way to set the default weight now other than Modifier that I'm supposed to use?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jing Chen

79481466

Date: 2025-03-03 16:04:15
Score: 3.5
Natty:
Report link

Using mangle_dupe_cols is now deprecated.

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

79481450

Date: 2025-03-03 15:57:14
Score: 0.5
Natty:
Report link

Why Allow Declaration-Only Constructors?

If A were a base class, declaring A(); without defining it would force derived classes to provide their own constructor implementations, another reason is that declaring a constructor without defining it can be used to make a class non-instantiable like:

class A {
public:
    A(); // Declared but not defined
};

Any attempt to instantiate A will result in a linker error, effectively preventing object creation.

How to fix this error

class A {
public:
    A(){}; 
};
A arrayA[10];

Assembly Diffing

with the linker error snippet it outputs the following

arrayA:
        .zero   10
__static_initialization_and_destruction_0():
        push    rbp
        mov     rbp, rsp
        push    r12
        push    rbx
        mov     eax, OFFSET FLAT:arrayA
        mov     ebx, 9
        mov     r12, rax
        jmp     .L2
.L3:
        mov     rdi, r12
        call    A::A() [complete object constructor]
        sub     rbx, 1
        add     r12, 1
.L2:
        test    rbx, rbx
        jns     .L3
        nop
        nop
        pop     rbx
        pop     r12
        pop     rbp
        ret
_GLOBAL__sub_I_arrayA:
        push    rbp
        mov     rbp, rsp
        call    __static_initialization_and_destruction_0()
        pop     rbp
        ret

notice the call A::A() [complete object constructor] but there is no base object A::A() defined hence causing the linker error, while after applying the fix the following asm code gets added to the previous snippet:

A::A() [base object constructor]:
        push    rbp
        mov     rbp, rsp
        mov     QWORD PTR [rbp-8], rdi
        nop
        pop     rbp
        ret
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (1):
Posted by: w1redch4d

79481439

Date: 2025-03-03 15:53:13
Score: 4.5
Natty:
Report link

Case with PATH variable works not all the time. You will still have this issue if you have spaces in your build directory path.

Example: "/Users/youruser/project/my lovely project/WireGuardKitGo"

Also you will have the same error if you have spaces in your build scheme name.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same error
  • Low reputation (1):
Posted by: Mihail Konoplitskyi

79481423

Date: 2025-03-03 15:49:12
Score: 1
Natty:
Report link

There's no getApplicationDocumentsDirectory implementation on the test environment. So you should set a mock handler using setMockMethodCallHandler.
This answer might be helpful.

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

79481416

Date: 2025-03-03 15:45:12
Score: 1.5
Natty:
Report link

You will need to open the airflow.cfg file.

From there, you will need to replace [kubernetes] on line 1086 with [kubernetes_executor].

Hope that helps!

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Blosher Brar

79481410

Date: 2025-03-03 15:42:11
Score: 0.5
Natty:
Report link

Finally, based on Gen solution, I did this:

1 - Open the System Settings and enter an unwanted preference (for example, Mouse2 if you want Mouse3 in the end.

2 - Open the ~/Library/Containers/com.apple.Desktop-Settings.extension/Data/Library/Preferences/com.apple.symbolichotkeys.plist file with a pList editor, and note the keys and their values (or take a screenshot).

3 - Return to the System Settings and enter the correct preference (Mouse3 in my case).

4 - Open again ~/Library/Containers/com.apple.Desktop-Settings.extension/Data/Library/Preferences/com.apple.symbolichotkeys.plist file with a pList editor, and paste the modified keys (comparing them with the previous ones) into the ~/Library/Preferences/com.apple.symbolichotkeys.plist file.

5 - Save this file.

Since the ~/Library/Containers/com.apple.Desktop-Settings.extension/Data/Library/Preferences/com.apple.symbolichotkeys.plist file does not seem to be saved between each session, the idea is to locate the affected keys and paste them into the ~/Library/Preferences/com.apple.symbolichotkeys.plist file, which seems to be correctly saved.

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

79481400

Date: 2025-03-03 15:38:09
Score: 2
Natty:
Report link

Remove the next line from setting.json

"indentRainbow.indicatorStyle": "border"

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

79481394

Date: 2025-03-03 15:36:09
Score: 1.5
Natty:
Report link

Your implementation leaves you vulnerable to sql injection attacks

enter image description here

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

79481390

Date: 2025-03-03 15:36:09
Score: 1
Natty:
Report link

Finally, I found the following argument expansion can work.

 Y= [Y[0],*Y[1:n//2]*2]

Since we can have

 >>>a, *b, c = [1, 2, 3, 4, 5] to 
 >>>b
 >>>[2, 3, 4]

Also if

>>>a = [*'PYTHON']
>>>a
>>>['P', 'Y', 'T', 'H', 'O', 'N']
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MathArt

79481388

Date: 2025-03-03 15:35:09
Score: 0.5
Natty:
Report link

Just slap an if statement around the delete:

if (@ReportType <= 1)
begin
  DELETE FROM dbo.RTTReportHelper WHERE Username = @userName
end
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Brett

79481386

Date: 2025-03-03 15:34:08
Score: 8 🚩
Natty: 4
Report link

Is this still the case? I am looking for a use case where I want to find categorymembers that belong to two categories (category type like food etc and specific country). Is there a workaround for this?

Reasons:
  • Blacklisted phrase (2): I am looking for
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: CuriousKitten

79481371

Date: 2025-03-03 15:26:05
Score: 2
Natty:
Report link

For those who using version 0.16.0, asdf local and asdf global has been replaced by asdf set, breaking change

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

79481370

Date: 2025-03-03 15:26:05
Score: 5
Natty: 4.5
Report link

Link to the google sheets document and work

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

79481367

Date: 2025-03-03 15:25:05
Score: 1.5
Natty:
Report link

It turns out that in my case, simply replacing:

cd /to_some_file/ && nohup python3 run_process_1.py > /dev/null 2>&1 &

by:

cd /to_some_file/
nohup python3 run_process_1.py > /dev/null 2>&1 &

for the two processes solves the issue: the bash script now correctly terminates as expected.

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

79481366

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

This is indeed a bug. It seems that it was addressed in OW 2.0 in February 2019, as reported in this post. I recompiled and linked with Open Watcom 2.0 and it worked as expected.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user2606422

79481365

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

I face the same problem and have also found this related thread on the developer community. We face this issue after moving a work item to another team project.

https://developercommunity.visualstudio.com/t/Cannot-view-the-work-item-attachments-af/10574367?sort=active

Here they advise to run 2 database commands, i have not been able to test this yet. Also not sure if this is fixed in the latest Azure DevOps patch.

EXEC prc_SetRegistryValue 1, '#\FeatureAvailability\Entries\WorkItemTracking.Server.AllowAccessToDeletedAttachments\AvailabilityState\', 1

Based on the command they suggest to execute, it seams the work item attachment has been flagged as "deleted". Not sure why that happens though.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I face the same problem
  • Low reputation (0.5):
Posted by: Nico

79481360

Date: 2025-03-03 15:22:03
Score: 1.5
Natty:
Report link

After researching, I realized that there's no way to prevent the browser from making an automatic GET request to the header's location URL with axios. With fetch, this can be done, but the headers are not accessible due to security considerations

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

79481346

Date: 2025-03-03 15:18:03
Score: 2.5
Natty:
Report link

Jjdjsnsmsmsms4d.sudmemesjsjs Sjshsjs Stdhsnsneneneje.dydysu8ssiwhw_@@<×<×;jjdjd.dhdhehehehe,.esysyshejejeme Duduehehe.dyehejejejejejejjejejeje.eeheheheh.e.eushebeneme Dhdhdhdudydjdene6heke8363o2k2 tfdu5wg3g428wn4 vrydkr Don't fyev4jd6feh43m5. F7fe83jn4pd9djemdd

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

79481332

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

The issue in the code above was in the non provided data-server module. In this module, I imported a function from the node fs/promise API but that's not the way React Router / Remix is supposed to work, at least not with the default template because it's not built on node API but on the Web Fetch API so that it can work in any JS runtime (node and others). React Router / Remix the uses adapters to make your code on different platforms.

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

79481327

Date: 2025-03-03 15:10:01
Score: 1
Natty:
Report link

The issue is in the way you are logging strings.

just change the line console.dir(field); to console.log(`Field: ${field}`); and the line console.dir(itm[field]); to console.log(`Data: ${itm[field]}`);

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

79481326

Date: 2025-03-03 15:10:01
Score: 3
Natty:
Report link

Please refer to our Discourse forum when asking questions. Your problem is simply that the cards are in a collection that the user doesn't have access to. https://www.metabase.com/docs/latest/permissions/start

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

79481323

Date: 2025-03-03 15:09:00
Score: 1
Natty:
Report link

You need 2 modifiers for this:

.listRowInsets(.init())

.listRowBackground(Color.clear)

As in:

HStack(spacing: 20) { ... }
    .padding(.vertical, 8)
    .listRowInsets(.init()) // Remove the default row insets
    .listRowBackground(Color.clear) // Remove the default row background
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 2pp

79481321

Date: 2025-03-03 15:07:59
Score: 8.5 🚩
Natty:
Report link

im trying to update my hadoop version from 3.3.0 to 3.4.1 and when i try to open a filesystem instance im getting below error

Exception in thread "Thread-5" java.lang.IllegalAccessError: class org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos$GetAdditionalDatanodeRequestProto tried to access method 'org.apache.hadoop.thirdparty.protobuf.LazyStringArrayList org.apache.hadoop.thirdparty.protobuf.LazyStringArrayList.emptyList()' (org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos$GetAdditionalDatanodeRequestProto and org.apache.hadoop.thirdparty.protobuf.LazyStringArrayList are in unnamed module of loader org.apache.catalina.loader.ParallelWebappClassLoader @458342d3)

i tried all the above solutions . still im facing the issue ? any suggestions ?

Reasons:
  • RegEx Blacklisted phrase (2): any suggestions
  • RegEx Blacklisted phrase (1): im getting below error
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • User mentioned (1): @458342d3
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: satish

79481320

Date: 2025-03-03 15:07:59
Score: 3.5
Natty:
Report link

I think it was about permission troubles on VSCode and the folder at you are working in

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

79481309

Date: 2025-03-03 15:04:58
Score: 2.5
Natty:
Report link

I'm not 100% sure but for what I know you should always follow a specific rule while inserting duplicate keys, as inserting them without specific rules could lead to not may be able to use correctly the properties of red black-tree, hope it answers your question.

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

79481306

Date: 2025-03-03 15:04:58
Score: 1
Natty:
Report link

It turned out that following line is enough for Serenity to pick up the OpenAPI generated rest requests:

@Override
public <T> T execute(Function<Response, T> handler) {
    return handler.apply(RestRequests.given(reqSpec.build(), respSpec.build()).request(REQ_METHOD, REQ_URI));
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Rokko_11

79481291

Date: 2025-03-03 15:00:57
Score: 1.5
Natty:
Report link

The problem is on Mailjet side which set Content-Type as mulitpart/mixed instead of multipart/related

Using Content-ID and cid for embedded email images in Thunderbird

You can see it in your own mail

Content-Type: multipart/mixed; boundary="=-+zpCN5rjhXag2yK+qwRs"
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Delphine

79481248

Date: 2025-03-03 14:43:52
Score: 3
Natty:
Report link

This solution was from a Beckhoff application engineer. The addition of a text list adds a file to the project. Find that file in the project and edit it. Change DownloadForApplication from true to false. enter image description here

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

79481246

Date: 2025-03-03 14:42:51
Score: 8 🚩
Natty:
Report link

Could you share the code where you're trying to use the component?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you share the code
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rainier Paolo Punzalan

79481240

Date: 2025-03-03 14:40:51
Score: 1
Natty:
Report link

The error suggests your Astro site’s deployment to Vercel is missing a required config file. Here’s how to fix it:

Add vercel.json: Ensure a vercel.json file exists in your project root. Create one if missing. Rebuild Project: Run npm run build to rebuild your site. Verify Setup: Check your Vercel dashboard to confirm the project is properly linked. Install Dependencies: Ensure all required packages are listed in package.json and installed. Use Vercel CLI: Deploy using the CLI with vercel --prod. Check Logs: Review Vercel’s build logs for errors or warnings.

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

79481224

Date: 2025-03-03 14:35:50
Score: 3
Natty:
Report link

What about 429:

from https://en.wikipedia.org/wiki/List_of_HTTP_status_codes

429 Too Many Requests (RFC 6585) The user has sent too many requests in a given amount of time. Intended for use with rate-limiting schemes.[24]

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Matt Stoodley

79481222

Date: 2025-03-03 14:34:49
Score: 0.5
Natty:
Report link

updateTask won't run unless you call the function expression

Just a note, router.post does not return a promise, and therefor is not affected by await so you might as well remove the function expression entirely.

You're already applying onSuccess which will trigger after router has posted.

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

79481218

Date: 2025-03-03 14:33:49
Score: 0.5
Natty:
Report link

In AWS Amplify, open your app and navigate to the Build Settings section from the left-hand sidebar. Locate the amplify.yml file and manually update it to include your environment variables in the following format:

amplify.yml should look like something similar

version: 1
frontend:
  phases:
    preBuild:
      commands:
        - npm ci --cache .npm --prefer-offline
    build:
      commands:
        - npm run build
  artifacts:
    baseDirectory: .next
    files:
      - '**/*'
  cache:
    paths:
      - .next/cache/**/*
      - .npm/**/*
env:
  variables:
    # Env
    NODE_ENV: "production"
    NAME_OF_VARIABLE_YOU_USE_ON_NEXT: ${NAME_OF_VARIABLE_YOU_SAVED_ON_AMPLIFY}
    

In your use case you would do something like this:

env:
  variables:
    # Env
    API_KEY: ${API_KEY}[![enter image description here][1]][1]

and then in your next application:

your_api_key = process.env.API_KEY
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Enrico

79481217

Date: 2025-03-03 14:33:49
Score: 1.5
Natty:
Report link

Silly mistake, I needed to feed the blob name I wanted to create into .get_blob_client. And I didn't need to create blob_service_client = BlobServiceClient(client)

Amended code:

blob_name = "testCsv.csv"
blob_client = container.get_blob_client(blob_name)
blob_client.upload_blob(csv_bytes, overwrite=True)
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: CGarden

79481216

Date: 2025-03-03 14:32:49
Score: 0.5
Natty:
Report link

You can select specific pages in your PDF file by using the concatenate c() function like this:

library(pdftools)

selected_pages <- pdf_text("my_file.pdf")[c(10:16)] 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Ifeanyi Idiaye

79481210

Date: 2025-03-03 14:30:48
Score: 1
Natty:
Report link

Vendor status is stored in VStatus field.

vendor.VStatus = VendorStatus.Inactive;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Zoltan Febert

79481205

Date: 2025-03-03 14:27:48
Score: 1
Natty:
Report link

If you explicitly call plt.show() and the plot object is also the last line in the cell, Jupyter would display the plot twice. To suppress this behavior of displaying automatic output, simply add ; at the end of the last line.

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

79481203

Date: 2025-03-03 14:27:48
Score: 4
Natty:
Report link

I think all of the Exchange comandlet wont honor those variables. extremely bad, when you want to find misconfigured ones. get-mailuser is the same. found no way to extract warnings.

you have to look at the patterns and, eg two prim mail addresses and find them that way or scroll the whole ps window...bad if you have thousands of mail users

anyone got that working? get-mailuser -warningvariable $wv

Reasons:
  • RegEx Blacklisted phrase (2): working?
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Devon99

79481191

Date: 2025-03-03 14:23:46
Score: 2
Natty:
Report link

I wonder if you could compose a more efficient / useful query using their GraphQL interface instead of the RESTful API? perhaps starting from here

https://docs.github.com/en/graphql/reference/objects#checksuite

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