79439408

Date: 2025-02-14 12:47:29
Score: 0.5
Natty:
Report link

You're on the right track! The issue likely comes from a mix of positioning methods and percentages that don’t scale well together. Here are a few key fixes:

  1. Fixing Center Alignment Use display: flex and justify-content: center on the container that holds both .socials and #magicbox.

  2. Keeping the Figure Under the Socials Instead of using bottom: -45px; on .footer, try adding margin-top to #magicbox. Use position: absolute only if necessary; otherwise, flexbox or grid will be more predictable.

  3. Making It Responsive Instead of left: 35% in #magicbox, use margin: auto and text-align: center to keep it in place.

    .hiddenBottom { display: flex; flex-direction: column; align-items: center; }

    .socials { position: relative; z-index: 1; }

    #magicbox { position: relative; width: auto; min-height: 275px; margin-top: 10px; display: flex; justify-content: center; align-items: center; }

    .magic { position: absolute; bottom: 0; width: 30%; }

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

79439401

Date: 2025-02-14 12:45:28
Score: 1.5
Natty:
Report link

Also noted on the corresponding GitHub issue -- the issue here was your syntax in mapping to values:

The values you want to set are: AzureFunctionsJobHost__logging__logLevel__Function.http_trigger.User AzureFunctionsJobHost__logging__logLevel__Function.http_trigger

The key is that underscores map to object traversal within host.json.

Values like Function.http_trigger.User are just strings, so there's no need to replace the periods with underscores.

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

79439394

Date: 2025-02-14 12:42:28
Score: 2
Natty:
Report link

QUOKKA INSTALLATION

  1. First extension need to install
  2. go to directory: C:\Users\Administrator.quokka
  3. after npm install: npm install @babel/core --save
  4. after npm install: npm install jsdom --save
  5. now run quokka
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Moniur Islam khan

79439393

Date: 2025-02-14 12:42:28
Score: 2.5
Natty:
Report link

I have this issue come up every now and then; if I hard-restart the app on the iOS simulator (double tap home button and swipe up), it fixes the issue.

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

79439391

Date: 2025-02-14 12:40:27
Score: 0.5
Natty:
Report link

Turns out that i was having a computed property on one of the components that was using a filter to get all the typeA segments that looked like this

content?.elementList[0].segments.filter( x=> x.$type = SegmentType.TypeA)

instead of

content?.elementList[0].segments.filter( x=> x.$type == SegmentType.TypeA)

or

content?.elementList[0].segments.filter( x=> x.$type === SegmentType.TypeA)

I got confused because even if I put my console.log() as soon as I was getting the response the object was still modified by the property mentioned above, and I assumed that it might have been caused by the parsing of the object.

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

79439385

Date: 2025-02-14 12:39:27
Score: 2.5
Natty:
Report link

In the pull-down menu, where you can select the file to run, select "Edit Configuration...", there select "modify options" and under Java toggle "Do not build before run...". Than none other than the selected or current file is run.

This solved for me that other, still buggy, files were prompted to correct, before the IDE ran anything.

Maybe this is helpful. Cheers.

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

79439384

Date: 2025-02-14 12:39:27
Score: 1
Natty:
Report link

It is 2025 and the ability of reimporting a project has gone.

I managed to restore project by cloning it again to a new directory, refreshing idea's gradle plugin in the new dir, and moving ./idea/gradle.xml file back to the original project.

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

79439383

Date: 2025-02-14 12:37:26
Score: 4
Natty: 5.5
Report link

what the name can I change IconName
IconName in each line thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): what the
  • Low reputation (1):
Posted by: Adam

79439379

Date: 2025-02-14 12:36:26
Score: 0.5
Natty:
Report link

Just click the schemes drop-down at the top and choose Edit scheme. On the screen that opens, select Run on the left, pick Release rather than Debug next to Build configuration, and click Close. You may also want to uncheck Debug executable on the latter screen.

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

79439378

Date: 2025-02-14 12:36:26
Score: 3
Natty:
Report link

Laravel provides the app()->make() method, which allows you to pass runtime parameters. link to docs here: https://laravel.com/docs/11.x/container#the-make-method

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

79439366

Date: 2025-02-14 12:29:25
Score: 0.5
Natty:
Report link

What seems to be the problem is that you didn't install the AdmZip package. Do it like this:

npm install adm-zip

PS: I think you have an error in the later part of your program. Notice that a single backslash (\) character is a beginning of an escape pattern. You should use the sequence \\ to insert a single backslash:

'C:\\Users\\Nikla\\Documents\\AdventureWorksDW2022.bak'
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Proteus

79439365

Date: 2025-02-14 12:29:25
Score: 0.5
Natty:
Report link

Coding directly in cPanel's file editor can be challenging, especially if you're used to a full-featured IDE or text editor with shortcuts and advanced functionality. However, there are still some ways to improve your productivity while working in cPanel's file editor. Here are some tips and potential shortcuts:

1. Use Browser Shortcuts

Since cPanel's file editor runs in your browser, you can leverage browser shortcuts to speed up your workflow:

Ctrl + S (Windows) / Cmd + S (Mac): Save the file.

Ctrl + F (Windows) / Cmd + F (Mac): Open the find tool to search within the file.

Ctrl + Z (Windows) / Cmd + Z (Mac): Undo changes.

Ctrl + Y (Windows) / Cmd + Shift + Z (Mac): Redo changes.

Ctrl + C (Windows) / Cmd + C (Mac): Copy selected text.

Ctrl + X (Windows) / Cmd + X (Mac): Cut selected text.

Ctrl + V (Windows) / Cmd + V (Mac): Paste text.

Ctrl + A (Windows) / Cmd + A (Mac): Select all text in the file.

2. Use cPanel Editor Features

While the cPanel file editor is basic, it does offer some features that can help:

Syntax Highlighting: Ensure the editor is set to recognize the file type (e.g., PHP, JavaScript, HTML) for better readability.

Line Numbers: Use line numbers to quickly navigate to specific parts of the code.

Search and Replace: Use the "Find" or "Find and Replace" feature to make bulk changes.

3. Use an External Editor with FTP

If cPanel's editor feels too limiting, consider using a local text editor or IDE with FTP/SFTP support. This way, you can edit files directly on the server without manually uploading/downloading them. Some popular options include:

VS Code with the SFTP extension: Edit files directly on the server.

Sublime Text with SFTP plugin: Sync files with the server.

Notepad++ with NppFTP plugin: Edit files remotely.

This approach gives you the power of a full-featured editor while still working directly on the server.

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

79439363

Date: 2025-02-14 12:28:24
Score: 4
Natty:
Report link

you can try cmd instead of PowerShell

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

79439361

Date: 2025-02-14 12:28:24
Score: 1
Natty:
Report link

First, you need to import image to use in img element

import imgName from '../../public/testimg.jpeg

then put it in img

<img src={imgName} />

If you are using nextjs, I recommend using Image component.

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

79439358

Date: 2025-02-14 12:26:23
Score: 1.5
Natty:
Report link

adjust the trigger

on:
  workflow_run:
    workflows: ["Auto Version Tagging"]
    types:
      - completed
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mega

79439356

Date: 2025-02-14 12:26:23
Score: 1.5
Natty:
Report link

I use this:

kubectl get --raw /metrics | grep kubernetes_feature_enabled

(Grabbed it some time ago from here: https://cloud.google.com/kubernetes-engine/docs/concepts/feature-gates#check-feature-gate-state)

Works fine for all the k8s cluster flavours I manage (including EKS and the ones set up via kubeadm), not just GKE. :)

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

79439353

Date: 2025-02-14 12:26:23
Score: 1.5
Natty:
Report link

You can add image in your notebook in two way:

  1. In Markdwon

![<title>](tensornames.png)

  1. In code

from PIL import
Image Image.open('tensornames.png')

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

79439348

Date: 2025-02-14 12:23:19
Score: 7 🚩
Natty: 5.5
Report link

????? ??????-1

??????.. ????? ?? ??????? ???????? ??? ??????? ???? ??? ???????? ??????… -????? ??? ?? ????, ????? ????? ????? ?? ???? ????

???? ?? ???? ??? ??????? ?? ???? ?? ????? ?? ??? ??? ???? ???? ???? ??? ?? ??? ??? ?? ??????? ???? ??? ???? ???? ???? ?? ????????? ?? ?? ???? ?? ??? ????? ??? ???? ?? ?? ?????? ?? ??? ?? ?-?????? ???? ???? ?? ??????? ???? ?? ??? ??? ?????? ?? ???? ?? ??? ???? ????? ??? ???? ?? ???? ?????? ?????? ?? ??? ?????? ?? ??? ??? ??? ???? ??? ?????? ???? ????? ? ?? ??????? ?? ???? ???? ?? ??? ?????? ??? ??? ??? ???? ?? ?????? ?? ?? ???? ?? ???, ?? ????? ?? ?? ????? ??? ?? ???? ?? ?? ??? ???? ?? ????? ???? ??? ????? ?? ????? ?? ????? ?? ????? ?? ??? ?-?????? ????? ?? ?????? ???? ???? ???? ?????? ?? ?????? ?? ?? ?????? ????? ?? ???? ?? ?????? ??? ????? ????? ???? ???? ???? ?? ???????? ???? ???? ???? ?? ??? ????? ????? ??????? ???? ?? ???? ??? ??? ?? ???? ???? ????? ????? ??? ????? ?? ??? ???? ?? ?? ?? ??????? ???????? ????? ?????? ?? ??? ????? ???? ?? ???? ?????? ?-?????? ?? ??? ?????? ???? ???? ???? ??? ???? ?? ?????? ?? ?????? ?? ??????? ??? ???? ?? ??????? ????? ?? ??? ?? ?????????? ???? ?????? ?? ????? ?? ?????? ?? ???? ??? ????? ??? ????????? ???? ???? ?? ??? ????? ???????? ?? ???? ??? ??? ??? 15 ????? ??? ????? ?? ???????? ?? ???? ??? ?????? ??????? ????? ????? ?? ???? ???? ????? ?? ???????? ?? ?????


????? ?? ???? ??? ???? ?? ??? ????? ????? ?? ?????, ????? ????? ????? ?? ???? ??? ???? ?????? ????? ??? ?????? ?? ????? ?? ????? ?? ?? ??? ??? ?? ????? ??? ????? ?? ?? ????? ?? ??????? ???? ?? ???? ???? ????? ?????? ?? ????? ?????? ??? ????? ???? ???? ???


????? ?????? 2…

??????? ??? ??? ?? ??? ???? ???? ?? ????? ???? -???? ?? ??? ???? ??? ???? ??? ?? ??? ???? ?? ???? ??? ??? ???????? ?? ??????? -??? ?? ?????? ????? ?? ??? ??? ???? ?????? ?? ????? ?? ???? ??????

?????? ??????? ??????? ??? ??? ??? ?? ??? ?????? ???? ??? ????? ???? ?? ???? ????? ??? ???? ?? ????? ?????? ?? ?? ???? ?? ??? ???? ??? ???? ??? ??? ?? ???? ??? ??? ??????? ?? ???????? ???

??? ???? ???? ?? ?? ??????????? ??? ????? ?? ??? ?? ? ????? ???? ???????? ??? ???? ????? ??????? ?????? ?? ??? ?????? ?? ?????? ???? ?? ???? ?? ??? ?? ???? ????? ??? ?????? ????? ?? ??? ?? ?? ??? ??? ?? ????????? ?? ???? ???? ???? ?? 50,000 ????? ?? ?????? ?????? ???????? ??????? ?? ?? ?? ?? ?? ??? ??????? ?? ??? ?? ?????? ??? ?? ??? ?? ???? ?? ?????? ???? ?? ???? ?? ???

??? ?? ?? ???? ??? ??? ????? ?? ?????? ?? ??? ???? ???? ???? ?? ?? ???? ??? ?? ??? ??????? ?? ?? ??? ?? ???? 50,000 ?? ?? ??? ????? ?? ?? ?????? ??? ??? ?? ?? ???? ?? ???, ??? ?? ???? ??? ?? ?? ?? ?? ???? ??? ??????? ????????? ???? ????? ??? ?? ???? ?? ????????? ?? ????? ?? ???? ??? ?? ??? ???

??????? ?? ?????? ?? ???? ??? ?? ???? ???? ???? ?? ?? ???? ??????? ???? ?? ?? ??????? ?????????? ????? ?????? ?? ?????? 11,000 ????? ???? ?? ??? ??? ???? ??????? ?? ?????? ?? ??? ?? ?????? ???? ?? ??? ??? ???? ?????? ??? ?? ???? ?????? ?? ????? ?? ???? ?????


????? ??????? 3…

??????...????? ?? ????? ??? ???? ??? ?? ?????? -?????? ?? ???? ????? ?? ?????? ???? ???? ???? ????? ??? -?????? ?? ????? ??? ?? ????? ?? ?? ????? ?? ????? ??? ???????

??? ?? ?????? ?? ??? ?? ??? ????? ?? ??? ???? ?????? ??? ?? ??? ???? ??????? ?? ??? ???? ??????? ?? ????? ??? ???? ??? ?????? ?? ???? ??? ?????? ????? ???? ???? ??? ???? ???? ????? ?? ??? ??? ??? ?? ?????? ?? ?? ?????? ?? ???? ??? ????? ?? ???? ?? ?? (???) ???? ???? ?? ?? ???????? ?? ??? ?????? ?????? ?????? ?? ??????? ?? ????? ??? ??????? ?? ????? ???? ?????? ????? ?????

?? ????? ??? ?????? ?? ???????, ???????, ??????, ??????, ??? ????? ?? ??? ??? ?? ????? ?????? ??????? ?????? ?? ?? ?????? ??? ??? ??? ?? ????? ??????? ?? ??? ?? ??? ?? ?????? ?? ??? ?? ??? ???? ?????? ?? ?????????? ???????? ?? ??? ????? ????? ?? ?????? ???? ?? ??? ???? ?????? ?? ???????? ?? ??? ?? ??? ?????? ?? ?? ???? ?? ????? ? ?????? ?????? ????? ??? ??? ?? ????? ?? ???? ?????? ?? ??????? ????? ??? ??? ?? ???? ???? ?? ??? ??? ?? ????? ??? ??? ?? ??? ?? ??????? ?????? ?????? ?? ?? ?? ??????? ???? ???? ??? ???? ??? ????? ?? ??? ??? ??? ??? ??????? ?? ?? ?????? ?????? ?? ??? ??? ??? ??? ??????? ??? ?? ?? ????? ??? ???? ?????? ????? ???? ?? ????? ?? ?? ???? ???? ?? ????? ??? ?? ????? ??? ?? ?? ??? ?? ??? ????? ??? ?? ???? ??? ??? ???? ???? ?? ?? ??????? ??????? ??? ??? ??? ?? ??? ??? ?? ??? ??? ?? ?? ??? ??????? ??????? ?? ?????? ?? ??? ???

?????? ??????? ?? ?????? ???? ?????? ?? ?????

???? ?? ?? ????? ??? ????? ?????? ????? ??? ??? ?? ????????? ????? ???? ?? ?????? ???? ?? ??? ??? ?? ?????? ?? ???? ?? ?????? ???? ????? ??? ??? ????? ???? ??? ?? ???? ?????? ??? ???? ?? ????? ???? ?????? ?? ????? ?? ??? ??, ????? ?? ???? ???? ?????? ??? ?? ??? ?? ???? ????? ??? ??? ???? ???? ????? ???? ???

??? ?? ???? ?? ???? ????? ????? ??? ?? ????? ?? ???? ??? ?? ?? ??? ?? ????????????? ????????? ????????? ??? ??? ??? ???? ???? ??? ????? ??? ???? ??? ?? ??? ??? ??? ??? ???? ?? ?? ????? ?? ????? ?? ?????? ??? ?? ????? ??? ?????? ??? ???? ????? ????? ?? ?????? ???? ??? ?? ?????? ??? ?? ????? ?? ??? ?? ????????? ??? ?? ??????? ?? ????? ???? ??????? ???? ?????? ?? ?????? ??? ?? ???? ????? ?????? ?? ???? ??????? ?? ????? ?? ??? ???


????? ?????? 4…

??????...??? ????? ?? ??? ?????? ?? ??????… -??? ???? ??? ??? ???????? ?? ???? ????

??? (Artificial Inteligence) ????? ?? ??? ?????? ?? ??? ?????? ?????? ??? ???? ?? ????????? ?? ???? ?? ??? ???? ???? ??? ?????? ????? ??? ?????? ?? ?? ???? ?? ?? ???? ????? ???? ???? ????

???? ?????????? ?? ???? ??????????? ?? ???????? ??? ??? ???? ??? ????? ??? ?? ??? ????? ???? ??????? ????????? ??? ????? ?? ??? ??? ????? ??? ?? ?????? ??? ???? ???? ???? ??? ?? ??? ???? ?????? ??? ??? ?? ????? ????? ?? ????????? ????? ?? ???? ???? ???? ???? ?? ???? ????? ??? ???? ?????? ??? ??? ???????? ??????? ??? ?? ?????? ?? ?? ??????? ?? ????? ?????? ????? ???? ????????? ??? ??? ?? ??? ????? ?? ??????? ???? ??? ?????? ????????? ?? ??????? ??? ??????????? ???????? ??? ?? ??????? ??? ???? ??????? ??? ???? ?????? ??? ??????? ??? ?? ???? ?????? ????? ??????? ??? ??? ?????? ??????????, ?????? ??????? ??? ?? ??? ??? ???? ???????? ??? ??????? ?? ???? ????????? ???? ??? ??????

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • No latin characters (2):
  • Filler text (0.5): ????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ??????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ???????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ??????????
  • Filler text (0): ????????
  • Filler text (0): ??????????
  • Filler text (0): ????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ????????????
  • Filler text (0): ?????????
  • Filler text (0): ??????????
  • Filler text (0): ???????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Filler text (0): ?????????
  • Filler text (0): ???????????
  • Filler text (0): ????????
  • Filler text (0): ??????????
  • Filler text (0): ????????
  • Filler text (0): ?????????
  • Low entropy (1):
  • Low reputation (1):
Posted by: sunil kumar

79439337

Date: 2025-02-14 12:18:18
Score: 2.5
Natty:
Report link

If someone still struggles with this issue and is using native federation with web components, make sure that your "shared" object within federation.config.js in micro-frontend is empty.

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

79439336

Date: 2025-02-14 12:17:17
Score: 2
Natty:
Report link

If you’re using SwiftUI, use this package.

https://github.com/Chronos2500/CustomNavigationTitle

There is no need to worry about layout breaking because it does not directly use GeometryReader.

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

79439335

Date: 2025-02-14 12:17:17
Score: 1.5
Natty:
Report link

In my case it was solved using "/" before output.css file

before: < link href="output.css" rel="stylesheet" />

after: < link href="/output.css" rel="stylesheet" />

works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ankur gurung

79439327

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

This is a MacOS system preference, Appearance->Show scroll bars. Automatic shows it if a mouse is connected or hides it if a trackpad is connected, "When scrolling" hides it unless you're scrolling, and "Always" will, well, always show it. You can't control whether it always shows on your website, but you can style it as mentioned in another answer. If you want to see the website like the other user, you'll want to set "Show scroll bars" to Always in your Appearance preferences.

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

79439326

Date: 2025-02-14 12:13:17
Score: 3.5
Natty:
Report link

GCP automatically authentify calls made by service accounts when using client libraries like gaxios.

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

79439320

Date: 2025-02-14 12:10:16
Score: 3
Natty:
Report link

Under .metadata.plugins\org.eclipse.core.runtime.settings in your file location

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

79439312

Date: 2025-02-14 12:07:15
Score: 2.5
Natty:
Report link

You have to provide the Private Key as an argument to the send() function. In SDK v4+, the fourth parameter is used to pass a set of options.

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

79439310

Date: 2025-02-14 12:07:15
Score: 1
Natty:
Report link

I did it in this way (controlsfx -11.2.0)

popOver.getRoot().getStylesheets()
          .add(getClass().getResource(YOUR_CSS_FILE).toExternalForm());
popOver.getStyleClass()
          .add(getClass().getResource(YOUR_CSS_FILE).toExternalForm());
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bora Ciner

79439304

Date: 2025-02-14 12:03:14
Score: 1.5
Natty:
Report link

If it help, docker compose support additional_contexts

build:
  context: .
  additional_contexts:
    - foo=/my/dir/

See https://docs.docker.com/reference/compose-file/build/#additional_contexts

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

79439300

Date: 2025-02-14 12:02:14
Score: 0.5
Natty:
Report link

There is another option:

GRANT ALL PRIVILEGES ON `%`.`my_table` TO `myuser`@`myhost`;
REVOKE INSERT,CREATE,DROP,UPDATE,DELETE,ALTER,REFERENCES,CREATE VIEW,TRIGGER,INDEX,SHOW VIEW ON `%`.`my_table` FROM `myuser`@`myhost`;

I had today similar problem and same error as you.

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

79439293

Date: 2025-02-14 12:00:13
Score: 2
Natty:
Report link

You can use the OData2Linq NuGet: https://www.nuget.org/packages/OData2Linq

It is the successor of Community.OData.Linq which is mentioned here by Ihar.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ArnaudB

79439290

Date: 2025-02-14 11:59:12
Score: 4.5
Natty:
Report link

Try to style the scrollbar Custom Scrollbars In CSS

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nick Check-off

79439276

Date: 2025-02-14 11:54:11
Score: 1
Natty:
Report link

Take a look at TIME_SLICE function of snowflake.

SELECT TIME_SLICE(kyc_updated_at, 15, 'MINUTE') as bucketed_column
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Praneeth

79439274

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

Alternatively, if you do not want to set a link from "python" to "python3" you could add the preferred python path to the ⁠ -pyexec⁠ flag.

e.g.

./bin/flink run \
   --python examples/python/table/word_count.py \ 
   -pyexec /Users/user/miniconda3/bin/python3
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: LadyBug

79439270

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

Azure has so many identity options, and it’s not always clear which one fits best. For what you’re doing, Entra ID B2B collaboration is probably the way to go. It lets external businesses use their own Entra ID accounts to access your SaaS app without managing separate logins. They stay as guest users in your tenant, meaning they can’t mess with your Azure resources, just your app.

If you need to give them different roles, like an admin role for managing their own users, you can handle that inside your app using app roles in Entra ID. If you don’t want to invite every single user manually, entitlement management is worth looking into—it lets company admins request access for their people without you having to be involved every time.

B2C isn’t the right fit here since that’s more for open sign-ups, like if you were letting random users register. Your setup is strictly for business customers, so B2B keeps things cleaner and more secure.

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

79439256

Date: 2025-02-14 11:48:10
Score: 3.5
Natty:
Report link

Disqus has a new service that doesn't support SSL. Extra scripts that trigger security warnings.

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

79439242

Date: 2025-02-14 11:41:08
Score: 1
Natty:
Report link

While there are some alternatives, license4j should meet your requirements. Please refer to this quick start page and the examples available on github.com/license4j.

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

79439233

Date: 2025-02-14 11:37:07
Score: 1
Natty:
Report link
[![GitHub downloads](https://img.shields.io/github/downloads/{user}/{repo}/latest/total?label=Downloaded&labelColor=27303D&color=0D1117&logo=github&logoColor=FFFFFF&style=flat)](https://github.com/{user}/{repo}/releases/latest)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cuongtran.tm

79439228

Date: 2025-02-14 11:34:06
Score: 4
Natty: 5.5
Report link

How do you know what paths are relevant or not for current execution in general case? I believe, repo's 1st use case is AOSP, in which all bp files are gathered irrespective where they are. In both 'used' and 'unused' repositories. I would say, i had different problem when one node wasn't deleted for unknown reasons. And that led to build failures in my case when the same bp node id was defined in two places.

Reasons:
  • Blacklisted phrase (1): How do you
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do you
  • Low reputation (1):
Posted by: ice

79439220

Date: 2025-02-14 11:31:05
Score: 2.5
Natty:
Report link

This method with the curly brace "{" works great, but you should be carefull to integrate it before previewing the result. Once you preview the result with out the curly braces you cannot edit the dimensions. Even if you put it later it won't work and you'll have to reupload the image for this to work

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

79439212

Date: 2025-02-14 11:29:02
Score: 6 🚩
Natty: 4.5
Report link

@ChristianAdams: Many thanks for your detailed responses here, they are most useful. One major contradiction though is confusing me:

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @ChristianAdams
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Crag Jones

79439205

Date: 2025-02-14 11:27:02
Score: 2.5
Natty:
Report link

Do not try to install "PyQt5" but just "PyQt". Add the version if necessary, but at the moment of writing 5 is still current.

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

79439200

Date: 2025-02-14 11:26:01
Score: 2.5
Natty:
Report link

An additional reason you might see this error is if you're testing in the developer console. Instead, you need to run the code for when a button is clicked, for example.

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

79439194

Date: 2025-02-14 11:24:01
Score: 0.5
Natty:
Report link

You can use this

  rowDrag: (params) => {
    if (params.node.data.name == "John") {
      return false;
    }
    return true;
  }
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29643990

79439192

Date: 2025-02-14 11:23:01
Score: 0.5
Natty:
Report link

I know it's an old post, but I stumbled upon a similar conundrum.

I ended up wrapping a CheckboxSelectMultiple widget with a single choice inside a MultipleChoiceField. This allows the form to still be valid even without a return. I think this is an important aspect as the form.is_valid() method should be used to actually validate the form and not as a try-except substitute.

This worked for my application

 pseudo_checkbox= forms.MultipleChoiceField(
    choices=[('checked', 'Check Me')],
    widget=forms.CheckboxSelectMultiple(),
)

And having

checkbox = any(form.cleaned_data.get('pseudo_checkbox'))

In HTML, the multi checkboxes are treated as a list of checkboxes, so you can still change properties or apply functions to it.

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

79439190

Date: 2025-02-14 11:22:00
Score: 1
Natty:
Report link

The error you mentioned means that WooCommerce REST API request is not authenticated properly.

1- To solve this check if you have enabled REST API by going to WooCommerce > Settings > Advanced > Legacy API.

2- If this is enable verify the keys. Go to WooCommerce > Settings > Advanced > REST API. Regenerate keys if needed.

3- Check API URL.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gauri Kaushik

79439188

Date: 2025-02-14 11:22:00
Score: 4
Natty:
Report link

pip uninstall jupyter_nbextensions_configurator

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 彡 Ѕαɳʝαy Ƙυɱαɾ 彡

79439187

Date: 2025-02-14 11:22:00
Score: 1
Natty:
Report link

I found a potential fix for this issue: The async method needs to be called instead of the one with the completion handler.

Task {
    let accessIsGranted = await AVCaptureDevice.requestAccess(for: .video)
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Luciano Perez

79439171

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

As per this official document of IAM cloud build has permissions for overall build not for triggers. It means we have permission for build-level not for trigger level. Cloud Build Editor has Full control of Cloud Build resources that is the reason you are getting full access or no access, I have tried to reproduce the same scenario but am facing the same issues.

My suggestion is to have separate dev, UAT, and PROD projects and so that you can provide the permissions as per your requirement.

I have checked for feature requests or bugs on it but it seems any issues are not created till now so if you are not satisfied you can create a new Issue tracker thread describing your issue. If you are using paid support you can create an issue.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • High reputation (-1):
Posted by: Sai Chandra Gadde

79439163

Date: 2025-02-14 11:15:58
Score: 1.5
Natty:
Report link

I had to go to File | Project Structure... | Modules and hit the + to add my current project as a module. After this the I could successfully run the code.

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

79439156

Date: 2025-02-14 11:12:57
Score: 0.5
Natty:
Report link

Rather late than never.

I was getting the same error. This error can be misleading, In my case I am using postgres, so in my docker-compose.yml file I added an extra letter S on the image: postgress. So when docker tried to pull this image it could not find it, it resulted in the "volume sharing" error but as we can see the issue was the spelling postgress, this must be postgres (single letter S at the end)

Don't just look at the Error List window on visual studio, also inspect the Outout window, it might contain the actual cause of the volume sharing error, see below:

Erro in Output Window

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

79439155

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

from: https://wordpress.org/support/topic/moving-sold-items-to-bottom-of-page-automatically/

class iWC_Orderby_Stock_Status {
    public function __construct() {
        if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
            add_filter('posts_clauses', array($this, 'order_by_stock_status'), 2000);
        }
    }

    public function order_by_stock_status($args) {
        global $wpdb;

        if (is_woocommerce() && (is_shop() || is_product_category() || is_product_tag())) {
            // Include posts with '_stock_status' meta key in the SQL query
            $args['join'] .= " LEFT JOIN {$wpdb->postmeta} istockstatus ON {$wpdb->posts}.ID = istockstatus.post_id AND istockstatus.meta_key = '_stock_status'";

            // Order by '_stock_status' in ascending order ('instock' comes before 'outofstock')
            $args['orderby'] = "istockstatus.meta_value ASC, " . $args['orderby'];
        }

        return $args;
    }
}

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

79439153

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

For auto copy and replace file, add this to PostBuild command.

In my case is net8.0

xcopy $(OutDir)\runtimes\win\lib\net8.0\System.Management.dll $(OutDir)\System.Management.dll /y
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tqk2811

79439152

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

When working with autogen.ChatResult, the response object contains multiple attributes, and the actual chat history is stored in a dictionary format. To extract and display relevant information, follow these steps:

You need to access the dict attribute to convert the response into a dictionary and then extract the chat history.

def extract_chat_response(response):

# Convert response to dictionary
response_dict = response.__dict__

# Extract chat history
chat_history = response_dict.get("output", {}).get("chat_history", [])

# Display the assistant's response
if len(chat_history) > 1:
    st.chat_message("assistant").write(chat_history[1]["content"])

# Iterate through chat history and display responses until "TERMINATE" is found
for i in range(2, len(chat_history)):
    if "TERMINATE" not in chat_history[i]["content"]:
        st.chat_message("assistant").write(chat_history[i]["content"])
    else:
        break  # Stop iterating if "TERMINATE" is found
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Thomas James

79439145

Date: 2025-02-14 11:04:55
Score: 4.5
Natty:
Report link

Use @csrf token in after every tag start

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @csrf
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mahmud Software

79439142

Date: 2025-02-14 11:02:52
Score: 7 🚩
Natty:
Report link

have you installed this feature? https://camel.apache.org/blog/2025/01/camel-karaf-release-4.9.0/

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

79439133

Date: 2025-02-14 10:59:51
Score: 4.5
Natty:
Report link

Ask SADAKO today at CyberValentime$$! See http://CzeKaj.com.pl/FileMON/

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

79439131

Date: 2025-02-14 10:58:48
Score: 7.5 🚩
Natty: 5
Report link

Example given by Siddharth Rout is marvelous. Can someone tell how to use the same coding for the same result on an Excel Sheet instead of User Form?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can someone tell how
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Al Momin Ali Danyal

79439128

Date: 2025-02-14 10:57:48
Score: 1.5
Natty:
Report link

So, after trying out a few things I actually ended up with a solution to my specific problem. As pointed out by @JRR, the pipeline argument does not work with LidR LAS objects as specify it directly in the function but it just does not work. However, you can still use different transformation pipelines, they just need to be the default option with st_transform. So when calling sf::st_transform(las, crs = 25832), it uses the method that is at the first place when looking at the options through options <- sf_proj_pipelines(source_crs = "EPSG:31468", target_crs = "EPSG:25832"). In my case it is a transformation that makes use of an NTv2 file, which can only be accessed through the connection to the network with sf_proj_network(enable = T), however I tested a few times and the only way I could use it with the Lascatalog processing engine was to actually put the file itself in the directory of st_proj_search_paths().

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

79439126

Date: 2025-02-14 10:57:47
Score: 5.5
Natty: 4.5
Report link

I'm about to go on the same journey in the next months... I wonder how you solution looks after all this years... did you face any limitations with your Design? did it solve the problems you were facing? any learnings you could share? Best regards, Danilo!

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Danilo Dutra

79439120

Date: 2025-02-14 10:56:47
Score: 1
Natty:
Report link

I used editable and completed options of matStep but they didn't work for me, so I've decided to simply use ngIf

  <mat-step *ngIf="myCondition === true">
  </mat-step>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hamid

79439118

Date: 2025-02-14 10:55:47
Score: 3.5
Natty:
Report link

I put a delay until the element with that name exists. and used FindElements instead of FindElement.

But now I am getting below error: System.NullReferenceException: Object reference not set to an instance of an object.

but same works fine when I run the code locally in my machine

Reasons:
  • RegEx Blacklisted phrase (1): I am getting below error
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Omkar Patil

79439114

Date: 2025-02-14 10:53:46
Score: 2.5
Natty:
Report link

Please also update the Java version to the latest JVM version so that the release build is generated with the latest package, reducing the chances of a crash in any flutter versions.

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

79439109

Date: 2025-02-14 10:52:46
Score: 0.5
Natty:
Report link

I was wondering the same and I see that it is an old thread but I'll still reply if anyone needs help regarding this.

I was setting up Google Calendar API for myself as well (Obsidian integrations and stuff) and wondered the same thing. If you'd like to add & use Sensitive Scopes in your 'project' without Google's approval (or setting up websites etc.). Simply:

  1. Head to Google Auth Platform -> Audience -> Set it to Testing.
  2. Under 'Test Users' add your own Google email.

Also, after setting this up, I believe you can use https://developers.google.com/oauthplayground/ as well but tokens need to be refreshed (can be easily set-up by using your own Oauth credentials (⚙️ Gear on the top-right corner).

It worked like this for me with Google Calendar's sensitive scopes.

Reasons:
  • Blacklisted phrase (2): was wondering
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Thaddeus

79439098

Date: 2025-02-14 10:49:45
Score: 1
Natty:
Report link

Bars is a built in function in mql5 that returns an integer. So you should use Bars() for instance you could use:

if( Bars(_Symbol,PERIOD_CURRENT) < 3 )

if you want to define a variable with its name you could define it by lower case for instance :

int bars ;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahdi Ahmadifard

79439097

Date: 2025-02-14 10:49:45
Score: 1
Natty:
Report link

You can get the value writing %tSheetObject['results']['user']%. If it doesn't work, please check if tSheetObject is created correctly. It should be something like {'foo':'aaa', 'results':{'bar': 'bbb', 'user': 'John'}}.

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

79439076

Date: 2025-02-14 10:41:44
Score: 0.5
Natty:
Report link

Since PHP 8.4 there are abstract properties now: https://www.php.net/manual/en/language.oop5.abstract.php

As of PHP 8.4, an abstract class may declare an abstract property, either public or protected. A protected abstract property may be satisfied by a property that is readable/writeable from either protected or public scope.
An abstract property may be satisfied either by a standard property or by a property with defined hooks, corresponding to the required operation.

Reasons:
  • No code block (0.5):
Posted by: newgennerd

79439073

Date: 2025-02-14 10:39:43
Score: 1.5
Natty:
Report link

there was an issue some time ago (dont know if still applies, but worth trying) where they discovered puppeteer defaults to 96dpi instead of 72dpi when converting from px to inches. the easy solution at that time was to scale the px dimensions previous to 'print' the page. here you can read the issue: https://github.com/puppeteer/puppeteer/issues/3357

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

79439072

Date: 2025-02-14 10:38:43
Score: 1.5
Natty:
Report link

There's even better solution to this now:

redemption { association :redemption, units: sub }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user1428567

79439060

Date: 2025-02-14 10:35:42
Score: 1
Natty:
Report link

You can create Azure DevOps Pull requests using Azure CLI. I use this in the terminal window of vs code and documented in this blog post https://www.blueboxes.co.uk/creating-command-line-azure-devops-pull-requests

There is also an Azure Repos Extension for Visual Studio Code that provides a UI though I have not used it.

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: John

79439053

Date: 2025-02-14 10:32:41
Score: 3.5
Natty:
Report link

youre stupid and im not i can do this easy virgin

-80 year program

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: 80 year programmer

79439043

Date: 2025-02-14 10:26:40
Score: 0.5
Natty:
Report link

It should be noted though that many top Coq experts recommend to not use dependent vectors. You will likely get along quite a while with a lot of effort but most likely you will have to remove all usage of Vector.t from your project before the end of it. You will save a lot of time if you do this right away. See e.g. this post by Adam Chlipala (author of http://adam.chlipala.net/cpdt/):

https://sympa.inria.fr/sympa/arc/coq-club/2017-12/msg00087.html

or the discussion here:

https://github.com/coq/stdlib/issues/54

The better approach is to use plain lists and proofs that the lists have the size you want.

Reasons:
  • No code block (0.5):
Posted by: M Soegtrop

79439024

Date: 2025-02-14 10:20:39
Score: 2
Natty:
Report link

Not sure I understand your question,

does (a),(b) and (c) protect against Y errors or do I have to implement something to protect Y errors?

what are (a), (b) and (c) here?

Using the type Y error correction circuit as a basis, design and implement a circuit to correct generic errors of a qubit.

Is this what your code is trying to achieve? Where are you getting the ``type Y error correction circuit'' from (e.g. a reference would be helpful)

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

79439023

Date: 2025-02-14 10:20:39
Score: 3.5
Natty:
Report link

/dev is reserved somehow by docker itself. That's why I can't use it as my workdir. I hope it is really so and I'm not misunderstanding something.

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

79439006

Date: 2025-02-14 10:10:36
Score: 1.5
Natty:
Report link
  1. Delivery has failed to these recipients or groups: ™️monzturr ™️Eminem ([email protected]) The recipient's mailbox is full and can't accept messages now. Please try resending your message later, or contact the recipient
    directly.

       Diagnostic information for administrators:
       Generating server: LV8PR16MB5984.namprd16.prod.outlook.com
       [email protected]    Remote server returned '554 5.2.2 mailbox full; STOREDRV.Deliver.Exception:QuotaExceededException.MapiExceptionShutoffQuotaExceeded;
    

    Failed to process message due to a permanent exception with message [BeginDiagnosticData]The process failed to get the correct
    properties. 1.84300:01000000, 1.84300:01000000, 1.84300:01000000, 1.84300:02000000, 1.84300:9F000000, 1.84300:A1000000, 1.84300:01000000, 1.84300:08000000, 0.117068:08000000, 1.79180:02000000, 1.79180:9F000000, 1.79180:FA000000, 0.73100:342E6E61, 5.95292:67000000446F526F70730000, 8.111356:9552F9FE86593ECC1F1F572B2F8F6BAC1F1F572B, 0.38698:A6536B31, 1.41134:86000000, 1.41134:86000000, 1.41134:86000000, 1.41134:86000000, 7.36354:0100000000000121A6536B31, 1.41134:86000000, 7.36354:01000000000001218F5F19C9, 0.34102:A6536B31, 5.29818:0000000030303036303030302D383866622D663832392D303030302D303030303030303030303030002D3662, 5.55446:00000000333A30002D616435, 7.29828:5DAB00C00300000035323234, 7.29832:000000C00300000000000000, 4.45884:DD040000, 4.29880:DD040000, 4.59420:DD040000, 7.40840:0100000000000121A4000000, 8.45434:00000600FB8829F8000000000000000000000000, 1.46798:04000000, 5.10786:0000000031352E32302E383434352E3031323A534A32505231364D42353931343A62356435653430312D366265322D343032392D616435392D6164353965326566386165383A3135353232343A2E4E455420382E302E313200010480, 7.51330:F4A8C8F6DB4CDD080F010480, 0.39570:00000000, 1.64146:02000000, 1.33010:02000000, 2.54258:00000000, 0.58802:07000000, 1.33010:02000000, 2.54258:00000000, 0.58802:00000000, 1.64146:9F000000, 1.33010:9F000000, 2.54258:DD040000, 1.33010:9F000000, 2.54258:DD040000, 0.79500:12000000, 1.79180:A1000000, 1.79180:08000000, 0.100684:13000000, 4.70028:DD040000, 1.52466:01000000, 0.60402:59000000, 1.52466:01000000[EndDiagnosticData] [Stage: CreateMessage]' Original message headers: Received: from SA1P222CA0182.NAMP222.PROD.OUTLOOK.COM (2603:10b6:806:3c4::20) by LV8PR16MB5984.namprd16.prod.outlook.com (2603:10b6:408:1f0::12) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.8445.13; Fri, 14 Feb 2025 09:42:56 +0000 Received: from SA2PEPF00003F61.namprd04.prod.outlook.com (2603:10b6:806:3c4:cafe::d3) by SA1P222CA0182.outlook.office365.com (2603:10b6:806:3c4::20) with Microsoft SMTP Server (version=TLS1_3, cipher=TLS_AES_256_GCM_SHA384) id 15.20.8445.16 via Frontend Transport; Fri, 14 Feb 2025 09:42:56 +0000 Authentication-Results: spf=pass (sender IP is 209.85.218.53) smtp.mailfrom=gmail.com; dkim=pass (signature was verified) header.d=gmail.com;dmarc=pass action=none header.from=gmail.com;compauth=pass reason=100 Received-SPF: Pass (protection.outlook.com: domain of gmail.com designates 209.85.218.53 as permitted sender) receiver=protection.outlook.com; client-ip=209.85.218.53; helo=mail-ej1-f53.google.com; pr=C Received: from mail-ej1-f53.google.com (209.85.218.53) by SA2PEPF00003F61.mail.protection.outlook.com (10.167.248.36) with Microsoft SMTP Server (version=TLS1_3, cipher=TLS_AES_256_GCM_SHA384) id 15.20.8445.10 via Frontend Transport; Fri, 14 Feb 2025 09:42:55 +0000 X-IncomingTopHeaderMarker: OriginalChecksum:7BC473A9EAFB2B9B44705D020346B2967B055A1E1F1D16E90927EEA2689EFDCB;UpperCasedChecksum:20924DBCC05BB381E545CB0555CD284675EFBAF70DE5B51500B20AB8759DF812;SizeAsReceived:2766;Count:15 Received: by mail-ej1-f53.google.com with SMTP id a640c23a62f3a-ab7ca64da5dso350870566b.0 for [email protected]; Fri, 14 Feb 2025 01:42:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1739526175; x=1740130975; darn=hotmail.com; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=PqcSZ3KniwUUwv4pfNQV0gEot55+/E1LtHNzDrpEUFo=; b=BHLIhqBNTj+RzQB4Rt/qEWTz5kKaC4vA/vipA0gXHnrOXqclPJgLvxtbzSo1tHIiiu OO0e4UoQbOzbzoMLnLMmd0fb1dV4PKY2CgH/hiMQbbwFH/fLSE0Lr/uE/zifqnqABrRX zLuBq4O7J+PWzlS6jhOCbH02SDEW4gHbwk9Eo5f4tWjCs5+yiZTk/S7ieO6E5LZqvTuh t4FiswstkGsSaI+oVHw1NMyDO6ySuBgtf//BwSvubwlguMmllLMJCNiuvuRmG9EbUKAs yg/47khgujKR8SYQOmnHqMEBJKi6SRZkQ/llKns3YPrUxEvvJdI2Zwf/f14SxRkk9UkF kHYA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1739526175; x=1740130975; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=PqcSZ3KniwUUwv4pfNQV0gEot55+/E1LtHNzDrpEUFo=; b=noS1PghQFz01Qi1vyD0EIF25/6SM/bq/YwLV5oopRRfx9myV9TVexeb6PLD4IsuObC huSfP6GZ0O34ZmiCgwCF39Cr/JSx2NR8F54VbNtprrdJqsPlJDeEC9kOWxNZrXcp9NBt ZpDxeMA4VqbsnmULL8vvjYU7Vss3N0E5QHushuRcgH8xK4B8lgDCc5eRb//MaVvnKzPA h43zgceroSdFjRz7Saz73Y3AnJFm33DBos6WivTA1dCLH2KDMO/uMmZziHOdCWgyG3KA rfrZM8zF6FnrS7zB2pvZlmLPyHN60wyGjmzG+pxFRRUVa0AgaOcFJ3cxqLN7w9xXYvA/ oFwQ== X-Gm-Message-State: AOJu0Yybwrp0iDmAl0Kee6XTwENWeJDiw5DV/DGQB5tHACevnm7tEdSh

    SH6Prgzk1BrLdjLSRci5c4eARnqteHVoIaPBurJU2bUlOhyd70Ayqx8HWAJzuKvh6M+LAg5KN87
    N0+JYiiDHn/gHjuDkBOF2161mtK2p0ztb    X-Gm-Gg: ASbGncvw3GrwYzr2hwj3vmF+pNaB0VlvPT50v8XUkMFzKANTS5qmb8TOoVu1uqCp17o
    
    ERx4BL5S25VqHMfsL9qBv3PhbI7Eu3kbc/g5mpMxd0BmWBqWp9keVfvC1TzHO/xW2oxRS/rwOuX
    D7oAIBzSVyf5KlWM6R8H45J8Jt/dSERBs=    X-Google-Smtp-Source: AGHT+IGTwnw7G9uVmaHRWrobt/1CKLaKZltshilbG2WJzHfvdKz1wmovJwy5YPkZ+7SS41bPJ5MWdOgdVkLAl1Tw33c=
    

    X-Received: by 2002:a17:907:60d1:b0:ab6:d4ce:568c with SMTP id a640c23a62f3a-aba51480fe2mr711613066b.13.1739526175179; Fri, 14 Feb 2025 01:42:55 -0800 (PST) MIME-Version: 1.0 From: Marshall Mathers [email protected] Date: Fri, 14 Feb 2025 01:42:43 -0800 X-Gm-Features: AWEUYZkkHYtV_VBzf95-bCoQ_sS_Tjw5EL5blbMXgYThty-mQ5uE5wkIRrZgBTc
    Message-ID: CABXxOXqaHVCixD+xDtaKDy2iNGYgkwcpHcO-pf1F+pAVMs+-EQ@mail.gmail.com Subject: =?UTF-8?B?wq5b4oK/IDExNCwyNjcuMjg3MjUwXcKu?= To: =?UTF-8?B?4oSi77iPbW9uenR1cnIg4oSi77iPRW1pbmVt?= [email protected] Content-Type: multipart/alternative; boundary="000000000000bfcbd4062e16ffaa"
    X-IncomingHeaderCount: 15 Return-Path: [email protected]
    X-EOPAttributedMessage: 0 X-EOPTenantAttributedMessage: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa:0 X-MS-PublicTrafficType: Email X-MS-TrafficTypeDiagnostic: SA2PEPF00003F61:EE_|LV8PR16MB5984:EE_ X-MS-UserLastLogonTime: 12/9/2020 12:50:26 AM X-MS-Office365-Filtering-Correlation-Id: b883287a-cf60-4e5a-527f-08dd4cdbf5b1 X-MS-Exchange-EOPDirect: true X-Sender-IP: 209.85.218.53 X-SID-PRA: [email protected] X-SID-Result: PASS
    X-Microsoft-Antispam:

    BCL:0;ARA:1444111002|461199028|970799057|2100799027|9020799016|21080799006|1380799030|1360799030|1370799030|440099028|3412199025|14115499003;
    

    X-Microsoft-Antispam-Message-Info:

    =?us-ascii?Q?+uRF3rKB1wnhklmz5sV/FclOJ49dZRC9+gPA4EmfUXXI64vMQ2a0nd4hOvru?=
    =?us-ascii?Q?v5uCB9dAyscyNyM64V28O8ovxc1nlCrpQjyu20LgHRbG5LEjrkC9OusTDW1j?=
    =?us-ascii?Q?M12KS7qe6oh6KaAgZ20+zvOkuqxHgNn/klrpTCDaCs7VDw4uiifT9AcK33iC?=
    =?us-ascii?Q?yWEUQ2D1xo92WhX1XJJPQWmhetECazRTvm8+afrM2UHp2wm3Q7gdW/mhhyAx?=
    =?us-ascii?Q?oOzJKtNLjrRCQ4OOzOXtSCzdZbCvJR+LIOOFu2gavIMr91gF01ufSydMjm8E?=
    =?us-ascii?Q?rbINABFRl+0yo/C0gUBESRTeOZrFh5xL5LVdKFor+w4iUq81ugG0K8VLszIp?=
    =?us-ascii?Q?mPyWa9VoqqW4+iQ6pFvjlC1m8FPBMoMwmqn6mR1C6+mUzPzM+Rd3t/+rDcsA?=
    =?us-ascii?Q?oHhQZHD79tLfR5id7Sqs5Tq742+/j1rIe+pqKZJsSj7HY2IrsYMaOykn/ZOz?=
    =?us-ascii?Q?oslO2IQMsv4JH9ADCT1f2fMUhk1OxuMKi+js3PzbYSMtw/Otnt0iUFd7xkQx?=
    =?us-ascii?Q?nRfoOlb2DmxGvPHsDNokZ0CQcK2PciOngECTxowAP62csUP48nRJ7TyWfuGc?=
    =?us-ascii?Q?S8S2geuBFCIKq63K2Bvn8wyC2JM1ZtYmsRXLJTGafe9rpo8sKWbZIoEnrKSX?=
    =?us-ascii?Q?wuA8Gd1M3PXKsha+Zdw7SUUzbI7vt3ekcnHRJ2iIKu7us5JlKUcSMu6rJ2Vp?=
    =?us-ascii?Q?XEs4iJeXwNr3rpy0FH944fa9GnWGTZcjp785naOlrGkNR75qhG5ij9zzKf+y?=
    =?us-ascii?Q?K56Ks28kaMvAv1T5FT7u2fyIUQCGXmw4lGH4uE0BxUguQCTlNufcERC3TZIk?=
    =?us-ascii?Q?36wU6GVcNkWaD4C2e78X8eoXy/LmJ+ZQILA51xoYEjhPJm2RTarhDijtzWwt?=
    =?us-ascii?Q?uh5g4po3tCHt8VvRffT4+CXR5wLKY0PEdq37QDuD8pqemoDMdiu4So2CV9F5?=
    =?us-ascii?Q?oTNfWe0QUd1b54oABh3ETexFk5ZdZ9oRqJjepDcybRI1zS4hD+nQWvIK6myt?=
    =?us-ascii?Q?EfDx6rE9b0qlQiszzJmPq2uFWwBmNVpkXnfOvp2INWHsfxCh80g14bRM7XPY?=
    =?us-ascii?Q?0Ls2Sasj65FQpvDl3a4SrB1C152Cd99C88Rj+lRhdXIYg/P6zv4RDLziJ+bP?=
    =?us-ascii?Q?5SsqwTjAp7+TcogyVvHv8JNppUuGasCABcXPYElb81Iqm4kCGiwN2QT4YKX+?=
    =?us-ascii?Q?5OvO59miGV5hJbHn3RKltFj2aqxllbjCY5IrV8AqJNJe8yIzwbXWp6/pibWU?=
    =?us-ascii?Q?mYSK2vlFPHralzfHfmDtnjOsrlogSRywCLbm77HOt+f9y36+VGO9ZdcxZnEZ?=
    =?us-ascii?Q?v/uobcWm2bJN68p/Vw0w88NlqBgJk1h1tNKHK+F4dytmsyKU+CBY4Xri8mCo?=
    =?us-ascii?Q?f+mCiQVMhNIFMlIPPJoTu6pJ3llDNs0trfV0guQs8A1wcNHH9tN59v2L8w1V?=
    =?us-ascii?Q?7ZeYdvDoR8CHprts8QauhBi5kvqL5m0c1AYM+9R790udiQ6Vu16di//cqYst?=
    =?us-ascii?Q?yVg5Flew2NdZ1ScwYXYfa5ohUkdrTlhzO0+RYnbMghzsWC8ZsyLzbqdqCrIP?=
    =?us-ascii?Q?vhcJkjkZXOvvPgj4BPPh9HeEjprvhVenzFcOP2IVh94H6ae0+p9Zsib2Ffgn?=
    =?us-ascii?Q?V1MGYKhrEWGdMD079Ojhzqk=3D?=    X-MS-Exchange-CrossTenant-OriginalArrivalTime: 14 Feb 2025
    

    09:42:55.9753 (UTC) X-MS-Exchange-CrossTenant-Network-Message-Id: b883287a-cf60-4e5a-527f-08dd4cdbf5b1
    X-MS-Exchange-CrossTenant-Id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa
    X-MS-Exchange-CrossTenant-AuthSource: SA2PEPF00003F61.namprd04.prod.outlook.com X-MS-Exchange-CrossTenant-AuthAs: Anonymous
    X-MS-Exchange-CrossTenant-FromEntityHeader: Internet
    X-MS-Exchange-CrossTenant-RMS-PersistedConsumerOrg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-Transport-CrossTenantHeadersStamped: LV8PR16MB5984

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): 00000000000
  • Filler text (0): 00000000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000000000
  • Filler text (0): 00000000000
  • Filler text (0): 000000000000000000000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 00000000
  • Filler text (0): 000000000000
  • Filler text (0): aaaaaaaaaaaa
  • Filler text (0): aaaaaaaaaaaa
  • Filler text (0): 00000000
  • Filler text (0): 000000000000
  • Low reputation (1):
Posted by: Eminem

79439001

Date: 2025-02-14 10:07:36
Score: 2
Natty:
Report link

i think you should scale down the input shape from 227,227,3 to 32,32,3(because of cifar images shape). Also try reducing the size of kernels from (11,11) to (3,3) and stride to 1. y doing so you are preventing the details from getting missed out.Also you need to reduce th neurons of fc layers from 4096 to 1028.These are the basic steps you can do to get the model work. Even then there are a lot of steps involved to get your model reach decent accuracy.

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

79438996

Date: 2025-02-14 10:07:36
Score: 1.5
Natty:
Report link

If you want to set a time for automatically connecting and disconnecting the charger on an Android device, here are a few possible solutions:

  1. Using a Smart Plug If you want to physically control when your charger supplies power, use a smart plug with a timer feature. You can schedule when the plug turns on or off, controlling the charging period.

  2. Using an Automation App (Tasker / MacroDroid) Apps like Tasker or MacroDroid can automate charging actions, such as sending notifications when charging reaches a certain percentage or even turning off charging if your device supports automation through root access or special permissions.

Tasker Example: Trigger: When the charger is plugged in. Action: Set a timer (e.g., 2 hours). Action after Timer Ends: Disable charging (if root access is available) or send a reminder to unplug.

  1. Using Battery Protection Features (OEM-Specific) Some manufacturers (like Samsung, OnePlus, and Xiaomi) offer battery protection settings:

Adaptive Charging (Pixel, OnePlus, Samsung): Adjusts charging speed and stops at 80-90% to prevent overcharging. Scheduled Charging (Some OEMs): Allows charging at specific times for battery health.

Upgrade Your Electronics with pinekart!

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

79438993

Date: 2025-02-14 10:06:35
Score: 0.5
Natty:
Report link

The command you are executing to start your tests is using POSIX shell syntax for setting the environment variable PWDEBUG, but you seem to be executing it in a PowerShell.

The PowerShell syntax is a bit different. Try executing the following command instead:

$Env:PWDEBUG = 1; pytest -s test_saucedemo.py

See the question PowerShell: Setting an environment variable for a single command only.

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

79438990

Date: 2025-02-14 10:05:35
Score: 1.5
Natty:
Report link

You don't have a struct node, you have an unnamed struct.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Sergej Christoforov

79438974

Date: 2025-02-14 10:01:34
Score: 4
Natty:
Report link

.environment(._lineHeightMultiple, lineHeightMultiple)

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: medovar

79438967

Date: 2025-02-14 09:58:33
Score: 1.5
Natty:
Report link

Answered in comments: putting entire lambda in parentheses solves the issue.

INSTANTIATE_TEST_SUITE_P(
    instance, suite, cases,
    ([](const testing::TestParamInfo<param>& info) {
        const auto [a, b] = info.param;
        return std::string(a) + "_to_" + std::to_string(b);
    })
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dominik Kaszewski

79438965

Date: 2025-02-14 09:57:33
Score: 2
Natty:
Report link
  1. HDfs is not persistent but azure ADLS is. which means if i will shut down the hdfs i will loose the data because storage and compute is tighltly coupled in hdfs.
  2. in HDFS we can not access data from one cluster to another
  3. data is stored as block in HDFS and data is stored as objects in Azure
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ankur Napa

79438964

Date: 2025-02-14 09:57:33
Score: 1
Natty:
Report link

You can do this by setting up PDO mapping in your EtherCAT config tool (like TwinCAT, Acontis, or whatever master you’re using).

Basically, in your setup:

SubDeviceA → Write output at bit 0 / Read input from bit 8 (datagram 0). SubDeviceB → Same but on datagram 1. You just need to manually assign bit offsets in the process image inside the config tool. Most of the time, you don’t need to mess with the ENI file unless your master doesn’t support bit-level mapping.

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

79438962

Date: 2025-02-14 09:56:33
Score: 2.5
Natty:
Report link

I don't think there is a way to achieve that (I tested on Dbt 1.8). My suggestion is to create an intermediate (replication) model downstream to apply tests.

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

79438956

Date: 2025-02-14 09:54:32
Score: 5
Natty:
Report link

thx guys I already debugging by myself. and I already fixed it

Reasons:
  • Blacklisted phrase (1): thx
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christianus Yanuar

79438953

Date: 2025-02-14 09:52:31
Score: 0.5
Natty:
Report link

Since VS Code 1.97, you can reposition the command palette and quick picks by dragging and dropping. It will remember the position between reloads. The Customize Layout picker also provides some presets.

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

79438950

Date: 2025-02-14 09:51:31
Score: 0.5
Natty:
Report link

On our gitlab instance (currently running GitLab Community Edition v17.5.5) we have a ci pipeline which works quite well setting dynamic environment properties through variables like so:


[... workflow, stages...]

variables:
  STAGE_NAME: "our-app-$CI_COMMIT_REF_SLUG"
  DEPLOYMENT_HOST: "$STAGE_NAME.our.domain"

[...build etc...]

deploy_review:
  stage: deploy
  script:
    - echo "Deploying tag $CI_COMMIT_REF_SLUG to stage $STAGE_NAME at $DEPLOYMENT_HOST"
    - ./actually_do_your_helm_or_whatever_deployment.sh
  environment:
    name: review/$CI_COMMIT_REF_SLUG
    url: https://$DEPLOYMENT_HOST
    on_stop: destroy
    auto_stop_in: 14 days
    deployment_tier: development

destroy:
  stage: deploy
  variables:
    GIT_STRATEGY: none
  script:
    - echo "Removing stage $STAGE_NAME at $DEPLOYMENT_HOST"
    - ./your_tear_down_script.sh
  environment: 
    name: review/$CI_COMMIT_REF_NAME
    action: stop
  when: manual

See here for details:

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

79438938

Date: 2025-02-14 09:48:30
Score: 2
Natty:
Report link

You can use the OData2Linq NuGet: https://www.nuget.org/packages/OData2Linq

It is the successor of Community.OData.Linq which is mentioned here by Ihar.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ArnaudB

79438930

Date: 2025-02-14 09:45:29
Score: 1
Natty:
Report link

It turns out it's really easy. Everything you need is already included. All that is needed is some Thickness value.

I will post screenshots in a moment.

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

79438928

Date: 2025-02-14 09:44:29
Score: 1.5
Natty:
Report link

Providing you know the name of Gitlab runner, you can try with

gitlab-runner --log-format json list 2>&1 | jq -r 'select(.msg | match("runner-")) | .msg'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bartosz Dopke

79438920

Date: 2025-02-14 09:42:28
Score: 7.5
Natty: 7.5
Report link

how can we add spaces in a paragraph?

Reasons:
  • Blacklisted phrase (1): how can we
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how can we add
  • Low reputation (1):
Posted by: Kriti Bhaskar

79438917

Date: 2025-02-14 09:42:27
Score: 4.5
Natty:
Report link

Its sad but i am happy i am not the only one getting this error. I was considering that its happening when i turn off my PC faster then VScode/git can resolve everything (but how this happens i cant tell... ) And when i load again and try to git pull i am getting that error... I tried removing the files but repo i am using has so many files its just remove/clone again and again every week..

Is there actual solution/prevention for this ?

Reasons:
  • RegEx Blacklisted phrase (1): i am getting that error
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Filip Csupka

79438915

Date: 2025-02-14 09:41:27
Score: 3
Natty:
Report link

I had the wrong version of java. It helped when I pasted my custom jar into the libs directory. This helped me debug because kafka-connect started returning errors.

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

79438910

Date: 2025-02-14 09:37:26
Score: 0.5
Natty:
Report link

In APIM 4.3.0, You need to add the following config to the deployment.toml file resides in the <APIM_HOME>/repository/conf folder.

[apim.oauth_config]
enable_outbound_auth_header = false
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Siluni Pathirana

79438903

Date: 2025-02-14 09:35:26
Score: 2.5
Natty:
Report link

Following the documentation you provided, theses variables are only available for pre-pipelines.

To be able to use it, you need to have your stage for this job defined as ".pre".

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

79438898

Date: 2025-02-14 09:33:25
Score: 0.5
Natty:
Report link

I solved the hanging issue by applying persist(MEMORY_AND_DISK) to the DataFrames retrieved from the database. It seems that the data was not being cached or was getting lost in memory, which resulted in additional queries to the database—one of which would hang. It’s unclear whether the hanging is related to the Kubernetes client eventually failing with the error 'too old resource version'. I hope this information is helpful to someone.

Reasons:
  • Whitelisted phrase (-2): I solved
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Артем Суслов

79438896

Date: 2025-02-14 09:32:25
Score: 1
Natty:
Report link

I think the real unanswered question is:

can the server dll for remoting be deployed "alone" without copying side by side any external reference to the dll where interface is applied ?

I mean, the server do incorporate the interface statically (so IMyFooClass.dll do not need to be copied), and the client do use remoting with a reference to the same IMyFooClass.dll.

Also, may i use some "standard" class, like an Hashtable, to be registered by the service and send informations to client wothout requiring any reference that need to be added on both client and server side ?

I'm looking for a way to decoupling server and client development, without sharing any common types libraries, but using only standard types like expando objects, collections, hashtables, and so on

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

79438895

Date: 2025-02-14 09:32:25
Score: 1
Natty:
Report link

The plain answer is no: you can't via CSS without changing the HTML structure or use JS (as shown in the other answers)

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

79438892

Date: 2025-02-14 09:31:25
Score: 1
Natty:
Report link

Hmm, the link is dead by now. And i don't find anything searching the electron-builder documentation the signDlls option anymore. Maybe it has been removed from the API. I think it's a pity because it seems natural to isgn the dll binaries as well without having to plum it up yourself with some hardcoded scripting overruling the electron-builder sign flow.

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

79438889

Date: 2025-02-14 09:29:24
Score: 0.5
Natty:
Report link

I had find the solutions by using eventBus in vue 2 The below code should be in the addReply component and event tigger after update the status.

this.$eventBus.$emit('updateTicket')

this.$eventBus.$on('updateTicket', async () => {
        if(this.screentype == 'TICKETSSCREEN'){
            await this.getSingleticketsData({
                "operation" : "LS",
                "id" : this.ticketsId
            });
        }
    });  

Use the event on to fire the event and I am calling the get api

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

79438886

Date: 2025-02-14 09:29:24
Score: 1.5
Natty:
Report link

I've been thinking about your question and found a solution that supports different sizes of cells.

Idea is the following: you don't really need to create a new gradient for every cell, you can just create an image of this gradient once and then set its image to the background. It will resize nicely.

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

79438885

Date: 2025-02-14 09:29:24
Score: 1
Natty:
Report link

Solution 1: Change Execution Policy Temporarily

Run the below command in PowerShell (Admin):

Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

Solution 2: Change Execution Policy Permanently If you want a permanent fix, run PowerShell as Administrator and execute below command:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Falana Femi Kehinde