79665546

Date: 2025-06-14 03:43:42
Score: 1
Natty:
Report link

The register definitions (name/address mapping) are provided in the assembly include files that come with the various tools. Look for files like "P16F946.INC"

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

79665532

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

Well, in my case, it turned out to be correcting my silly mistakes.

  1. The GitHub workflow YML file was located in .github/workflow/deploy.yml not .github/workflows/deploy.yml. ("workflow"(wrong) instead of "workflows"(right)) I first couldn't understand what did @jonsharpe's words that the run didn't use actions-gh-pages. However, I believe this means the actions were not fired due to the incorrect path (in my specific case). After making that change, the workflow for page deployment now works on the GitHub repository with every new push event (as specified in the YML file).

  2. I also changed deploy.yml like below.

permissions:
  contents: write    # allow git pushes
  pages:   write     # allow Pages deployment

on:
  push:
    branches: [ main ]

jobs:
  build:
    runs-on: ubuntu-22.04

    strategy:
      matrix:
        node-version: [22.x]

    steps:
      - name: Checkout code
        uses: actions/checkout@v3
        with:
          persist-credentials: true

      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v3
        with:
          node-version: ${{ matrix.node-version }}

      - name: Install dependencies & build
        run: |
          npm ci
          npm run build

      - name: Deploy to gh-pages
        uses: peaceiris/actions-gh-pages@v3
        with:
          publish_dir: ./_site
          github_token: ${{ secrets.GITHUB_TOKEN }}
          nojekyll: true

There are some changes:

[11ty] Eleventy Fatal Error (CLI):
[11ty] 1. Error in your Eleventy config file '.eleventy.js'. (via EleventyConfigError)
[11ty] 2. There was a problem importing '.eleventy.js' via import(cjs) (via EleventyImportError)
[11ty] 3. `require("@11ty/eleventy")` is incompatible with Eleventy v3 and this version of Node. You have a few options:
[11ty]    1. (Easiest) Change the `require` to use a dynamic import inside of an asynchronous CommonJS configuration
[11ty]       callback, for example:
[11ty] 
[11ty]       module.exports = async function {
[11ty]         const {EleventyRenderPlugin, EleventyI18nPlugin, EleventyHtmlBasePlugin} = await import("@11ty/eleventy");
[11ty]       }
[11ty] 
[11ty]    2. (Easier) Update the JavaScript syntax in your configuration file from CommonJS to ESM (change `require`
[11ty]       to use `import` and rename the file to have an `.mjs` file extension).
[11ty] 
[11ty]    3. (More work) Change your project to use ESM-first by adding `"type": "module"` to your package.json. Any
[11ty]       `.js` will need to be ported to use ESM syntax (or renamed to `.cjs`.)
[11ty] 
[11ty]    4. Upgrade your Node version (at time of writing, v22.12 or newer) to enable this behavior. If you use a version
[11ty]       of Node older than v22.12, try the --experimental-require-module command line flag in Node. Read more:
[11ty]       https://nodejs.org/api/modules.html#loading-ecmascript-modules-using-require
Push the commit or tag
  /usr/bin/git push origin gh-pages
  remote: Permission to KnightChaser/music.git denied to github-actions[bot].
  fatal: unable to access 'https://github.com/KnightChaser/music.git/': The requested URL returned error: 403
  Error: Action failed with "The process '/usr/bin/git' failed with exit code 128"
  1. I went to the repository's related setting([repository settings] > [Actions] > [General] > [Workflow permissions]) and switched out to the option " Read and write permissions". workflow permission setting screenshot

After that, the pages are built as desired, on the branch gh-pages. GitHub action page shows the page was deployed on the gh-pages branch A screenshot of the gh-pages branch.

Finally, I could set the page's branch configuration to "branch: gh-pages, location: /(root)", like below. GitHub page configuration was set to see gh-pages branch

Now, when I access to the desired URL(<username>.github.io/<repository_name>), I don't get 404 error anymore since the page contents are well prepared to serve. GitHub page is now served without error

In short, everything was because of the typo (paragraph 1) that I couldn't find in the midnight in fatigue.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @jonsharpe's
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KnightChaser

79665531

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

Apparently the schema for devcontainer has changed quite a bit. Here in 2025, put this in the root of your devcontainer.json:

    "portsAttributes": {
        "*": {
            "onAutoForward": "ignore"
        }
    },

And rebuild.

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

79665528

Date: 2025-06-14 02:49:30
Score: 0.5
Natty:
Report link

Solution you can do, with some changes,

in the #banner element

#banner {
    width: auto;
    height: 100vh;
    /* rest same */ 
}

and in #banner img && img element

#banner img,
 img {
    /* width: remove it [from media queries also] */
    /*height: remove it [from media queries also] */
    object-fit: fill; 
    /* rest same */
}

Some considerations, resizing is not a good idea, you be using object-fit: cover. But, if you are upto something else this will resize to the viewers screen, and for mobile you can further modify #banner element by using 'dvh', due to browser header issue in mobiles.

#banner {
    width: auto;
    height: 100dvh;
    /* rest same */ 
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: hope__32

79665517

Date: 2025-06-14 02:05:20
Score: 2.5
Natty:
Report link

I don't believe the dollar-curly brace syntax works in the docker compose yaml file, but the way you have your .env file should suffice. And it looks like the variables you have defined in your environment block are overwriting what you have in the .env unless I am missing something

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

79665513

Date: 2025-06-14 01:43:15
Score: 5.5
Natty: 5
Report link

Seems like this since has changed, i do recall it working less then 6 months ago, but when i try now it just defaults back to a plaintext form it it... any ideas / answers to this ?

Reasons:
  • Blacklisted phrase (1): any ideas
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Niels

79665512

Date: 2025-06-14 01:39:14
Score: 1
Natty:
Report link

You're having this problem because your program can't locate the path to your cert file.

To solve it, you can export the following env var and run your program.

export SSL_CERT_FILE=$(python3 -m certifi)

python3 your_script.py

Or

import certifi
os.environ["SSL_CERT_FILE"] = certifi.where()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rackymuthu

79665508

Date: 2025-06-14 01:17:09
Score: 2
Natty:
Report link

Although the OP has moved to OBS I will leave a solution here for anyone else.

I've put together a python CLI for Streamlabs Desktop:

https://github.com/onyx-and-iris/slobs-cli?tab=readme-ov-file#stream

So in this case it would be as simple as slobs-cli stream start.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Onyx and Iris

79665497

Date: 2025-06-14 00:46:02
Score: 1
Natty:
Report link

I tried again to have MS Copilot generate a solution to the Rotate(-90) issue of this original question and in their response they did not indicate the rotation-code as .Rotate(-90) BUT as .RotateLeft(). I made that single change and the heading text is displayed properly. I hereby provided the answer to this original question.

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

79665496

Date: 2025-06-14 00:45:02
Score: 4.5
Natty:
Report link

Ótimo perfeito muito obrigado gostei muito

Reasons:
  • RegEx Blacklisted phrase (1): obrigado
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel Azambuja Pereira

79665494

Date: 2025-06-14 00:43:01
Score: 1
Natty:
Report link

75%

chats.html

<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><base href="../../" /><style type="text/css" nonce="kpWtN8fi">html{touch-actio n:manipulation} body {background:#fff;col or:#1c1e21; direction: ltr; line-height:1.34; margin:0;padding:0; unicode-bidi: embed}b ody, button, input, label, select, td, textarea{f ont-family: Helvetica, Arial, sans-serif;font-size:12px}h1,h2,h3,h4,h5, h6 {color:#1c1e2 1;font-size:13px;font-weight:600;margin:0 ;padding:0}h1{font-size: 14px}h4,h5, h6{fo nt-size:12px}p{margin:1em 0}b, strong{fo nt-weight:600}a{color:#385898;cursor:poi nter;text-decoration:none} button {margin: 0} a:hover{text-decoration:underline} img{ border:0px}td,td.label{text-align:left}dd{c olor:#000}dt{color:#606770} ul { list-style-t ype:none;margin:0; padding:0} abbr{border

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

79665477

Date: 2025-06-13 23:58:49
Score: 2
Natty:
Report link

Looks like, as of March 2024, the language spec includes Promise.withResolvers, for a similar purpose:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/withResolvers

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

79665473

Date: 2025-06-13 23:50:46
Score: 1
Natty:
Report link

Now could be used SWR in place of useEffect:

from https://nextjs.org/docs/pages/building-your-application/data-fetching/client-side

npm i swr
import useSWR from 'swr'
 
const fetcher = (...args) => fetch(...args).then((res) => res.json())
 
function Profile() {
  const { data, error } = useSWR('/api/profile-data', fetcher)
 
  if (error) return <div>Failed to load</div>
  if (!data) return <div>Loading...</div>
 
  return (
    <div>
      <h1>{data.name}</h1>
      <p>{data.bio}</p>
    </div>
  )
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Stéphane

79665467

Date: 2025-06-13 23:40:44
Score: 1.5
Natty:
Report link

The best solution is to delete the android folder and run flutter create .

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Solomon Adesanya

79665462

Date: 2025-06-13 23:26:41
Score: 1
Natty:
Report link

You can use multiple API Calls and merge the data,since you can get Monthly data without departments and Department data without monthly breakdown. Alternatively you can query raw transactions with filtering for date ranges and tracking category,instead of using the P&L report endpoint.

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

79665461

Date: 2025-06-13 23:25:40
Score: 2.5
Natty:
Report link

update the email at C:\Users\USER\.gitconfig

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

79665455

Date: 2025-06-13 23:10:36
Score: 3
Natty:
Report link

You could try saving the object with Hive first, pop with isValid and then go back and retrieve it from Hive.

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

79665454

Date: 2025-06-13 23:07:36
Score: 3
Natty:
Report link

Ugh. I yanked several versions of this a long time ago. (I'm 82 -- I forget things.) Using higher version number solved it.

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

79665449

Date: 2025-06-13 22:57:32
Score: 1
Natty:
Report link

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASwizzledUIManager.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASwizzledUIManager.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/LayoutReanimation/REASwizzledUIManager.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASwizzledUIManager.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASwizzledUIManager.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASlowAnimations.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASlowAnimations.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/REASlowAnimations.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASlowAnimations.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REASlowAnimations.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REANodesManager.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REANodesManager.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/REANodesManager.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REANodesManager.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REANodesManager.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAModule.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAModule.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/REAModule.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAModule.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAModule.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/af3fcb34312c57c0f52879cdce924b91-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAKeyboardEventObserver.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAKeyboardEventObserver.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/apple/reanimated/apple/keyboardObserver/REAKeyboardEventObserver.mm -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAKeyboardEventObserver.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/REAKeyboardEventObserver.o

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

79665447

Date: 2025-06-13 22:56:32
Score: 1.5
Natty:
Report link

import numpy as np

import matplotlib.pyplot as plt

from mpl_toolkits.mplot3d import Axes3D

# Intervalo de t

t = np.linspace(0, 10 * np.pi, 1000)

# Funções vetoriais

x = 12 * np.sin(t)

y = 4 * np.cos(t)

z = t

# Criando o gráfico

fig = plt.figure()

ax = fig.add_subplot(111, projection='3d')

ax.plot(x, y, z)

# Configurações do gráfico

ax.set_xlabel('X')

ax.set_ylabel('Y')

ax.set_zlabel('Z')

ax.set_title('Curva da função vetorial v(t)')

# Mostra o gráfico

plt.show()

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: João souza

79665446

Date: 2025-06-13 22:56:32
Score: 2.5
Natty:
Report link

My interpretation of https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html and https://repost.aws/questions/QUy_J6aNWOQGyfK25hGrEb8w/do-i-need-mx-record-for-only-sending-emails is that SES requires your to domain to have a valid MX record so that bounce-backs have somewhere to go, but it does not require that the MX record point to SES if you do not plan to use SES to receive email.

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

79665422

Date: 2025-06-13 22:17:23
Score: 3
Natty:
Report link

For those looking for an easy solution there's an Add-on that does this:

https://workspace.google.com/marketplace/app/random_data_monster/626703404158?flow_type=2

=randomdate("range",date(1995,1,1),"12/31/2002",$A$1)

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

79665414

Date: 2025-06-13 21:56:19
Score: 1
Natty:
Report link

jects-normal/x86_64/ReanimatedModuleProxySpec.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedModuleProxy.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedModuleProxy.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedModuleProxy.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedModuleProxy.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedJSIUtils.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedJSIUtils.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedJSIUtils.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedJSIUtils.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedHermesRuntime.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedHermesRuntime.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedHermesRuntime.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedHermesRuntime.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedCommitHook.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedCommitHook.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedCommitHook.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/ReanimatedCommitHook.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeWorkletDecorator.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeWorkletDecorator.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/RNRuntimeWorkletDecorator.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeWorkletDecorator.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeWorkletDecorator.o

error \=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Index.noindex/DataStore -Wno-comma -Wno-shorten-64-to-32 -Wno-comma -Wno-shorten-64-to-32 @/Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/82b82416624d2658e5098eb0a28c15c5-common-args.resp -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -DFOLLY_CFG_NO_COROUTINES\=1 -DFOLLY_HAVE_CLOCK_GETTIME\=1 -Wno-comma -Wno-shorten-64-to-32 -include /Users/admin/Projects/GhostShadow/ios/Pods/Target\ Support\ Files/RNReanimated/RNReanimated-prefix.pch -MMD -MT dependencies -MF /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeDecorator.d --serialize-diagnostics /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeDecorator.dia -c /Users/admin/Projects/GhostShadow/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp -o /Users/admin/Library/Developer/Xcode/DerivedData/GhostShadow-bdkrfxlpqtoeokfjijeidcxthbvc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeDecorator.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/RNReanimated.build/Objects-normal/x86_64/RNRuntimeDecorator.o

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

79665413

Date: 2025-06-13 21:53:18
Score: 3.5
Natty:
Report link

I would prefer Swing for beginners, as it is easy to use and extremely easy to style and use for modern menu's like what you are suggesting.(I am not a bot btw :))

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

79665407

Date: 2025-06-13 21:41:15
Score: 0.5
Natty:
Report link

You can't

You need to restart the webserver

Reasons:
  • Low length (2):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Danila Ganchar

79665398

Date: 2025-06-13 21:26:10
Score: 9.5 🚩
Natty: 4.5
Report link

Did you ever get this working? I am having simular issues.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever get this
  • RegEx Blacklisted phrase (2): working?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Caleb Cukierman

79665397

Date: 2025-06-13 21:25:10
Score: 3
Natty:
Report link

i think error comes from filter(match_api_id == 492476) %>% # instead of = , replace with == ;

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

79665389

Date: 2025-06-13 21:11:06
Score: 2.5
Natty:
Report link

Correct, you do not need to use an annotation for the class to get mapped....however, there could be performance implications since the class scanner won't pick up the class as a domain entity beforehand. Details are available in the documentation: https://docs.spring.io/spring-data/neo4j/docs/current-SNAPSHOT/reference/html/#mapping.annotations.

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

79665385

Date: 2025-06-13 21:07:05
Score: 1.5
Natty:
Report link

For issues with Poetry on Python 3.10 and higher, first try updating Poetry to the latest version:

poetry self update
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sashavav

79665370

Date: 2025-06-13 20:52:00
Score: 1
Natty:
Report link

If the above methods mentioned does not help(like in my case). In the TagHelper class you may need to decorate it with HtmlTargetElement like this:

[HtmlTargetElement("div", Attributes="one-of-the-attributes-here")]  
public class MyTagHelper : TagHelper
{
...
}

This is how I was able to resolve the issue.

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

79665363

Date: 2025-06-13 20:43:58
Score: 3.5
Natty:
Report link

What if i'm using React from 'npx create-react-app'?..I can't install tailwind because i don't use vite, the documentation only has information for install tailwindcss for vite, postcss and tailwindcss cli but the last one didn't works

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if i
  • Low reputation (1):
Posted by: sovm

79665353

Date: 2025-06-13 20:33:55
Score: 2
Natty:
Report link
[F2]=FILTER(B2:C4,(A2:A4=E2)*(C2:C4=MIN(FILTER(C2:C4,A2:A4=E2))))

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: rotabor

79665352

Date: 2025-06-13 20:28:54
Score: 0.5
Natty:
Report link

The answers for your question can be broken down as following:

1. A Skill from the developer account(s) is always accessible on devices which uses this account(s).

2. Per default any other user may only find a skill when the status is "Live" which means it was submitted, passed certification from amazon and was distributed to Alexa Skill Store. Besides the status there further constrains which might apply:
a) Under Distribution - Availability either "All countries or regions" must be selected or at least the once, which the account is assigned to. Otherwise it also can't find the skill.
b) Under Build - Tools - Languages you need to support the language which is set on the device.
The reference is: https://developer.amazon.com/en-US/docs/alexa/custom-skills/develop-skills-in-multiple-languages.html#:~:text=Customers%20who%20interact%20with%20Alexa,then%20optionally%20add%20English%20later.&text=Should%20your%20skill%20be%20available%20everywhere?

3. To make a skill available to non-developer account(s) but not for general public there is also the Beta-Test Feature: https://developer.amazon.com/en-US/docs/alexa/custom-skills/skills-beta-testing-for-alexa-skills.html - if an account is added there it will find the skill regardless of status.

4. Lastly, a skill invocation name is not unique and could be used by multiple skills. Alexa will prefer skill which have been activated (e.g. via the Alexa App) by the account. If not applicable it will choose the skill on popularity.

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

79665346

Date: 2025-06-13 20:22:53
Score: 0.5
Natty:
Report link

Can you please try below way once:

 val now = "2025-06-13T15:00:00.000+01:00"
 val mockedDateTime = ZonedDateTime.parse(now)
 val clock = Clock.fixed(mockedDateTime.toInstant(), mockedDateTime.zone)
 Mockito.mockStatic(Clock::class.java).use {
     it.`when`<Any> { Clock.systemDefaultZone() }.thenReturn(clock)
     // call api
 }

Import Clock from import java.time.Clock;

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (0.5):
Posted by: PPFromInfy

79665336

Date: 2025-06-13 20:16:51
Score: 0.5
Natty:
Report link
BigInt(0xffffffff) << BigInt(32)

will return the proper 18446744069414584320n

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Left_shift#description

For BigInts, there's no truncation. Conceptually, understand positive BigInts as having an infinite number of leading 0 bits, and negative BigInts having an infinite number of leading 1 bits.

Current definition of << operator for BigInt: https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-numeric-types-bigint-leftShift

Diff between BigInt and number: https://tc39.es/proposal-bigint/#sec-bitwise-shift-operators

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

79665335

Date: 2025-06-13 20:14:50
Score: 4
Natty:
Report link

There is a PR addressing these issues on GitHub, but it hasn't been approved yet.
https://github.com/alann-maulana/flutter_beacon/pull/150

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

79665321

Date: 2025-06-13 20:02:46
Score: 0.5
Natty:
Report link

Passing a pointer to a function (even a const pointer), opens up the opportunity to change the data in the memory the pointer points to.

Therefore an auto conversion to const char* opens up the possibility of directly modifying the string buffer of the std::string object instance, without updating the metadata variable of the object instance. Bad. std::string has an API, including some nice convenient operators that tie into it to perform functions on the data it contains.

It is basically a std::vector for char data, with extras for common string work. A pointer is a blind address container, just an unsigned integer. You can get string::data() as a char pointer, even so. With that you can read or change the characters (but not the size of the buffer!).

(Note: c++98 string::data() returns a non-null_terminated char array pointer, C++11 and newer do return a null-terminated array.)

So what then if you mess up and assign the char pointer to some other char array inside the function? Not much, but it does not affect the std::string object outside the function, or its internal char buffer.

So they made that conversion to a "lower form" of string explicit, because it is too easy to make a mistake that might not be caught at compile time, and probably would be hard to debug at runtime.

Additionally, a pointer to an empty string instance buffer, is not a NULL pointer, and there is no way to know if the data in the string buffer is initialized to good values beforehand. const char* is a legacy form of string, but is just too convenient not to use and so on.

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

79665311

Date: 2025-06-13 19:52:44
Score: 1.5
Natty:
Report link

([[This file was protected with MoonSec V3]]):gsub('.+', (function(a) _zFYIzCSXTMyC = a; end)); return(function(y,...)local a;local h;local n;local r;local _;local m;local e=24915;local t=0;local f={};while t<420 do t=t+1;while t<0x3ce and e%0x224c<0x1126 do t=t+1 e=(e*491)%27860 local d=t+e if(e%0x3454)<0x1a2a then e=(e+0x1b0)%0xace6 while t<0x118 and e%0x4344<0x21a2 do t=t+1 e=(e*509)%26894 local n=t+e if(e%0x2712)>0x1389 then e=(e-0x2d7)%0x1180 local e=52293 if not f[e]then f[e]=0x1 _=string;end elseif e%2~=0 then e=(e*0x2c9)%0x8d27 local e=67479 if not f[e]then f[e]=0x1 r=(not r)and _ENV or r;end else e=(e*0x66)%0x32c5 t=t+1 local e=11050 if not f[e]then f[e]=0x1 r=getfenv and getfenv();end end end elseif e%2~=0 then e=(e+0x38f)%0x4ab4 while t<0xe3 and e%0xb2a<0x595 do t=t+1 e=(e+535)%8880 local r=t+e if(e%0x4534)<=0x229a then e=(e+0x354)%0x40f0 local e=73701 if not f[e]then f[e]=0x1 a=tonumber;end elseif e%2~=0 then e=(e+0x16b)%0xb31d local e=34667 if not f[e]then f[e]=0x1 end else e=(e-0x310)%0x4162 t=t+1 local e=17686 if not f[e]then f[e]=0x1 end end end else e=(e-0x20d)%0xa5ad t=t+1 while t<0x192 and e%0x1f58<0xfac do t=t+1 e=(e*306)%13321 local d=t+e if(e%0x29a6)<=0x14d3 then e=(e*0x3a5)%0x2386 local e=82783 if not f[e]then f[e]=0x1 h={};end elseif e%2~=0 then e=(e*0xe5)%0x2aa1 local e=2040 if not f[e]then f[e]=0x1 n=function(f)local e=0x01 local function t(t)e=e+t return f:sub(e-t,e-0x01)end while true do local f=t(0x01)if(f=="\5")then break end local e=_.byte(t(0x01))local e=t(e)if f=="\2"then e=h.Vm_hhhCP(e)elseif f=="\3"then e=e~="\0"elseif f=="\6"then r[e]=function(t,e)return y(8,nil,y,e,t)end elseif f=="\4"then e=r[e]elseif f=="\0"then e=r[e][t(_.byte(t(0x01)))];end local t=t(0x08)h[t]=e end end end else e=(e+0xda)%0x4842 t=t+1 local e=55070 if not f[e]then f[e]=0x1 m="\4\8\116\111\110\117\109\98\101\114\86\109\95\104\104\104\67\80\0\6\115\116\114\105\110\103\4\99\104\97\114\120\71\120\99\89\80\83\115\0\6\115\116\114\105\110\103\3\115\117\98\72\87\103\83\76\80\110\106\0\6\115\116\114\105\110\103\4\98\121\116\101\112\75\72\118\100\112\70\67\0\5\116\97\98\108\101\6\99\111\110\99\97\116\81\69\111\84\83\118\100\105\0\5\116\97\98\108\101\6\105\110\115\101\114\116\68\73\79\69\117\69\90\116\5";end end end end end e=(e-723)%42161 end n(m);local e={};for t=0x0,0xff do local f=h.xGxcYPSs(t);e[t]=f;e[f]=t;end local function d(t)return e[t];end local d=(function(m,_)local y,f=0x01,0x10 local t={{},{},{}}local r=-0x01 local e=0x01 local n=m while true do t[0x03][h.HWgSLPnj(_,e,(function()e=y+e return e-0x01 end)())]=(function()r=r+0x01 return r end)()if r==(0x0f)then r=""f=0x000 break end end local r=#_ while e<r+0x01 do t[0x02][f]=h.HWgSLPnj(_,e,(function()e=y+e return e-0x01 end)())f=f+0x01 if f%0x02==0x00 then f=0x00 h.DIOEuEZt(t[0x01],(d((((t[0x03][t[0x02][0x00]]or 0x00)*0x10)+(t[0x03][t[0x02][0x01]]or 0x00)+n)%0x100)));n=m+n;end end return h.QEoTSvdi(t[0x01])end);n(d(64,"(>V%apvxScP_2Ok#2VSpxV%>#v_axxaV>p2S_pvP>P#>_vCV2>_.ScvpdS#cPSp#R2#caVR>#>#xSaxx>P2c_cxp>>SVa%%%#p_cS>vSuS#xP>xv>%O>aV3V#x_Vcaa%%cO%POv>V#kxaVqp#V_vxV%v#S2S_Sa>Vp2PS#xSVvSVa%%a#>_S_Sa2>vk%PkpS%v#vaVC%#V_LxcvOTO2>SxvkV_2xPPoV2%_Sx%%c>%OaPvvkV>2VS2xS2VSpx%%%#c_SxVppTVO%S>pcj#k#Pc)V2%_Vx%%SVV2xP>vp%c2__vp%2VS%xV%%#pOp_Vvk>%2SP2vv>xSVap%V#%_vxa%SV>#pPPa#VSOcS>xS2VS%xx%>#V#>_%avFxkPS%pVVSSVa%%%#p_v_PvkVxO#c>vcV>k2aV9%#>_Sx aS%v2PSpxS%P2VScCV2p_>xS%}#p_>S>v%Vpk%S>aPC2kkaVe%#V_;x>xa>SkpS#vO>Pk>P>eV2p_ax%%>#x_%ScacVxkx_xaOlSODaV.a#>_axR%v!%Op_xpaVpOpPcxc2VS%xx%U#%kS_av%%vkVPSa2%vSVa%%%#v_>PVvO*_2%SapxVV2paVIa#x_axF%>Vvka_%vOVxkxc%ac2VS%xV%a#v#>SSp%VO2PP_p.H>SVaa%S#p_ZxVp%>v2OP>a>>P#LP>!V2%_pxS%V3VkOc>xv%V#>SOp%2VS%xV%c#>#SPPa#>P#%PSaO%SSVaa%V#>_%xSvpg_kc_pv>upO)_ahV2%_%xc%pV>kkcCpp%ak#POa22VS%xc%S#>#SSapxVpk%c>xa=#SVap%V#V_cxv%pV_OvSVa#>VkvScxS2VS%xv%p#D#aS>xp>bO%ccv>VcSVa%%%#V_pc#a2 SkOScvcVv#xaV1%#p_xx>av%PkSPxaxVk2pPa6V2p_axp%H#l_vcPv>mP#xcNxS>Pk%aVK%#%_VxcxP%P#xPOaVVOkpSpUV2%_axx%c>VkaPSxa>x2_cpvv2VSax>%v#%_ac>x,>pOaPOaV%v#SaVe%#v_axVpVypOa_aa_>pO>_a)V2%_%xV%>%%2%S%p%Vck2cVac2VS%x>%a#jkaSxa2K_#aSavpz#SVa%%>#>_v_vavea22P#ap%aOPaVZp#a_cx,%p#>kSScv>%ckxPVp>AOSVaa%>#V_pxaaVV%OKSvpaBOkSP2eV2%_vxV%x%SkpScxV6%22cxva2VS%xc%>#%k_S>xPza2PPaa>%SSVap%%#v_axp%SV#2cS%a%,%2_Sva%2VS>xVxPzp22_aa>X#k2S_=V2>_%_>xaV2k_cVvV%p#>aV->#a2VP#xVVVkcSpaPhcSVa>%pfakaSvva>vka_VxS2p"));n(d(162,"w2%.{3xcsnht:/B=3B:%s/B:{sn/k>3c3%2Tc=/3.xn.:t3ns/B3x:tt2t2scc{Xn2B/3xt{BB{nh:..x{B/.tcBnc=n:%%%cc/h.Bc3Bh3ssx#/3s:22t2sc:{chxF%3cth229//.%3nxB.{xs{*%{.h3mt3nts2t%:sB33hc2sxhx3%hs6/=3Vhxb23Bns%s3%/.%/s3ssBBt.K.co:c2/sh/3{xn2=43sh=Z/c%/%.xs2:t{/n=n:=/hh2cc.B%.tn:tt{Yste=cx/..{xct=/h.s1n32tc%*s.:=.hn/:n{/h==.=:3nB=x:/={.s/B=. n3Bn(sxh.{s/B={Bhh==x%tn2%c./2{{xt/x.ftnh)0./l2tchB%.n.sa33:t:4txt/2%3xsBx{ns{Bcc5hsts2sB3.:n:Bt{tt2V.{s/n.{c3t/%:nBns=c:A%Ac3/s.:xsBt%.n===3=n=%x2:c:{xn=)2xHt:22c{:tG{x/:2%/h.vt{chsts23/B.Bn.=x3hhs22xB:n%2n.:{%3.snsx.t.2sx=:t.hnqB{3{t.=3{ctcCc2{cx./s=k53%{/):c_/2%=ny:{32h%Bx.Bth=n3cc2"));llUfzboIvmxWdbK=function(e)e((-h.BUHujZqv+(function()local f,t=h.IeHyh_Ly,h.wDwZIyuQ;(function(r,f,t,e)r(e(f,e,t,t),e(e,t,f and e,e),f(r and e,e,r,r),f(t,r and t,f and f,t))end)(function(e,n,_,r)if f>h.AhHwavSQ then return _ end f=f+h.wDwZIyuQ t=(t*h.TCySmaog)%h.HxAeJOxf if(t%h.xLVcnXvv)<=h.mMAGnkGj then t=(t*h.STfnaBLx)%h.UBSAYOoi return n else return r(r(r,e and r,e,e),e(n,_,n,r),n(r,e,e,e and e),r(_,r,n,n))end return e(e(e,e,n,_),n(_ and e,n,e,_),r(_,_,_,r),r(_,r,n,e))end,function(r,n,_,e)if f>h.bGaeyKvS then return e end f=f+h.wDwZIyuQ t=(t+h.UrnSHlfW)%h.aujOhYAx if(t%h.qsFGjCRh)>=h.zng_Qial then t=(t*h.HvJExzBI)%h.AcecAJLn return r else return e(r(n,e and e,_,n and r),r(e,e,n,r),_(r,r,e,_)and e(_,r,e,e and _),e(e,e,n,e and e))end return e(n(e and n,_,_,e),_(e,r,r and _,n),r(n,_,e,e),n(n,n,r,e))end,function(_,n,r,e)if f>h.mMAGnkGj then return r end f=f+h.wDwZIyuQ t=(t+h.tXeOmZaa)%h.IIggwMHP if(t%h.CUwTeUiy)>h.htcvbhLv then t=(t+h.bmKCDWbE)%h.fdsmggSI return _ else return e(_(e,r,e and e,e),_(n,_,r,r),n(n,r,e,_),e(e,_,r,e))end return n(r(e,n,n,n),r(_,n,e,r),n(n,_,r,_),e(n,r,_,r))end,function(n,_,e,r)if f>h.qHSmJkPA then return e end f=f+h.wDwZIyuQ t=(t*h.xLVcnXvv)%h.SVMaAZpa if(t%h.BmQvrqMS)<h.xjOZshMx then return r(_(e,e,n,r),_(_,e,r,e),e(r and _,n,r,r and _)and r(n,e,e,r),e(n,n,n,e and e))else return _ end return e end)return t;end)()))end;KbdWxmvIobzfUll={h.beezCPLw,h.BgA_acEn};local e=(-h.eKiuaEPt+(function()local r,t=h.IeHyh_Ly,h.wDwZIyuQ;(function(f,e,t)t(f(t and f,t and e,e)and e(e,e,t),e(e,e and f,t)and f(e,t,f),f(t,e,f))end)(function(n,f,e)if r>h.anPUtomL then return f end r=r+h.wDwZIyuQ t=(t+h.xDWecQtO)%h.kVBORfIx if(t%h.tAuPSYai)>h._LHmIifw then t=(t+h.FzhgGnEd)%h.ZaJwPxZc return f else return n(f(e,e,n),e(e,f,e)and n(n,f and n,e),f(e,n and e,e and e))end return e(n(f,e,f),e(n,f and n,e),e(f,f and e,f))end,function(n,f,e)if r>h.zzwmBmeE then return e end r=r+h.wDwZIyuQ t=(t*h.RdhtWKUf)%h.QpUTmBvx if(t%h.RETtKUQt)<=h.sCCSilRI then return e(e(e and f,n,n),f(e,n,e),f(f,n,e))else return e end return f end,function(f,e,n)if r>h.dGLKtDeO then return n end r=r+h.wDwZIyuQ t=(t+h.vFDLoEtZ)%h.hIaygbQM if(t%h.BcPFTMhl)<=h.xeIrCLWd then t=(t-h.kAzDJdAx)%h.oICCCKFC return n else return n(e(e,e and f,n),n(n and e,f,e),f(f,f,e and f))end return e(f(f,n,e),f(f,n,e),n(e,e,f))end)return t;end)())local l=h._FyvYCTh or h.aFfkHMxR;local _e=(getfenv)or(function()return _ENV end);local r=h.zELtAOlK;local n=h.qtlkRbuq;local ne=h.wDwZIyuQ;local m=h.BorbiEJI;local function re(o,...)local s=d(e,"xrEw^fqmJy#t_0*XJ_yqqrE_Xy_0J0fJEw*_*y0y#qmq^P0y_my^fywr#ymJw0aJ0wy_#ffX^Xr*#*qEwtXq_rJ_ff^t^wrr_*y#mEr*XX0tyr^mEt2ft0JXgyXwy0qJwwX_XJ_Xy#qrX_ry0m#*m0wJrr00#mrXEtum_f^tq^w{T1mmyfqEEJXwt0JtfJr^0*mwEtX_tXJ#ffr**_mXnE__*0JrEwm#^*&*0y#^q0qJfrEt0ftEJ#fyrm0_#yE#XJt*Jyf^r0wmMt0yyXrJ*J#_mm^E+t2X*t_mJffyE#y0qfw+Xt_qyry_m_wEtXyEfwr**ytEtqy0f0^(Xm_XqXqJEm#fq0wJIw_*yyq^fwt#_myJftEqXrt#_^mXf_*X*_0#y*rq*f##mf^%ny1wX#t^Jt^*_X#JqwE*Xy_E__Jmq^Ewrr0^yXqJ^P0t0y#wq*w^X*mqq0R#0f#aqyqw^yr_*##*mJXXr**^q=m*wt5X0efmqXwE=t0qJXqbEy#X_*y^r(XX*X_^mXfqE^*rmqwwwTu**m#Xmy^wrw0:m4Er*Jtcmt^qrr0_#mttm0T#*wy*qyw^X0XE*_tmm*fqXt*mt+mJwXM^tm#^q^wTtrmX^frY0t#^#qJ^ftr*yXq*wwX*_yyEtqJw^trq*rfJw^*_tmJE^tfEE0zm_XymqElw*0_ymqffEr*qtyJm^yEE*0qrEyX^tXJ#ffElr_XqJwf#rm*E#0mqqXqww^X{_J^rqrEy#Et0myfmrqy^q_EJXwt*Jmyr^_Eyt_tw#rq^EXXJ0hqwr^ *0Jmrwy.^_Xy#qfr3q#?qy^f_EmXEt0JJtwJ_EytqJ^^#rf*?#ytEq_f_Et#^mJwJuw_*ymJ*mm^XEE0JtfqB^rr00wffr0*Jtwm*^yr^0X*#mm^J,t0q#rq#qrfJEq*^yrJ#^y_mXf_6JtfqEr*_wmft*#tEm0^Jrw0*qy0qmXV00f#nqtwq&r__0t#EEXlE_wJ*fyEEE#Y#*,#wqmErX00t#Er^*r#Jmww*emraXJt0wJtJ*yrt^_m0#XJL^_ftt0JmfEr0*Jtw_q*Xm0^*rr0_#mmSm^ftrtX*tfJ0fy__y0qHEtXqtX_y#wq_^Jk*0_qmrt(w#Xm#^fC*rJXE_0ytR*FfXwtqJr^#EEyt#rqm *8^y#Jwm#wJ4wJyJ#q^w_aJ_yy#q^*##myJwt5q0ry##EJr^0EEy##tmy^m/tyrtwqJ^ft00J#fq0w0Xy_Ey*f#E^#t_0J#qarX#Ey#JmfEr___#ymEX#Xt#wfqwJ*#tfJL^y^^E05m#*ytqwEX*X_my^q^Xy*y#0Jf^yrE0_yqmm^=rE0e#qErJw^0rJ*w#*myf^tf^wrr0m#Eq0wqqrrq*ytXwEX#_fy7ftEq0rEq_mf^EE*Jtwm*^m^XEt9y0Z^ErJ0q#rq_wfwtryXEtwJX^f*0*ttfJC^qr+JJqtr_*mtEmtm_qyw^X*#*Jtf^rt0#_qJXfrEr*ft_f_^Jl*0y#fmyrmrf*{#yr0*_trm_^mrb,mX*_qy^qE0q#Xq#wfCH_y_J##mmwfEr*rtffw^^hE*fy_fqwJIwm0^*rr0_#mmzJmf*EJXytfJyf#__#wq2EtXqtX_q#wq#^qBE0EJyqf^wF##wytqX00#_mrw_cm02_0t_mt^_rfyqq_E#Xf_oJyyw^*Et*#0JytqqEXdm#mJDwX0_#tmuwt?q^^r40yytqtEXyqf*EyX^tXJ#ffw^EttJJJ^_rm*E#t#AJ0qyEyArttw_Ew02ytqqEXwmrq0#tEm#^0_f0q##mJXrrr0#ytqtEXtw_t#Er^wE*0_mJyftE##rJq^}X005yrf_EmXgXm0*#_myrXu0_#yqq**EtSmq^r(_0f_X_wJ0f*03#Jq^EXX#wrX_toJ_qtr*XqytywffEt0f#0mqE##_Jr^},t0qyXytyEf0E^0E#XJmfqr^0y#qEmXJttJqfrr#rqX*_fywfXwm/wmq^m2#0f#<qymwfrEq*m#tJs^^_fyqfyE^*XtJ_Iy_m#^r0#0E#qr^*_#Jmww*<mT*Xf_qJ*^#rm0-#yJrfr*t*w#tq*XrtyJ^^Xr#*ftG*^ qrwJr#mmEw04q9EX^_mwtf#E?y_J*mmfr_Jtq#0mE^ErE#ywXE0*t00_q#ormEt3rmJJfqm0yXJ_JJ#^*r**EqqJf^^V_yE#-mm^I;t_##Eqw*#_^twytfXEX#__>ySe0X_*_rm_fwEr0*qfmr^yG#yrtrm#wmt0ymmffXwfXf_0J0f#*}XX_f^r^XrX*mtOJw{wEm*JtyJrX#QJ0X#^m^^^_#yq#Q^twmZm_w^yE*0X0wtt^Vqs0q_wt*Jqfmr^*)tmE*^ErJJXJ*q0wf/yJq#qr_w^Xt_^yZqm0*Xrtfyf^X0fX^t#wqfJK0* tqw_^qXq00#qqy*X0*_q#yq**rtwmf^h;t0^X__Eyrf0Eq*JtJm_X_^JXf#EfX9tttqyrr*kftEm0^Jrrr#XymtmwfEEd*_mEmXqr0w#tqyq#^^rX*0qoq_^^5fJ_q0qm^EZ#0E#rry0Xt^mww*:y0E_Xt*m0^*rm_+tmmX^0rt#mf#wc**tyJ^^0qy^68t0EJ_q#EJXX_*JyqEE*#.q*w^XX_#ywJ_J:fErfJXfmEE*0tJJw_*fXE^tr_m^frK0t#^yyJmfEr**JqXq0^#rr*0#ymyX_*y*mtrm_^El_Jyyfq0E*tftqyrq**r0X_tJm^*E^*J_:^mrE_X_#trJwXtr^*cf_qyw*X*0fy_q_wVt^#fyyqm*Y0y_f^rfXEq#Et#myfrEmyy##m^wtry*f#0qt^^tmJ^^trq*r##0r#EqE0t#wq*wy3^_Xy#ffqXX0_tyrf_Emqqr**#tXJw*ttqmX^#rf0*0^mJ^f&_0m#E_Xtrmmwwytq#EXX#_fJ*tEmX^rrr*Ef^E**Jtwm*^mw0EmX^_mJ*q^E_X0_rJEE_Ew*ttyJmrw_mEyXwt*Jyf^rXF#ft*yt0m0^Jrw0_*w_#ytqwrX*_#fm*fqEqyyqfE0XJ_wLr_*JqXr_wJff3rt*^*__#EqfEy0rttymk_q*wJ{w_*yyq^mX#BE*X*_EJ0fJErrJlX0m#fmwXXtwmt^qrr0_#mmEmt^J0f#fqyw^XX_Jt*tqJ^^ra0*ffyEy*0tJJwt^JJfqr^0t#JmJ00twmrw_7m0Z_mt*J_fwrf*0yJmE^3rW*mt}EwXytmJE^0rqErXq_yyXw_wbX*y#J#fqE^*mqyw#X0_Jywf_JE^!rm*q#rm#^qtyJr^_rm*E#0mJ^t^*0ttJqXw#Sf_*0EtXm0fRrm**trEXw5<#*E#*qX^>?#Jmr^yf^_#_mm^fK00J#wq*wy_^^r0#qmw0Xt_qyrf#mm^qrr0zf#mywXrd_yyyr_w_#0mt^rN_0m#NttJ+fmr#ytmSEXX#_fJ*Jwmtwt)t00#tf^w*sw0w#^rm0X##mf^}Ktfq*_E_wykX_0yJqwE_wfX^_E##mX^t**_*trmE^wo0mXf_rw0*#ymEmJqqE##mtyJEfqrJXK##JJ^^_#qE*N_J_wffh^fwrt*qtrm_^mmE^#*Jmf^t:y0^yXqJf*fqE^*r#0JfErrJ*i#*m_:JttJX^Xr#*f#*tqyEm+wm*rt_JfftrX*yqtwXXX_#yff*qm^0T_0^tEq*X^*t0yy_r_*^#Xm#^frhmtr^trw*rr0Ey0qJwrwJrf0_tJm^^^0f#RqtE^*_tmJE^0rJ*w0#ty^m6X0##fmLwtJqw#0_q#wEX0_Jywf*Eyq0XXJ_f#E7*ttqmXJw^0r_*Jmt^wi*0y#^qXw#fwrUy0mcwrX__my>Jmmt^yrJ0fJ^qy^DL#JEf0rq*r#_mfm*q^Ew*t_yJfet5EX3twwm_X^0wqwl_JJ*_!JJfwr**yt^mXtwff*EtEmq^rL_0f*X_py^qEE#XwqqwmX#_fy<fy^Xwyrr0fy*mq^EtfJ*^yr^0X#J#FJ_qfEI*0_rJE^#EEXwJtmy^^r&0#f0EfX%ttJqfrr_*mtEmX^0rw0*#ymEqJqOEpB)q0wX4r__ymqbqyEJX0*ytEm#^rUqJJf{rt*qtrm_^m:Ey_##m0w*uy0^y0#fJ^fsrf*JtqmJfrr_JXqEEw**tyJEJwqEwfsf#JyXfyw{Xwm^^#lJ0wy*qmq^f^ErXrttff^fiy*r#fq*wJt##^^*ry*^#00q^_fJw^XEmJq#^XwE#^tJJSFfEfyt#mJw^r_m*yy*m_wquq0E#Eqq*#*y_Jy^qy0_#ymOwtQq_XXrtwygXX01ywf*EyXE*y*7##mfwm9O0_^Xrm*E#0mJ^w^*^J*^mr^JOf0Oytq^mmf0X^0EJ0Jyr0XJ_JJXfw^#0XJEfqrq*r#_mfm_qJETX*_#ywE*Ef*ftrwE;^_qyrf_EfE03y*m#*fJwyrf_t^_rf*i#tmq^wrf0m#Eq0wqwwEwXwtXmm^X:X0_f0wrXrt_JmfUfJw^rE0ymEmZw#Ff_tyfc00*#rq_wmQcR^*;#*my^yry00f_wyXTttJq^X^^wMH_0wytqXwyXfy*yffXw;*__+yrwtr_XJ#*EXX__wJ*fyJmfmrtXmfEf!*qtrm_^f^_wwX_tXy^f*Ea#q#qJX^_rqy0y*mJfwEry^Jtmyw_Km0v#JwGEEX00#^0^^wEXf_cJyqr0#*T_tq;w*XqtXy_qqEE_JtXJ0fnEmr__mfPEf*^#Xm#^w^tEmIf__m#q8r#X^tXmX^y__y^fXE#Xf_HJt#Xqr**_wJE^0rJ*r*t_q#wrqr^cKt_Jwfyr0Xfq#0qq0}fy0wf__t^X*J_q_E2*ttqmXmffXE_XX_qy_q^wfXyt#mff*rJX<_.JJ^^E 0*tEmEfw_cywf^rX*#twt#yfqXE0XJ__m)qyEJ#qq*wyj^_Xy#qfmytt_J#wf_EmXEttt_#ym#^wA)#J#qmkwtjr_tfywqE#XEtmJ#?f0^yyq^EXXJL:*Htqmyw0tXJmfEr0*Jtwm*J00^*rtfmf^Y8t0^_X_EyEfrrf*_J_J^^_bXyrq^EfX!ttJ^J_qJ^qo0t:y7f_E#X_mq^#W#0f#NqyqmwtME__J*JE^Ery0y#fE^X;t_yrf6rt*q#X#XJXmEwwe^_*m^qErX*t_wwmr*_tyqqrE#w^**_yymE#Er7X0Ey0qqw*tmt0JwE#Ek#*yXyqf^rX#f#qJ=fJE^*ftqJ1XJ__J_fmEE*tXw_X#0m^}*7f_0ytqyXf#Jm#w_Wm0EytyXJyfJry*X#XJ&^#_EJ0fqEr*_tf_rfArJ*w#*my^^_Xw_qfmwwt;q0ry_qmtE^*RJyfw#EyX^tXJJmXmq^frrJJq<r*X#_5y^f#Ef*_ttJqfr>_X#XrtqJqfqtJ_t#yJP^Xv**E#7q#Xr_yJmJEqXE0NY_my*qr0X0_^J_fR_,JtJ*y3 EX0*##Jmt^Ery0_f#ftwfp00yy#qtwft*m0#rqEww#ytmJFfJ0fXftyJEfv>X*EqEf.^0rq*E#Jmr*XXO#tJJrtrwXE_mJ_q^00*y_rJEjygv**#0mq^_t_q#0q0f!8m0XfJff^wLm0EyJqJE_tDtrq_^y0_0w_rJ^^Xr_*_tb^EXXXJ*^t^Et^fjX0Jt-EE^rRK_^#EEf*^X+_qyJfX0t*m_qy(fq0E_#tmmm^wrfy^JJmJ^J9f00##qqw*tmJEJ*qqEm#*#qywfwrXXrm.J(^mEw*J_9wEw*4t0q#wm_^mtX0*#^EGw5D__qy*m2*EPwt0yfqrEEXwt0^JCo0#y^fXE#Xw*#0*#Eqy^fXE_*#_mwry5w#qy#fywqXXmwq*wyj^_Xy#qf0CRmyqf*EyX^tXJ#yfJ*EttJyr^_rm*E#t#XyqfqEwXPt*ypfJrt*mtXq_^JEq*0fXwwXwt*JyfEfw^Us*_m^mEw_Qm_0ymNX*r#wq*wy5Eot_#JXJqf^rt00tfE#XEt0JJfwr**yy^t*^_r0*:#tmqwXfywnXJ_rmrwrXmytq_EXX#_fJ*Jfq*^#rm00#JmE*#0rm*^yr^00*r_*J_fXEqX0_<w*wXryXrt0m*^Xryyqy;mEXmXJ0wt=Ewr#=J_tyqfXwm#_m^wX3#0f#}#typ_r_X_#yfqlEtXq_rw_qwXrw^Jff-rt*^h+0m#Eqywm_yJyf^f^E^Xyt^Jtfyrq#t#tJE^t0J0f#Xmwj^rm0-yJqywtbq_0#TEmX^_rJ0fmE^*Xt_JrfArm*r#Xmy^#r^0##_mmwyhw*E_tmmq*^=**06ywm<w#X__YmJwfEqXyJw^Xfqbr_MytfX^t0*0fJ*^_rf*ytEq#mEX#0__Jf*wJ(E*f#mftqwE_XE#wJ_^0rt__tymrrwrE_y#XmfEwr^0##_q#r00ttJJ*w0wJ#qmqw#vf0jyyy#m0fmrq*J#JE#XXt*Jyf^r0r05t_#ywqyrJXXtX#Efywr#fm#wyU^_XyJyfJ^^wr^00JfJw^0rJ0*#JERX#t^mX^#rwEJRE_0y^f_Er*#_JJJfyEw#XtfJyf-r#yEqZEqXrt_JfJ_q0^yXXJif^r^0X##mwq0qmEyX^_qJrftry*^tJwVCw_^JXf#Ewrtr^_*yXq#EXXt06y^rf*0#ym^wX+JiX*#_^J_f^rX*mtmmtEfr_0q#0mUXEt#Jff&rt*qtr# Jmrfmm^r-_0m#Eq0qJ#ywmb0_tyqqrE#ErrJ*EtwqX^wr^yJJ#m#w_X_m0frrr0_#mmQq0f0E#X#_^qCf^rf*r#tE0X#_rJ_fmyqqqEJ*Jfrry*^#Xm#^frgzw*qmw^08m0Ey0qqqJf^0=*0#tJ^^_rq*%tTq0Xwk80JyJmJ*f_tmy^^4X0JX*tyy#^*EtXqtwJ0^0rwt^m^wX<_0m#ymwwXKy0fy*qwwfX*_myJf0EtXh#^qXw#rr03ytqqwrX__yyJf0EJXwt_0_##m0wqO*JEfmrq*r#_mfm/fyww_0t0Jyfmr#XwtrJfX0_0yrf_EmX/rm*w#_q*w*?EJrffrf*&#tm^m_fJwqX0yqy^f*Ey*XtywrTr_fynftE^^rrw_X#Emq^EtwmX^try0X##mfw*fJEqXqtmwy9#_0yJqwE_wqr^*y##q*^w6mJJffr_*mtEmtmJq0oq#tm^wXN#0f#Emvwq}r__yfy0myfmr*J*fyE^*Xtt#mf7rt*q_wJX^mrw00#*mww*by0^tmq#wmd<_tyqqrE_rm_XJ0f#EwXDtyJm^Xr#XXt m0^qr^0_#mmEw0zt0wyXqyw^XX_0yfq^w*Xq_rJ_mqEE**tJ#w0Jry*##XmX^fr#0ttJEXw_uX0E#EqJwwX*_y#tfXw6Xf_JJtfJErXEw^JEfwrJ*X#*m#^^r>0##ym^wt:q0r#JqmwwX0__ymf*EyX^0*J#fqESrrtmJr^_rmXr#0my^wry0y#Jmww#Cf0;##qqwEX__tyqf0EJXw0#JyffrXX_f_JZfrrq*f#_mm^EE0^q#wm^wyK#_X#Eqf^E9t_qyJf_EtXEt0JJmwEw*yttmXfrrf*E#tyq^w!_0X#EmEwJ8X_*yym_EX)r_fyEftEJXr_*yJfEEf*Jtmm*^yr^XXtrmf^JMt0*#rq*wmVE0myJq_E*Xy_^JXf#EfX^ttJ*frEf*mtEm0^JE^0*#Xm^wXV#0m# mr^mgr0EymJ6E0Xy_wJ*fyEJXwt#Jff.wy*qtEm_mmm#00#0mw^m2y0tyXq*wyKp_tyqJeE_XJ_Et0_QEwXwtyJ0^Xrt*ftq*r^qrE0_#0mEw*OJ0fy*q0wJXX_#yfqqEtXm_rJ_f{EE*0tJJ^^*ry*^tvm#^fr-00#*mrw_(m09_yt0mt^mr_*z##E#Xf_KJtfqE0*_tmJE^0w_*w#*my^^.X0##fmqtJ{q0ry_q0wEX*_Jy^f*E0XJtXJ#ffEq*ttmJr^_wt*E#0mJ^^W*0y#^qX>y=f08ytqmwrX0_myqqrEJXwt*y^f^E9*#tf#^^trq*r#_mm^EU00J_mq*w#!^_Xy#qfwFrt_myEf0EmXwt0Jyfwr**rt^J:^#rq*T#tmqfr*J0m#Eq0wyDw_Xyyq^EJX#_fyPf_EqXrt_JmfEr0*Jtwm*^yr^*i#_mf^WBt0qtqq_wmsE_0yJqwE*Xyt0JXf#EfXrttJqfr^q*mtEm0^#Ew0*#ym^w0wwEtXytqJEf#Zq*m_wmyEXrw*0#fmmXr_mJffLrt*^*X_^ymq05#X*_qJfJE^XEtfwms__tyqqrE#E#rJ0m#SmqEf}__#Xqqw*tEJ+^qrr0_#f#_J0qyrX#Hmtw^XX_#ywy^JrfErt0JJ8m*^Jrw0y#wwr+*SE_#JXqE00trmrw_%m0M0Jt^yEfyXEX t#Jf^trfJ0f0Er*_tmJRJ^qHw_X#_*yXrr*E#fm>wt(^h_*J_qJ0Eqr*XEq+weX^tXJ#fw^#^ruy0m#fwr*^t0mJ^w,*0m0EttJXfrEy*w_rm0Uwgr0_tqmJ^#ryJ_f^rX*#tfJ:EtJf#r#X00#Jmww*jy0^NX^w0Ey#qfw/Xt_qfr#**mX^_#JJfwr**m000f#wq;E_?^#,ymfXE0XtJmwtiw_*yyq^EXX#0yfPf0EtXrt_JmfUfJw^rE0y^tEf0X##mfw*w^r**tt*JfftEwX^tJmyEwr#*Et/m*I#t0JXfrr_*mtAt^y*q0E*d^_^yffX0Jw#K^_Xy#qfwurtq_Xtf0EmXEt0JJfwqqJXr*Js^#rf*1#tmqfrtE^rby0^yXq#wf=;_t0qq^_qy-ftEqXrt__mXJJqfmr#*ft:mym0q^E^2mt*yqqE0qy*qyw^XX_#yff3q#XJ_fJ_fmEE*tXr0X#wrt*_#Xm#^fS*cfX__qyrfwr_XJqti<_#yfqiEtXq*rXXJ*XOt#JffFrt*q*rEEtrmy^^DX0##fm3rt^f0w#qqmwEX0_q_#trmrf^Zt*wJwm_wttyt^mX^#rf*Z#trq^00t##qXw#4f_*_JtXmyf!rwy^q0EJXwt*JmJ9m^^f2r0yfE^VwmXm_w^yw_E^X_t#w_D^_Xy#qfwpXt_qyrf*E_XEt0JJfrq_wrPJ_t^_rt*A#tmqwX^J6EXE_rfrgq_*yyq^EXX#KfXXytEyXrt_JmfEr0#Jrft*^tr*0X##mfw*^fEMX#tJJwfmXtX^twwS=E_^JXf#EwEurG*S#_q^w_X__y^#rm0*#ym^w0fXErX*q*wqsr_#fqEE0XJ_fywfyE^*XtJ_7y_m#^rtwJr^mrE00#q#wJJfXEy#rmfwfgB_ty^ytJmwXrt*J#^m_r_rf0^frEf*ft%mt^^wXEJbE#_JyqrwQ**twJ%jr0tyfqvEtX^Xt0J#_q0EE;*0*y*qqw^Xy_E#lq}wrXtmwfJDm0Ey0qqq0^JEE*^tqJfX_A#*r#0mrwJ{EJy#Jq**#XJ__y^qqEwXttJy^fr0yy*m^wEX0_JyrtJmf^X7y00#fmmw^K__y#fqE*^#XmJ^w}*0m#fmrfycf0oytq^ftfEr**E#ymwX#r*0XtbmJXrCw_#TqEw#X^0EJ*fJ0X00tJyEf^EqXfq_wrX00*yrf_EmXQrq0rtEqq^w,*_t#fqfEt__J_fmE^Xct_JJf^E&*_tJJ^^qX__0yTftEq*XXq0w#0^mw*a__#^try0X##mfw*fyr*XftJwyaJ_0yJqwE_w^r^*##0mrXE_rJqfrr_*fcy0qyJqJwy#ym^wX1#0ftqqtwq r__rfqEE0XJ_wJ*fyE^*X_mJffrrt*mtrm_^mwEX?#Jm^w*H#0^#nq#wfrr_tyqqrE*Xm_^J0q#ww**t#J^fqr#*ftbmtfmrr0*#mmEw0;J0wy*m0w^+A_#ymq{E_Xq0w0ffmEw*0_^Jw^*ryv^_^m#^qr)0_#qmfw_ry*my0qtwwKr_yy^fXE#W#_pJ_fqE^*_tyJEq0E^*w#Xmy^fVX*f#fJEfJ<q0^y_q_wEX0_Jywq0EyXJtXJ#ffEw*t*qyf^0rt*Et#mJ^t)*Ly_aqXw*gf0rytqXwrE___yEqrEJXft*ywf^rXkftfJr^tr#*r#0mmf^ER0J#^q*^m.^_Xy#mmwrXt_JyrqEEmXEt0JJq_r**#t^Jr^#rq*T#tmJ^r(_0m#wq0wJsw0(yyq^EXX_0myrftEq*Xt2mJ^qS*wtzy_Jyrqm*q.f_ry#qq00_fmwmE^*EmXwJ^fJ^_r#*^#qw^4Z#Xmm#_qJ^rl0yEmXftwmXf_yy#rrXy#mtym*ffrJ#_yyJ{^-Ew0#tEm*6^*00ty#qwwy*J_XJXmEEyOrJJqJfJr_XJtEmXftrm*XJEq#wXrE*JJfmy^m*w0wyXq0w?tXJ^mfq0wH*X_mywfJr*0mtXJ#f#8r00tyJqXX0rJM^Jrq0*df0y#mE1E#_EJrJXfXEtXyt_^wfmEm#^tJJ#^qry*0tywyf)>_*ftr^Er#;w00mmqmww+r_^y0ftEXt^JV^t-0r_XEftEwS^_Xy#qfmy^r_q0^#^m&w*1r#Em_mr5#t_Jrm#fqwEXXtXJ^fJr__mt#JrfmEE0*tqwr%w_f*^#wqtwX#ymrfEr0*Jtwm*^yr^0X*0t0Jyfmr#ttyrJ^^tEr#Hm^^w/Etrmyf#EfX8ttJqfrr_*mXf_fyrfXEEtmyyJ0^trm*_tGm#5r*yymtqmX^0iJmt^wE^*Xt#JfyfqyE#y*qqJ_q!Eryff0wyrE_0yJqwE_*0tf*Et2qXwJH*J0J_qJ^rR0J^q_r#0*#ym^wX&t0t#{qtwqrw*lymqwE0X#_wJ*fyE^stt#Jmf(rt*qtrm_fyEq00#tmwwX=y0^yXq#wXz&__yqqEE_X#_EJ0qqEw*XtyJq^Xr#*ft!mX^qrr0_#JmEw0iJX^y*qyw^Pr0^yfquEtX^*t0tyXmtwf<E0*y#mE*qt^m#^frS0y*rt0ytqE0^#yqJwwX*_m_mtfm^w0rw_E#yqy^_>w0t^Xr**w#*my^E^#E#a5_wJmvJ*Ey_qmwEXt!E0Xtwm^Eyrf*f#fq0wtMu_y#mqmwJ4Em#fyG*0y#^q0mmfEEX#EtqJtRwr_*JtJEXfrr^*E#qqXwXcwJmq_Ef*w_^mm^E500qX_tmyJ^_EyX^trJt^trrtEmEw0:#0q#Eq*w#.q0Ey*q#E_*Etwmq^rC_0f0_tyywE0E^XEtQwrbr_fyNftE^r0rf*?#JmqFytfJ#^yr^0X#J#wJ_qq32X%t_J#^0Eq*^tJwY-^_^JXf#Ewr*2m*rJtqJ^s X_0yEfX*htJm^wX>#0w_0ttJt^_Xy*mttJmfw*000#ymmw#t_Jtfgrt*q#X0wyrf#wQXtmf^y{y0^yXqJqXftrw*Xt_mJfOXV*y#JEfXwtyJ^^XrJrr!^_t#rrw*^#mmEw07qX**#_wJXfJEQXfqEwgXq_rJ_ffJ=wfrr0J^*r#*m#Xm#^frg0t#qyXm_!y0Jy0qJwwX_Xf*0tJJz^*_EyEfqEr*_tf0E#^q&ww,m0w^qrX0##fm!wyw0ryXf_EJE^mrt0XJ#m0^^r#*f#rmy*0ttJr^_rm*{Xt_Qymf#0t#JqXw#ef_*0^_EJqX*_tyEf0EJXr***wm_ErXEtfJv^tr^&0/rtXJtqWE^**mz^#G^_Xy#qwfXfmr#0ytrm0^E{J_r#ym^^^*t_m#wmK*EtDmq^rO_0f0EtmJ*fJ0?#rq^EXX#_w_m#*q*frRJ*i#_rX**twm*^yrE&yX0_tyffm0J#Xq_wmVE_t_JtJJt^rrm0X#fE_^ur.00#0mm*yttm0^Jrw0_*w_Xyfqr0_00yJmfow0wymqEE0XqX#0qtEmY^^rfJqfgrt*qt^m_^mrE0Xt>mww*sy0EXJtqy;f_E^*tqJE*RE_EJ0fJEr^r{X__y#m^^zsy_tytfX0*#_mEw0BJ0r0ytfywf#_#yfq EtXq_#J_fmEEXXt#Jw^*ry*q#Xm#^fEE*y#qmEw_OJ0Ey0qJwwrq_yyqfXEtXf_8JtmqEm*_tyJE^XrJ*q#*myf*9X0t#fmrwt{J0ry_JrwEX0_Jyff*EtX^tXymffE-*ttmJr^*rm*E_EmJ^w>*0y#^qXw#8f_yytqqwrX0_myEf0EJ^#t*Jyf^rXU*tfJ ^trq*r#_mmqEH*0y#wq*wy.^0ry#JtwrXt_qyr#wEmXwt0#%fwEE*0t^mX^#f_*l#_mq^rX^0m#Eq0wJIw_*yymq0qX#_qy{qJEqXrt_J0t^r0*#twm*^yrf0X#_mf^KJr0q#rq_wmRE_0yJqwXtXy_^JXftEfX8ttJqyJr_*JtEmX^Jrf0*#XXrwX,t0f#0qtwmCr_0ymqqwrXJ_wJ*qqE^XAt#Jyf^rt*qtr#0^mrw00#*X1w*Gy0^#Xq#wqTe__yqqfwkXm_EJ0qJEw*XtyJJfwr#*ft4#_^qrE0__mX_w0(t0wy*qyfEXX_#JXqnE*Xq_wJ_fyEE*0_^Jwfrry*q#Xm#^frLXr#qm^w_1y0Ey0qJ^fg0_yyJfX^rXf_pJtmqEt*_ttJEfrrJK8#*yyqrnX0*#fm^wtDy0rt_qywELr_Jymf*E#X^0Xr^ffE^*tt#JrfJrmX^qtmJ^ya*X^#^qXw#{f*mytq#wrHE_my^f0

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

79665302

Date: 2025-06-13 19:47:42
Score: 1.5
Natty:
Report link

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/fromBase64#decoding_a_base64_string

const uint8Array = Uint8Array.fromBase64("PGI+ TURO PC9i Ph");
console.log(uint8Array); // Uint8Array(10) [60, 98, 62, 77, 68, 78, 60, 47, 98, 62]

https://caniuse.com/mdn-javascript_builtins_uint8array_frombase64

https://github.com/zloirock/core-js#uint8array-to--from-base64-and-hex

https://www.npmjs.com/package/es-arraybuffer-base64

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

79665301

Date: 2025-06-13 19:46:42
Score: 1
Natty:
Report link

Based on WWDC's presentation there should be a .clear variant for .glassEffect(). Weirdly it's not available yet in the current Xcode build, only the .regular variant is available now. I'm expecting that to be available in future release.

The clear variant is currently not yet available in SwiftUI documentation.
https://developer.apple.com/documentation/swiftui/glass

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

79665300

Date: 2025-06-13 19:43:41
Score: 1
Natty:
Report link

New in iOS 26

There is new modifier property you can adopt to natively hide

.navigationLinkIndicatorVisibility(.hidden)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ayelvs

79665289

Date: 2025-06-13 19:29:38
Score: 4
Natty: 4.5
Report link

There seems to be a github action (created by databricks) to achieve this.

https://github.com/marketplace/actions/upload-dbfs-temp#usage

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

79665287

Date: 2025-06-13 19:25:37
Score: 3
Natty:
Report link

it happened to me and the problem was a conflict of version. Make sure that the R version that you are using is the same of the installed package 4.3.3.

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

79665282

Date: 2025-06-13 19:18:34
Score: 1
Natty:
Report link

The explanation

"Conditions are used to signal that a resource is available. Whomever was waiting for the condition, can use that resource until they are done with it."

from Martijn Pieters' answer is a bit wrong and misleading (granted similarly so as in the linked threading-related question). Conditions are more concerned with halting execution, when the resource is not in a proper state (giving access back to other tasks, i.e. making the lock conditional) and grouping tasks into sets, that should be awakened together in case of certain events.

The "async for"-block using the condition as the context manager (or rather the embedded lock) actually already ensures exclusive access to the shared resource throughout the block (via implicit require/release-calls). We are supposed to use the condition here as shown in Martijn's Python-example or the Python documentation, but really the embedded lock gets used for this, which makes more sense as it provides or represents the mutually excl. access functionality for the resource. Also we can use various conditions based on the same underlying lock within this block, so the block is not bound to a certain condition, but rather a certain lock/shared resource.

If we only need the excl. access though, when some condition is met, then we might want to free the resource and suspend ourselves until that condition/event occurs again. So conditions are certain states or events in regards to the shared resource, that are necessary for us to proceed with our operations on that resource.

E.g. we can only proceed with adding a value to a shared queue, when there is space left in the underlying buffer. So when the queue is full we wait for a condition called "notFull", that gets controlled/triggered by the code taking values off the queue.

See this BoundedBuffer/Queue example in Java making good use of Conditions for that use case.

It is very comparable to how Conditions work in Python, but it showcases how the common lock is used to create the critical sections and how multiple conditions can be used within those. We don't even need to wait for a condition, when we notice ourselves, that the condition is already met (here e.g.: the queue has still space left or is not yet full).

Also the conditions we use for waiting are often only meant for rough, possible or necessary (but not sufficient) conditions and we still will have to check, if the state is indeed as expected or what we're looking for. Maybe another task got notified before us and already changed the state. That's also why "Condition.wait_for(predicate)" exists, to make that a combined and more compact affair without an explicit while-loop as in the Java-example. We might even get notified, even though the condition is actually NOT met!

The Java-documentation also states that conditions are used to group tasks/threads into sets, that should be awakened, when some common event occurs. So the Event-part is mainly concerned with collecting tasks, that are waiting on a same or similar thing and awakening/notifying them together as needed.

Reasons:
  • Blacklisted phrase (1): regards
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: e.d.n.a

79665272

Date: 2025-06-13 19:03:30
Score: 1
Natty:
Report link

What worked for me (Mac + MCP Server is in Python + using uv):

npx @modelcontextprotocol/inspector /opt/homebrew/bin/uv --directory /Users/my_home_directory/src/tutorials/mcp/weather run weather.py

One of the messages printed on the console during the Inspector's startup was:
Open inspector with token pre-filled:
http://localhost:6274/?MCP_PROXY_AUTH_TOKEN=a_sixty_four_character_token_that_changes_with_each_inspector_restart

I copy-pasted that in Safari. The Inspector was able to connect to the MCP server after that.

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

79665270

Date: 2025-06-13 18:58:29
Score: 2
Natty:
Report link

the suggested solution did not work for me, I got it working in MSSQL by using GETDATE()...

insert into "PRODUCT" ("createdAt", "updatedAt", "PRODUCT_ID", "USER_ID") values (GETDATE(),GETDATE(), 1, 1)
Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Charles Brusca

79665261

Date: 2025-06-13 18:41:25
Score: 4
Natty:
Report link

I also faced same issue, the issue is in "tailwind.config.js" file. when I give this command: "npx tailwindcss init -p" it gives me error. then I manually create both files: "tailwind.config.js" and "postcss.config.js". but still it didn't work. The issue was in the tailwind version, I had the new version of Tailwindcss. After that, I downgrade the version of Tailwind to "3.4.17" and run this command: "npx tailwindcss init -p". It works.

Reasons:
  • Blacklisted phrase (2): gives me error
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arslan Akmal

79665253

Date: 2025-06-13 18:37:23
Score: 4
Natty:
Report link

I am also having this issue. It says everywhere to contact support, but support just refers to their github or stackoverflow subchannel, which neither does nothing to contact them.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TRNDSTR

79665248

Date: 2025-06-13 18:34:21
Score: 1.5
Natty:
Report link

the truth is there is no way you are going to know the best learning algorithms until you have tried them.

Now that you have used XGBoost and the performance isn’t satisfactory I urge you try another learning algorithms however before doing that you may need to check your preprocessing steps.

and instead of assuming why not test out what is happening and see for yourself.

For example you may consider cross validation to check the class imbalance

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Adegbite Ibukunoluwa Mary

79665229

Date: 2025-06-13 18:05:13
Score: 2.5
Natty:
Report link

[BARK]

┌───────────────────────────────┐

│ **SAPWOOD** (Light-colored) │

│ --------------------------- │

│ **HEARTWOOD** (Dark) │ ← Central core

│ ANNUAL RINGS: │

│ [ ][ ] Earlywood (Light band)│

│ [██] Latewood (Dark band) │

│ [ ][ ] Earlywood │

│ [██] Latewood │

│ │

└───────────────────────────────┘

➔ **Pith** (center)

Reasons:
  • No code block (0.5):
  • No latin characters (0.5):
  • Filler text (0.5): ───────────────────────────────
  • Filler text (0): ---------------------------
  • Filler text (0): ───────────────────────────────
  • Low reputation (1):
Posted by: Raza kohli

79665227

Date: 2025-06-13 18:00:11
Score: 2.5
Natty:
Report link

check you router, firewall and nat rules
if you use mikrotik check ip->nat (you can have dst-nat rule)
you must have 80 and 443 port forwarded separately!!!!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: иван хак

79665224

Date: 2025-06-13 17:56:10
Score: 3
Natty:
Report link

Check 'File' > 'Revision history' in Google Colab

Compare the execution time between the two cells to get an approximate time

enter image description here

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

79665208

Date: 2025-06-13 17:46:07
Score: 3
Natty:
Report link

Try using a binary search to identify any incompatibilities. Also, check the mod’s official download page to confirm whether it supports your version of Minecraft.

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

79665204

Date: 2025-06-13 17:42:05
Score: 3
Natty:
Report link

As mentioned in the comment above, this feature exists only for LocalStack Pro users. However, there's an open-source project that enables this feature in the Community edition. You can check it out here: https://github.com/GREsau/localstack-persist.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Obada Yahya

79665203

Date: 2025-06-13 17:39:05
Score: 1.5
Natty:
Report link

Ok, I will add to the Necro-posting. .NET (at least version 8) has a template that uses the ApplicationHostBuilder and hosted services to use the Background worker class type. This is probably the right way to go forward (2025). It enables things like dependency injection and built in logging. This should enable developers to leverage all the rich tooling built for .NET Web Hosts.

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

79665199

Date: 2025-06-13 17:34:03
Score: 2
Natty:
Report link

I tried everything, the Snap version, the official .deb version. But the issue turned out to be related to GPU acceleration.

Disabling it solved my problem:
code --disable-gpu
you can permanently disable it in vscode settings:
"terminal.integrated.gpuAcceleration": "off"

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

79665196

Date: 2025-06-13 17:24:00
Score: 1
Natty:
Report link
echo 'Subject : "O=This is a test,CN=abc.def.com,L=North,ST=Arizona,C=CA"' |sed -r 's/.*CN=([^,]*)[,].*/\1/'
abc.def.com

linux bash sed: '-r' allows to use '()' without escaping search pattern: any char and "CN=" : .*CN= ( any char but not ',': [^,]* ) # remember/save this part in var 1 ',' and any char: [,].* replace with saved buffer/variable: \1

Cutting out strings is a very common task and can be done in various ways as shown above already: so I am also always looking for new ways and always taking into account the available tools and patterns to have an easy, fast and precise solution.

Happy cutting!

brgds

stefan

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

79665189

Date: 2025-06-13 17:19:59
Score: 2.5
Natty:
Report link

The AWS glue registry has a hard limit on the schema size of 170kb. We have many that are more than 200kb, so I'm forced to try a Frankensteinian solution like using the confluent schema registry with msk.

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

79665183

Date: 2025-06-13 17:13:58
Score: 1
Natty:
Report link

I misput the closing bracket in the homeController file

router.post('/put-crud'), homeController.putCRUD;

// it should be

router.post('/put-crud', homeController.putCRUD);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Dr Linh Chi Nguyen

79665182

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

Instead of using IClassFixture<T> you should use ICollectionFixture which allows you to create a single test context and share it among tests in several test classes. You can find an example of the usage here Collection Fixtures. Hope it helps🤞🥲.

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ismael Herrera

79665175

Date: 2025-06-13 17:03:55
Score: 2.5
Natty:
Report link

I have always used it this way:

ifndef MAKECMDGOALS
        @echo "$$(MAKECMDGOALS) is not defined"
    else 
        @echo "$(MAKECMDGOALS) is defined"
    endif

No parentheses, or "$" sign. A lesson hard learned, or was it? What is the difference in these two syntaxes?

ifndef $(MAKECMDGOALS)
        @echo "$$(MAKECMDGOALS) is not defined"
    else 
        @echo "$(MAKECMDGOALS) is defined"
    endif
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Clarkman

79665170

Date: 2025-06-13 16:56:52
Score: 6.5 🚩
Natty:
Report link

I found a Way to Resolve the CSRF Token Mistach Error on Insomnia. By default we have a funcionality that takes a Header value and store it in a Tag/Environment Variable.

But the XSRF token comes with a bad formatation and just put it as reference on the headers is'nt enough to Correct it.

Below i'will pass a function that extract the corret value from the XSRF TOKEN in the header and store it correctly in a environment variable:

**1. Create an Empty envinronment variable**

```

{

"XSRF_TOKEN": ""

}

```

**2. Create a new HTTP Request on Insomnia, put your URL with GET method.**

````` you-api/sanctum/csrf-cookie` ``

**3. Below URL we have different paths of configuration like Params, Body, Auth, go to Scripts and put the code Below**

```

const cookieHeaders = insomnia.response.headers

.filter(h => h.key.toLowerCase() === 'set-cookie');

const xsrfHeader = cookieHeaders

.find(h => h.value.startsWith('XSRF-'));

console.log(xsrfHeader);

if (xsrfHeader) {

// 3. Extrai o valor do cookie

let xsrfValue = xsrfHeader.value

.split(';')\[0\]             // "XSRF-TOKEN=…"

.split('=')\[1\];            // pega só o valor

xsrfValue = xsrfValue.slice(0, -3);

// 4. Armazena na base environment

insomnia.environment.set("XSRF_TOKEN", xsrfValue);

console.log('⭐ XSRF-TOKEN salvo:', xsrfValue);

} else {

console.warn('⚠️ XSRF-TOKEN não encontrado no header');

}

```

In console of response you can see if any errors occurs.

**4. Finally put the variable on the Headers of any Http Request as you want. Like this:**

```

header value

X-XSRF-TOKEN {{XSRF_TOKEN}}

```

After that you will be able to make Your Request to your login and Have access to your application and Auth::user !

Obs: I already was receving the Token in Frontend so my Backend was okay, if you dont, just follow the steps of a lot of youtubers, in my case i've struggle for a while in this step because my domain of backend and frontend was not of the same origin.

i Create an environment domain for main application to redirect the localhost of Frontend and Backend.

My Backend is a server vagrant that points to **http://api-dev.local** and my frontend is

**http://frontend.api-dev.local**

Below my** vite.config.js** where i change the domain, "you have to point the domain in your hosts file of your system" i'm using Windows 11"

```

import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'

import vue from '@vitejs/plugin-vue'

import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/

export default defineConfig({

plugins: [

vue(),

vueDevTools(),

],

resolve: {

alias: {

  '@': fileURLToPath(new URL('./src', import.meta.url))

},

},

// server: {

// host: 'test-dev.local',

// port: 5173,

// https: false, // ou true se você gerar certificado local

// }

server: {

host: 'frontend.api-dev.local',

port: 5173,

https: false,

cors: true

}

})

```

and my Important Variables in **.env** of laravel

`APP_URL=http://api-dev.local

SESSION_DOMAIN=.api-dev.local

SANCTUM_STATEFUL_DOMAINS=http://frontend.api-dev.local:5173

FRONTEND_URL=http://frontend.api-dev.local:5173`

Final OBS:

The routes are in WEB not in API, below you see my **web.php** file

```

<?php

use App\Http\Controllers\AuthController;

use Illuminate\Support\Facades\Route;

use App\Modulos\Usuario\Http\ApiRoute as UsuarioRoute;

Route::get('/', function () {

return view('welcome');

});

Route::middleware('web')->group(function () {

Route::post('/login', \[AuthController::class, 'login'\])-\>name('login');

Route::post('/logout', \[AuthController::class, 'logout'\])-\>name('logout');

Route::get('/user', \[AuthController::class, 'user'\])-\>name('user')-\>middleware('auth');

UsuarioRoute::routes();

});

```

I'm not using the user route in this case, just return the user data in login.

My English is so Bad, glad to Help!

Finally you will be able to Resolve the problem

Reasons:
  • Blacklisted phrase (3): você
  • Blacklisted phrase (1): não
  • RegEx Blacklisted phrase (2): encontrado
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dênio Clécio

79665158

Date: 2025-06-13 16:48:50
Score: 1.5
Natty:
Report link
Downloading Chromium 136.0.7103.25 (playwright build v1169) from https://playwright.download.prss.microsoft.com/dbazure/download/playwright/builds/chromium/1169/chromium-win64.zip
Error: getaddrinfo ENOTFOUND playwright.download.prss.microsoft.com
    at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:internal/dns/promises:99:17) {
  errno: -3008,
  code: 'ENOTFOUND',
  syscall: 'getaddrinfo',
  hostname: 'playwright.download.prss.microsoft.com'
}
Failed to install browsers
Error: Failed to download Chromium 136.0.7103.25 (playwright build v1169), caused by
Error: Download failure, code=1
    at ChildProcess.<anonymous> (G:\automatiza\Lib\site-packages\playwright\driver\package\lib\server\registry\browserFetcher.js:94:32)
    at ChildProcess.emit (node:events:518:28)
    at ChildProcess._handle.onexit (node:internal/child_process:293:12)

i am getting this error for all the 3 retries with 3 different domain names, in my docker file i am having command && playwright install --with-deps chromium, this command initially it was working but now after 3 retries also it is getting failed 
Reasons:
  • Blacklisted phrase (1): i am getting this error
  • RegEx Blacklisted phrase (1): i am getting this error
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amit Ilakal

79665141

Date: 2025-06-13 16:32:46
Score: 1
Natty:
Report link

No negative impact—your approach is correct and commonly used.

Applying custom weights to the TF-IDF matrix (with norm=None), then normalizing each row using sklearn.preprocessing.normalize, produces unit vectors just like norm='l2' in TfidfVectorizer. This preserves cosine similarity and ensures each row has L2 norm = 1.

Key point: The order matters. Weighting first, then normalizing, gives you control over the influence of features before projecting vectors onto the unit sphere.

If you normalized before weighting, the vectors would not be unit length anymore.

There is no difference (other than order of operations) between the manual normalization and letting the vectorizer do it, as long as normalization is the last step.

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

79665136

Date: 2025-06-13 16:30:45
Score: 0.5
Natty:
Report link

ctor changed from an attribute macro to a proc macro at some point after version 0.2.0, which makes re-exporting not possible. Therefore, the solution is to use ctor = "0.2" within Cargo.toml for mylib.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: mdf

79665135

Date: 2025-06-13 16:30:45
Score: 0.5
Natty:
Report link

You did not mention anything about adding permissions to the Android Manifest.

<uses-permission android:name="android.permission.CAMERA" />

You may also consider this if it is required:

<uses-feature android:name="android.hardware.camera" android:required="true" />

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

79665126

Date: 2025-06-13 16:17:41
Score: 2
Natty:
Report link

I think this policy export endpoint is the closest you can get.

https://help.zscaler.com/zia/policy-export#/exportPolicies-post

There are still a few other things to export (URL categories, groups, ATP URL list, etc.) if you want a complete picture.

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

79665117

Date: 2025-06-13 16:09:39
Score: 2
Natty:
Report link

I got the same problem and I tried installing the package multcompView then I used cld() function with my emmean object, without using pairs(), and I finally got an expected grouping.

For example:

library(tidyverse)
library(lme4)
library(lmerTest)
library(emmeans)
library(multcomp)

formula_str <- "log(OC) ~ sev_dpt * fraction + 1 + (1|Sites)" # where OC is numerical, and the other ones are factors
mod.lme <- lmer(as.formula(formula_str), data = db)

emmeans(mod.lme, list(pairwise~sev_dpt*fraction), adjust="tukey") %>%
  # pairs() %>% # I needed to avoid the use of pairs to make it work
  multcomp::cld()
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I got the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Luis D. Olivares

79665112

Date: 2025-06-13 16:04:38
Score: 0.5
Natty:
Report link

Versions matter. After ensuring both my host and micro frontend had the same angular version (19.0.0) and the same version of @angular-architects/native-federation (also 19.0.0) the NG0203 error disappeared an federation started working for me.

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

79665097

Date: 2025-06-13 15:51:35
Score: 3.5
Natty:
Report link

You're casting a char (from std::string) into an unsigned char. That's where the compiler warns about the possible loss of data.

This is innocuous as long as your input actually contains printable characters. If there's binary data in your string, that's when you could loose data. But you probably don't want to call Converter::tolower() passing a string with binary data, right?

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

79665093

Date: 2025-06-13 15:50:34
Score: 2.5
Natty:
Report link

If anyone is looking for DiscUtils since Codeplex has shut down, It can be downloaded from Github: https://github.com/DiscUtils/DiscUtils

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

79665090

Date: 2025-06-13 15:43:32
Score: 0.5
Natty:
Report link

Why can’t I delete large nodes in Firebase Realtime Database? (TRIGGER_PAYLOAD_TOO_LARGE) Firebase Realtime Database has a hard limit: if a write/delete operation would trigger a payload larger than 1MB (because triggers/events send the full data), it fails with TRIGGER_PAYLOAD_TOO_LARGE. This limit affects deletes via:

Changing settings like .settings/strictTriggerValidation or using service accounts does not bypass this.

What can you do?

  1. Delete children in small batches If the problem node has many children, delete them in small groups (e.g., 100 at a time). Example (Admin SDK):
async function deleteInBatches(path) {
const ref = admin.database().ref(path);
let snap = await ref.limitToFirst(100).once('value');
while (snap.exists()) {
const updates = {};
snap.forEach(child =\> updates\[child.key\] = null);
await ref.update(updates);
snap = await ref.limitToFirst(100).once('value');
}
await ref.remove(); // Optionally remove empty parent
}

If any individual child exceeds 1MB, this method will also fail.

  1. No reliable way to force-delete huge single nodes If even a single child (or the node itself) is >1MB, there is no public method to delete it. No setting or permission will bypass this. This is a platform limitation by Firebase to protect against massive accidental deletes.

  2. Contact Firebase support If you absolutely must delete such data (especially in production), open a support ticket with your project and path. In some cases, Firebase support can perform backend deletes not possible via public APIs.

Prevention tips Avoid storing large blobs in Realtime Database; use Cloud Storage. Keep your data shallow and well-partitioned.

Summary:

Chunked/batched deletes work if children are small enough. No workaround exists for single nodes/children >1MB—contact support.

References:

Firebase Functions limits (https://firebase.google.com/docs/functions/limits)

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why can
  • Low reputation (1):
Posted by: Daniel

79665087

Date: 2025-06-13 15:42:32
Score: 4
Natty:
Report link

1- عامر 🐺

2- ابدولا ♋️

3- خالد

4- محمد يوسف

5- محمد الهرمودي 🔷

6- محمد 🐉

7- عبدالله احمد

8- مايد ز

9- محمد الهاجري

10- عبدالسلام

11-اسماعيل

12-عبدالله الهاجري

13- حمد عارف

14- عيسى

15- بو مهره بامر من بوخالد

16- ماجد

17- عمران

18- روسي

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Amer Al Zarouni

79665084

Date: 2025-06-13 15:40:30
Score: 6.5 🚩
Natty: 5.5
Report link

I followed this and the word wrap is working. Only problem is that the word wrapped text size has shrunk so much that I can hardly read it. Is there a way to remedy this?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RALPH

79665079

Date: 2025-06-13 15:38:29
Score: 0.5
Natty:
Report link

You probably need to add the jasypt spring boot library:

implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.5'
<dependency>
    <groupId>com.github.ulisesbocchio</groupId>
    <artifactId>jasypt-spring-boot-starter</artifactId>
    <version>3.0.5</version>
</dependency>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Carlos Jafet Neto

79665061

Date: 2025-06-13 15:23:24
Score: 1
Natty:
Report link

To work in Pipenv from Jupyter Notebook do:

pipenv install ipykernel
pipenv shell

ipython kernel install --name=`basename $VIRTUAL_ENV` --user

jupyther notebook
# select .venv kernel

Note that ipython installation is made.

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

79665056

Date: 2025-06-13 15:21:24
Score: 1.5
Natty:
Report link

During SymfonyOnline June 2024, Fabien Potencier himself gave a talk about this topic.

The replay of the talk is free to view (requires a registration): https://live.symfony.com/account/replay/video/968

The slides are available here:

https://speakerdeck.com/fabpot/using-some-git-magic-on-the-symfony-mono-repository-6186213e-8ed7-4d47-8c69-d64748ec2ea9?slide=31

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

79665043

Date: 2025-06-13 15:13:21
Score: 1
Natty:
Report link

Looks like you aren't importing PassKit in your Swift code. Add import PassKit to the top and it should compile.

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

79665037

Date: 2025-06-13 15:08:20
Score: 2
Natty:
Report link

NoInfer<T>

There's a TypeScript utility type since version 5.4 for this very use case.

async function get<U>(url: string): Promise<NoInfer<U>> {
    return getUrl<U>(url);
}
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: B14s

79665032

Date: 2025-06-13 15:03:18
Score: 1.5
Natty:
Report link

🧩 Why isn’t resolveWebviewView ever called in my VS Code extension?

I want to share a subtle but critical pitfall that can break VS Code sidebar webviews and waste hours of debugging time. If your resolveWebviewView() method never gets called—no errors, no logs, just a stubborn placeholder in the sidebar—this might be your culprit.


Symptoms


What’s Actually Happening

Despite what most documentation suggests, just defining a view with an id in your package.json and registering a provider with the matching ID is not enough.

VS Code will happily display your sidebar view, but will never hook up your provider unless you explicitly set the view’s type to "webview" in package.json.


The Critical Line

You need this in your package.json view contribution:

"views": {
  "mySidebarContainer": [
    {
      "type": "webview",  // <-- This is required!
      "id": "mySidebarView",
      "name": "Dashboard"
    }
  ]
}

If you leave off "type": "webview", VS Code treats your view as a static placeholder.
Your provider will never be called—no matter how perfect your code is.


Why is this so tricky?

This makes it really hard to diagnose, especially in projects with build steps or lots of code.


Minimal Working Example

package.json (relevant bits):

"viewsContainers": {
  "activitybar": [
    {
      "id": "mySidebarContainer",
      "title": "My Sidebar",
      "icon": "media/icon.svg"
    }
  ]
},
"views": {
  "mySidebarContainer": [
    {
      "type": "webview",
      "id": "mySidebarView",
      "name": "Sidebar Webview"
    }
  ]
}

Activation:

vscode.window.registerWebviewViewProvider(
  "mySidebarView",
  new MySidebarViewProvider(context)
);

Provider:

export class MySidebarViewProvider implements vscode.WebviewViewProvider {
  resolveWebviewView(view: vscode.WebviewView) {
    view.webview.options = { enableScripts: true };
    view.webview.html = '<h1>It works!</h1>';
  }
}


Takeaway

If your sidebar webview isn’t working and resolveWebviewView is never called, double check that you included "type": "webview" in your view’s package.json entry.
This tiny detail makes all the difference and is easy to overlook.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (0.5): Why is this
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Daniel

79665021

Date: 2025-06-13 14:59:16
Score: 2
Natty:
Report link

I added "?ignore_skipped=true" on badges configuration URLs to hide skipped pipelines :

gitlab.tech.orange/%{project_path}/-/commits/%{default_branch}?ignore_skipped=true

gitlab.tech.orange/%{project_path}/badges/%{default_branch}/pipeline.svg?ignore_skipped=true

Follow this solution to hide skipped pipelines :

https://forum.gitlab.com/t/force-pipeline-on-tag-push-when-commit-message-contains-skip-ci/60169/2

.gitlab-ci.yml

workflow:  
  rules:  
    - if: $CI_COMMIT_MESSAGE =\~ /^chore\\(release\\):/  
      when: never  
    - when: always  

.releaserc

    \[  
      "@semantic-release/git",  
      {  
        "assets": \["CHANGELOG.md", "package.json", "package-lock.json", "npm-shrinkwrap.json", "constants/version.ts", "sonar-project.properties"\],
  
        "message": "chore(release): ${nextRelease.version}\\n\\n${nextRelease.notes}"  
      }  
    \],
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yoan Huret

79665017

Date: 2025-06-13 14:55:15
Score: 2
Natty:
Report link

C++ is getting to know the hardware as it is used to denote a system like a television screen you see whether it is an input or output.

The software follows as when is is programmed by syntax to denote such as . for part of thereof.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Guru Dev Singh Khalsa

79665015

Date: 2025-06-13 14:55:15
Score: 0.5
Natty:
Report link

I’ve worked on similar hybrid setups during migrations — especially between Symfony versions — and this kind of session management conflict is pretty common.

Is there a proper way to tell Symfony 6 to not start a session but use the existing one?


// In a Symfony 6 controller or service
$session = $request->getSession();
if ($session->isStarted()) {
    // Access session safely without triggering session_start()
    $userId = $session->get('user_id');
}

But to avoid starting the session, you must:

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

79665012

Date: 2025-06-13 14:53:14
Score: 2.5
Natty:
Report link

We ran into similar problems with Azure functions. Our team tried multiple things. One of them was to move the functions folder out of the src/ directory and have it at the root of the project. Azure is weird. Also, there are multiple flags associated with remote build, look into that as well.

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

79665001

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

Try ensuring the .launch() call is distant from the registration call (at least not in the same (re)compose).

I suspect the Photo Picker behaves like other Activities, and thus this note from docs on getting results from activities would apply (emphasis mine):

Note: You must call registerForActivityResult() before the fragment or activity is created, but you can't launch the ActivityResultLauncher until the fragment or activity's Lifecycle has reached CREATED.

To me, this implies registerForActivityResult must be called early enough for the Lifecycle of the underlying Photo Picker activity to reach CREATED, though I'm unsure how to test that theory.

I only started Android dev today so 0 experience and YMMV, but this resolved the same issue for me.

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

79664998

Date: 2025-06-13 14:32:09
Score: 2.5
Natty:
Report link

I assume that this error is related to paths. In order to go to the fonts folder, you first need to exit the css folder. Try putting "../" in front of path, for example: "../fonts/Recoleta-SemiBold.woff"

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

79664997

Date: 2025-06-13 14:31:08
Score: 6 🚩
Natty: 4.5
Report link

Since VS2022 OnAfterBackgroundSolutionLoadComplete is deprecated. I can't find any reliable answer on what's the new designated way of listening to solution loading. Any ideas?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Killian Lomax

79664990

Date: 2025-06-13 14:24:05
Score: 1.5
Natty:
Report link

You probably want to set render_template_as_native_obj=True for your DAG:

https://airflow.apache.org/docs/apache-airflow/stable/_api/airflow/models/dag/index.html#:~:text=render_template_as_native_obj%20%E2%80%93%20If%20True%2C%20uses%20a%20Jinja%20NativeEnvironment%20to%20render%20templates%20as%20native%20Python%20types.%20If%20False%2C%20a%20Jinja%20Environment%20is%20used%20to%20render%20templates%20as%20string%20values.

render_template_as_native_obj – If True, uses a Jinja NativeEnvironment to render templates as native Python types. If False, a Jinja Environment is used to render templates as string values.

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

79664989

Date: 2025-06-13 14:24:05
Score: 0.5
Natty:
Report link

I have found a workaround to display the image sharp.
It requires manually changing a value in the code each time you change scaling in Windows.

Step 1:

%%javascript
const ratio = window.devicePixelRatio;
alert("devicePixelRatio: " + ratio);

notification popup showing a devicePixelRatio  of 1.875

Step 2:

devicePixelRatio = 1.875 # manually enter the value that was shown

Step 3:

from PIL import Image
from IPython.display import HTML
import numpy as np
import io
import base64

# 32x32 data
bw_data = np.zeros((32,32),dtype=np.uint8)
# (odd_rows, even_columns)
bw_data[1::2,::2] = 1
# (even_rows, odd_columns)
bw_data[::2,1::2] = 1

# Build pixel-exact HTML
def display_pixel_image(np_array):
    # Convert binary image to black & white PIL image
    img = Image.fromarray(np_array * 255).convert('1')
    
    # Convert to base64-encoded PNG
    buf = io.BytesIO()
    img.save(buf, format='PNG')
    b64 = base64.b64encode(buf.getvalue()).decode('utf-8')
    
    # HTML + CSS to counteract scaling
    html = f"""
    <style>
      .pixel-art {{
        width: calc({img.width}px / {devicePixelRatio});
        image-rendering: pixelated;
        display: block;
        margin: 0;
        padding: 0;
      }}
    </style>
    <img class="pixel-art" src="data:image/png;base64,{b64}">
    """
    display(HTML(html))

display_pixel_image(bw_data)

output:

sharp image

Visual Studio Code cannot access ipython kernel so I don't know how to retrieve devicePixelRatio from Javascript. I tried to make an ipython widget, but was not able to refresh it automatically. If this can be done automatically then it won't require user input.

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

79664982

Date: 2025-06-13 14:20:04
Score: 6 🚩
Natty: 5
Report link

Did you got any solution for this how to capture winlogon screen with desktop duplication api

Reasons:
  • RegEx Blacklisted phrase (3): Did you got any solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Sandeep Ks

79664979

Date: 2025-06-13 14:17:03
Score: 0.5
Natty:
Report link

django_stubs_ext.monkeypatch() should not be placed inside an if TYPE_CHECKING: block, because it needs to be executed at runtime, not just during type checking.

The purpose of this function is to patch certain Django internals so that mypy and type hints work correctly. If you wrap it in TYPE_CHECKING, it will never actually run during program execution — defeating its purpose.

As stated in the official documentation:

“This only needs to be called once, so the call to monkeypatch should be placed in your top-level settings.”

Therefore, make sure you call it at the very top of your settings file (or another central entry point) before any django imports.

Here is the link for the reference that I used to answer your question:

https://pypi.org/project/django-stubs-ext/

The example code that is provided in the documentation:

from os import environ

import django_stubs_ext
from split_settings.tools import include, optional

# Monkeypatching Django, so stubs will work for all generics,
# see: https://github.com/typeddjango/django-stubs
django_stubs_ext.monkeypatch()

# Managing environment via `DJANGO_ENV` variable:
environ.setdefault('DJANGO_ENV', 'development')
_ENV = environ['DJANGO_ENV']

_base_settings = (
    'components/common.py',
    'components/logging.py',
    'components/csp.py',
    'components/caches.py',

    # Select the right env:
    'environments/{0}.py'.format(_ENV),

    # Optionally override some settings:
    optional('environments/local.py'),
)

# Include settings:
include(*_base_settings)

Reasons:
  • Blacklisted phrase (1): Here is the link
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ari Maran

79664965

Date: 2025-06-13 14:06:00
Score: 1.5
Natty:
Report link
sudo apt install openmpi-bin 

solves the issue since it downgrades mpirun (was 4.2 now is 4.1.6)

the usual hello_world test works https://matthew.malensek.net/cs220/schedule/code/week07/mpi_hello.c.html

Hope it helps

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: PierreHenriMusiedlak

79664962

Date: 2025-06-13 14:05:00
Score: 0.5
Natty:
Report link

The simplest way to handle this would be to use a SetupIntent to create a Payment Method, then create all 5 subscriptions using the resulting Payment Method.

Stripe has a pretty thorough guide that covers the basics of using SetupIntents here:

https://docs.stripe.com/payments/save-and-reuse

For your specific flow it would look something like this:

  1. Create a Customer
const customer = await stripe.customers.create();
  1. Create the SetupIntent
const setupIntent = await stripe.setupIntents.create({
  customer: customer.id,
  usage: "off_session"
});
  1. Collect and confirm the payment details on the frontend using Stripe Elements

  2. Verify that the payment method has been created and attached to the customer (one way to do that would be listening for the payment_method.attached webhook event

  3. Create your subscriptions like so:

const subscription = await stripe.subscriptions.create({
  customer: customer.id,
  items: [
    {
      price: priceId,
    },
  ],
  default_payment_method: yourPMId
});

Alternatively, rather than providing the Payment Method ID when creating the subscription you can update the customer's default Payment Method: https://docs.stripe.com/api/customers/update#update_customer-invoice_settings-default_payment_method

It's also worth noting that if the billing period is the same for all of the subscriptions, you can just add them all as different items on the subscription per this guide: https://docs.stripe.com/billing/subscriptions/multiple-products

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: archiverat

79664959

Date: 2025-06-13 14:01:59
Score: 0.5
Natty:
Report link

I have noted that in the first one I am using

$billData = UploadInvoiceBillData::from($request->only(['invoice_number']));

Isntead of

$billData = UploadInvoiceBillData::validateAndCreate($request->only(['invoice_number']));

The second one I am using

$billData = BillData::from($request);

I feel from method only validates first if it is an instance of Illuminate\Http\Request

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

79664955

Date: 2025-06-13 13:58:58
Score: 1
Natty:
Report link

-- BEGIN SSH2 PUBLIC KEY ----

Comment: "rsa-key-20250327"

AAAAB3NzaC1yc2EAAAADAQABAAACAQC+WXWp fXhmT0OCNZNRh6xvhZHOF9bR/8c

u4O55pUUVnmJpwtXam1TWevtIC4CgyfMWa9jPGazYBFsat8FczdFUZ/fLb94UKe

IHH2G5Azclzy0tLUQMgAfbphimNL1CSeAgEctchnF2Ck89xcsSRs4M6TIFgr1o

ojplv4p0bUodJyVPfQc5tpbEmFbnHWY/wRCSUyM5sHv1iosf44Sy5vM2mXVtbES

pk5caQJ1ax/tP3hKAFepBb2wKcRkHWV/67cjnS/RzVgrU9XdtRVNv7jsdq7ZYKxc

PLN9Cyped4ZOfPRfenC/9eHWXRak29NYykN7RD92ZOjP7/dD3H6Y0kDcQ1oszX2c

H+JP17NG3p1qZVsnlzJBP8xvTRaXNYup5zkQcdQpfjMSdn45fddCo1cjnvIF/AG2

UkMKXfnroYdxIwGVUvDf76RQZyWs5rRNPQcPNmoGW+yJa0+LCdv7jsdGQDMShJ

puHMq0OZt9sLiQPJSK66zx9Q6W//cIoWAi9d8OYQMFqG07Px1TcLkyvJJJY8YBftk

ovkF8Je1E1BwCRcbt8mHuygMj1lxJutTkq4UJSsg0MmYQ0DxSP+ZoDmUHfnBd5H

zbaM8QWJ25OwNPIEGPosrxKFsxeEm8e2WJjWcMWTvvvKtiFVBcJvwkM4mFJsq4Re

WcuxXDP5yQ==

---- END SSH2 PUBLIC KEY ----

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

79664928

Date: 2025-06-13 13:34:52
Score: 1.5
Natty:
Report link

Ok, so here is the my answer to the question. I did not succeed to make diagram work with the beamer output (but the code is working with reealjs output, which was the original output). So at the end, this is what I did:

---
title: Test
author: 
  - John Due
format:
  beamer:
    pdf-engine: lualatex
    keep-tex: true
    header-includes:
      - \usepackage{tikz}
      - \usetikzlibrary{arrows.meta}
      - \tikzset{arrow/.style = {> = {Latex[length = 1.2mm]}}}
---

## Test
::: {.cell}

```{=latex}
\begin{tikzpicture}
  \node (i) at (0, 0) {i};
  \node (j) at (2, 0) {j};
  \draw[->, arrow] (i) -- (j);
\end{tikzpicture}
```

:::

Then, thanks to the comments of @SamR I could also fix the problems of nbformat and nbclient. Note that this was unrelated to the compilation problem of today (but I was also having problems with other documents...).

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @SamR
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mistral

79664919

Date: 2025-06-13 13:29:50
Score: 0.5
Natty:
Report link
SELECT Acct.Id, TransactionCode, COUNT (*) as Cnt 
From Account
WHERE Acct.Id NOT IN (SELECT Acct.Id FROM Account WHERE TransactionCode NOT IN ('Code3','Code4') GROUP BY Acct.Id)
Group by Acct.Id, TransactionCode
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: stevestevesteve

79664909

Date: 2025-06-13 13:21:48
Score: 6.5 🚩
Natty: 4
Report link

Have you try using worker logs in INFO and see there how to remove package versions to allow pip to attempt to solve the dependency conflict ?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve the dependency conflict ?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nicolas Gargano

79664900

Date: 2025-06-13 13:14:46
Score: 1.5
Natty:
Report link

enter image description here
You need to add the exact url route (absolute path) you used in your code, which handles the authorization callback functions in the Backend

Add this url http://localhost:3000/auth/linkedin/callback endpoint in the LinkedIn developer under Auth section
https://developer.linkedin.com/

Ref the MS docs: https://learn.microsoft.com/en-us/linkedin/shared/authentication/authorization-code-flow?tabs=HTTPS1#step-1-configure-your-application

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

79664899

Date: 2025-06-13 13:13:45
Score: 1
Natty:
Report link

You are getting this error because when you activate the persistence, the baseline doesn't adjust by itself anymore.

So the data you stored into your caches are lost when the only node in the baseline shutdown.

You need to enable the baselineAutoAdjustEnabled so that the node leaving or joining the cluster will enter/leave the baseline and share all the data of your cache.

You should also configure backup to your cache and set the mode to REPLICATED to be sure you won't lost data.

Hope it help

Reasons:
  • Whitelisted phrase (-1): Hope it help
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Julien