79173497

Date: 2024-11-09 19:05:37
Score: 4
Natty:
Report link

thnksssss overflow very good details

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

79173479

Date: 2024-11-09 18:58:33
Score: 7 🚩
Natty:
Report link

I have the same problem. It's make me so angry

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: AH Forootan

79173464

Date: 2024-11-09 18:48:29
Score: 6 🚩
Natty:
Report link

I need more context to figure this out. You said it is a Vite app, so I guess it is SPA with react. Can you tell me what your routes look like? (Is it using react-router-dom?). What about your backend are you using REST or Graphql?

On the http://localhost/F1-Hybrid-Data/f1-app I assume you are fetching data on the mount (or in route in loaders). Can you share your code? for routes and page handling or supposed to handle route F1-Hybrid-Data/f1-app?.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Can you tell me what your
  • RegEx Blacklisted phrase (2.5): Can you share your code
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: TRomesh

79173451

Date: 2024-11-09 18:40:26
Score: 4.5
Natty: 3
Report link

alvin lim alvin lim alvin lim alvin lim alvin lim

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

79173426

Date: 2024-11-09 18:25:21
Score: 6 🚩
Natty: 4.5
Report link

I have same problem , when i start project it is not happening . I don't know when it start , may be because I install some more npm packages , I am sure but this is very irritating . my project is not finish and every time i start it take too long .

Reasons:
  • Blacklisted phrase (1): I have same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jaimin Detroja

79173322

Date: 2024-11-09 17:32:08
Score: 5.5
Natty: 8
Report link

same timeerror in ray happened when i use ray.init() in python, and i have not find any solutions in web, i wonder if you have found any solutions to fix it, rencently, thx.

Reasons:
  • Blacklisted phrase (1): thx
  • Blacklisted phrase (1.5): any solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Macintosh Paul

79173270

Date: 2024-11-09 17:02:01
Score: 4
Natty:
Report link

How to save Macro as a VBA PPT Add in and use that Add In for running Macro in any PPT. Not to plug in VBA code each time.

i am testing a simple sub with MsgBox "Hello" and this macro ran fine as a ppt...So here is what I did

  1. Open PPT
  2. Add a new macro - with above MsgBox in VBA
  3. Close VBA
  4. File Save As abc.pptm
  5. Close it
  6. Reopen abc.pptm
  7. File Save as abc.ppam
  8. Open an existing ppt
  9. File Options Addins - select this abc.ppam
  10. Go to Developer Tab - I click on Power Point Add Ins - I see this abc in the popup as checked and selected
  11. Click on Macro button in Developer Tab - nothing.
  12. Press Alt F11 - no code there.

What am I doing wrong here?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Beginner for VBA Addin for PPT

79173268

Date: 2024-11-09 17:00:58
Score: 9 🚩
Natty: 4.5
Report link

I have the SQL 2022 (RTM-GDR) (KB5046057) and I have same error when trying to view audit log : Item has already been added.'MNDO' key being added : 'MNDO' Please help

Reasons:
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (1): I have same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have same error
  • Low reputation (1):
Posted by: farid amroun

79173225

Date: 2024-11-09 16:42:53
Score: 6.5 🚩
Natty: 5.5
Report link

I signed up just to ask if you solved it, because I have the same problem on the same config.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juwume

79173001

Date: 2024-11-09 14:46:26
Score: 10
Natty: 8
Report link

Any Solution found at this time?

Reasons:
  • Blacklisted phrase (1.5): Any Solution
  • RegEx Blacklisted phrase (2): Any Solution found at this time?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28212906

79172985

Date: 2024-11-09 14:41:24
Score: 5.5
Natty:
Report link

There is a GLTF file with animated camera and some moving parts and it works fine when the default camera is reassigned by glft.cameras[0] at GLTFLoader.load() and the initial model and camera positions are absolutely as it was designed in Blender.

enter image description here

camera = gltf.cameras[0].clone();
                     
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
camera.needsUpdate = true;

However, the task it to have an interactive OrbitControls mode allowing users to freely rotate/scale and move the platform while holding SHIFT key. And to do this, I’m re-initializing controls by this line at keydown event listener.

controls = new OrbitControls(camera, renderer.domElement);

And the model jumps to another position.

enter image description here

I have tried to play with camera.lookAt vector as well as controls.target, but it doesn’t help me. It seems that this issue occurs due to the difference between the origin coordinates in the GLTF and ThreeJS scene.

The working code is available here.

const URL = {
    name: '3non-sliding',
    prefix: 'assets/models/'
};

import * as THREE from 'three';

import { AnimationMixer } from 'three';

import { GLTFLoader } from 'three/addons/loaders/GLTFLoader.js';
import { OrbitControls } from 'three/addons/controls/OrbitControls.js';
import { DebugEnvironment } from 'three/addons/environments/DebugEnvironment.js';

let container, renderer, scene, camera, controls, group, gltf, mixer, freeMode = false, verify = true, clock = new THREE.Clock();

inits();

function inits() {

    container = document.createElement('div');
    document.body.appendChild(container);

    renderer = new THREE.WebGLRenderer({
        antialias: true
    });
    renderer.toneMapping = THREE.ACESFilmicToneMapping;
    renderer.setPixelRatio(window.devicePixelRatio);
    renderer.setSize(window.innerWidth, window.innerHeight);
    container.appendChild(renderer.domElement);

    camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 64);

    scene = new THREE.Scene();

    const loader = new THREE.TextureLoader();
    scene.background = loader.load('assets/checkboxGrey4x4.png');

    const pmremGenerator = new THREE.PMREMGenerator(renderer);
    pmremGenerator.compileCubemapShader();

    const generativeEnvironment = new DebugEnvironment(new THREE.Color(0xDDDDDD));

    scene.environment = pmremGenerator.fromScene(generativeEnvironment).texture;

    controls = new OrbitControls(camera, renderer.domElement);
    controls.enableDamping = true;
    controls.dampingFactor = 0.1;
    controls.enabled = false;

    const geometry = new THREE.SphereGeometry(0.25, 8, 8);
    const material = new THREE.MeshBasicMaterial({
        color: 0xFF00FF
    });
    const sphere = new THREE.Mesh(geometry, material);
    scene.add(sphere);

    const onProgress = function(xhr_) {

        if (xhr_.lengthComputable) {

            const percentComplete = xhr_.loaded / xhr_.total * 100;

            console.log(`${URL.name}.glb : ${percentComplete.toFixed( 2 )}%`);

        }

    };

    new GLTFLoader().setPath(URL.prefix).load(new URLSearchParams(window.location.search).get('id') != null ? `${new URLSearchParams(window.location.search).get('id')}.glb` : `${URL.name}.glb`, function(gltf_) {

        gltf = gltf_;

        mixer = new THREE.AnimationMixer(gltf.scene);

        scene.add(gltf.scene);

        camera = gltf.cameras[0].clone();

        camera.aspect = window.innerWidth / window.innerHeight;
        camera.updateProjectionMatrix();
        camera.needsUpdate = true;

    }, onProgress);

    window.addEventListener('resize', onWindowResize);

    document.addEventListener('keydown', (event_) => {

        if (event_.keyCode == 16 && verify) {

            freeMode = true;
            verify = false;
            controls.enabled = true;
            console.log('OrbitControls mode enabled');

            controls = new OrbitControls(camera, renderer.domElement);

        }

    });

    document.addEventListener('keyup', (event_) => {

        freeMode = false;
        verify = true;
        controls.enabled = false;
        console.log('OrbitControls mode disabled');


    });

    render();

}

function onWindowResize() {

    camera.aspect = window.innerWidth / window.innerHeight;
    camera.updateProjectionMatrix();

    renderer.setSize(window.innerWidth, window.innerHeight);

}

Any ideas why it's jumping and how to solve it?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): Any ideas
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (1.5): how to solve it?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: VVK

79172972

Date: 2024-11-09 14:34:22
Score: 5.5
Natty:
Report link

Thanks! I see that this code is working and it help's me to reduce the times of using useAutoAlgorithm to two times.

But can I reduce of using it to one time, for example by referring to the variable name in the right side of the code?

So don't want to write

useAutoAlgoritm = sec.get("useAutoAlgoritm")

But I want write something like

useAutoAlgoritm = sec.get(useAutoAlgoritm.getVariableName())

Can I do it?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Can I do
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jjqwe Jfjfbtuy

79172936

Date: 2024-11-09 14:11:17
Score: 5.5
Natty:
Report link

use this library which provides same function as smarteist-autoImageSlider https://github.com/antwhale/AntwhaleImageSlider

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: antwhale

79172899

Date: 2024-11-09 13:52:10
Score: 9.5 🚩
Natty:
Report link

i have a similar question. First, I want to save the decode text in a variable and Second, send that variable to another page (another script). The code is exactly the same as @neongmr.

thank in advance. @ricpar123

Reasons:
  • RegEx Blacklisted phrase (3): thank in advance
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i have a similar question
  • User mentioned (1): @neongmr
  • User mentioned (0): @ricpar123
  • Low reputation (1):
Posted by: Ricardo Caballero

79172869

Date: 2024-11-09 13:31:05
Score: 5
Natty:
Report link

Add C:\Program Files\PostgreSQL\'YOUR VERSION'\lib and C:\Program Files\PostgreSQL\'YOUR VERSION'\bin to your PATH. Restart PC. Run cargo clean. Run cargo build. Have same error on windows 10.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): Have same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: WeAreNotEternal

79172840

Date: 2024-11-09 13:15:00
Score: 4.5
Natty:
Report link

have anyone solved this problem, i have getting this same error

Reasons:
  • Blacklisted phrase (1): anyone solved
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sawan Kumar Chouhan

79172704

Date: 2024-11-09 12:07:45
Score: 8.5 🚩
Natty: 5.5
Report link

I have the same error. Help me

Reasons:
  • Blacklisted phrase (1): Help me
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trần Gia Ngọc Phú

79172688

Date: 2024-11-09 11:59:42
Score: 4
Natty:
Report link

enter image description here just like thie,define the transpiled circuit and use run replacing the execute

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

79172642

Date: 2024-11-09 11:32:36
Score: 4
Natty:
Report link

My version is Version 17.11.5 as being the latest version. Where ı can download 12 and above? For the other solution; How can we do your solution Sarah? I couldn't find it to do.

Reasons:
  • Blacklisted phrase (1): How can we
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: mustafa

79172580

Date: 2024-11-09 10:56:27
Score: 4
Natty:
Report link

mv[mv['title'].str.contains('toy',na=False,case=False)==True]

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

79172487

Date: 2024-11-09 09:53:12
Score: 4.5
Natty: 5
Report link

This works! Thank you online stranger!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shafiq Ramli

79172446

Date: 2024-11-09 09:30:06
Score: 5.5
Natty:
Report link
  1. Is it possible for an AWS Athena database to exist in one AWS account and its data files to live on another AWS Account?

A). Yes it is possible

  1. How do you know where an AWS Athena table data file lives? And does an S3 output bucket exist?

A. Go to the AWS Glue data catalog, go to a specific Table, and check "Location", which provides information on a file location.

  1. Is there a better approach to finding this problem's root cause other than the trial and error approach?

A. Run the query directly in the Athena console to check for errors. This step can often reveal if permissions or configurations are missing.

The other way is to check CloudTrail Logs and enable Verbose logging in AWS Wrangler to check the issues.

Please let me know any other information.

Reasons:
  • Blacklisted phrase (1): How do you
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Srinimf

79172437

Date: 2024-11-09 09:20:02
Score: 9.5 🚩
Natty: 5.5
Report link

I’m also encountering this error. Have you resolved it? If so, could you show me how?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you show me how
  • RegEx Blacklisted phrase (1.5): resolved it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Huy Kỳ Hà

79172324

Date: 2024-11-09 07:49:43
Score: 4
Natty:
Report link

It may be that A-Frame doesn't work with React out of the box? Mira esta respuesta:

https://stackoverflow.com/a/45443685/27857856

Let us know if it solves your problem.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mario Moreno Capón

79172285

Date: 2024-11-09 07:32:37
Score: 6.5 🚩
Natty: 5
Report link

I have the same problem here. I'm using UHD 4.7.0.0 install from UHD installer, boost 1.8.6, Visual Studio 2019.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tuấn Nguyễn Anh

79172271

Date: 2024-11-09 07:24:33
Score: 7.5 🚩
Natty:
Report link

The copilot on Android Studio doesn't show the option of different models, like you can do in VS Code where you can choose even Claude 3.5 now.

In Android Studio it doesn't even show what model is answering us in chat. What I'm missing? Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Cesar Ribera

79172234

Date: 2024-11-09 06:40:22
Score: 6.5 🚩
Natty:
Report link

I have the same problem, I think I will remove flutter cli from my project and configure firebase manually

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammet Emin Üstün

79172122

Date: 2024-11-09 04:43:57
Score: 6 🚩
Natty: 5.5
Report link

@asimkon did you end up resolving this? I ran into the exact same problem.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @asimkon
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Sam S

79172014

Date: 2024-11-09 02:41:30
Score: 8.5 🚩
Natty: 4
Report link

@NinjaS

After running the script fix:

create file path to swirl lesson file

file_path <- file.edit(file.path(find.package("swirl"),"Courses","R_Programming","Logic","lesson.yaml"))

url of my edited lesson file

file_url <- "https://raw.githubusercontent.com/daniel-j-miller/swirl_courses/master/R_Programming/Logic/lesson.yaml"

download and save file

download.file(file_url, file_path)

I still get an error: Error in download.file(file_url, file_path) : invalid 'destfile' argument

Any suggestions?

Reasons:
  • RegEx Blacklisted phrase (2): Any suggestions?
  • RegEx Blacklisted phrase (1): I still get an error
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @NinjaS
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Michael Zee

79171996

Date: 2024-11-09 02:18:24
Score: 9 🚩
Natty: 5.5
Report link

I got the same problem and still not solve yet. Do you have any update about this?

Reasons:
  • Blacklisted phrase (1): I got the same problem
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pha HOEUN

79171995

Date: 2024-11-09 02:16:23
Score: 4.5
Natty:
Report link

I think this way is much faster than setting new value in a useStateenter image description here

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

79171970

Date: 2024-11-09 01:46:16
Score: 4
Natty: 4
Report link

I was also on a long journey to find the answer to this question. In my case there was also filtering and paging involved. I distilled my experience in this article here.

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ozmerg

79171956

Date: 2024-11-09 01:34:14
Score: 4.5
Natty:
Report link

=LET(x,FILTER(A2:C13,A2:A13=E1,""), IF(ISBLANK(x),"",x)) https://i.sstatic.net/9nSoj2sK.png

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: 공공이ˇ

79171840

Date: 2024-11-08 23:39:51
Score: 4.5
Natty:
Report link

You can try:

type ZipObjectFunction = <T, K>(arr1: readonly T[], arr2: readonly K[]) => Object.fromEntries<Array<[T, K]>>

Will this solve the problem?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: KLASANGUI

79171745

Date: 2024-11-08 22:31:33
Score: 12 🚩
Natty:
Report link

Im having the exact same issue in production in AWS but with grails 4. What instance type do you have? or did you resolve it? how?

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve it
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the exact same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: hugoriar

79171593

Date: 2024-11-08 21:23:15
Score: 4
Natty:
Report link

For me, the answer was that add->NewItem defaulted to the xamarin content page even though I have a Maui app. Choosing Maui->Xaml->ContentPage then filling in the name I want worked.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28204301

79171569

Date: 2024-11-08 21:14:12
Score: 5
Natty: 4.5
Report link

Hmm...I have tried only_use_python_datetimes=True; alone and together with only_use_cftime_datetimes=False; still I get 'cftime._cftime.DatetimeGregorian' in return, istead of python DateTime. Windows, python 3.12, netCDF4 1.7.1.post2. (sorry - not sufficient reputation to comment).

Reasons:
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1.5): reputation to comment
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user165736

79171509

Date: 2024-11-08 20:48:06
Score: 7.5
Natty: 7.5
Report link

Yes, But how can we SAVE photos taken in Blazor TO the device's photo gallery?

Reasons:
  • Blacklisted phrase (1): how can we
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Kirk Barrett

79171498

Date: 2024-11-08 20:44:03
Score: 10.5 🚩
Natty: 5
Report link

Did you resolve this or not yet? I am facing the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you resolve this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Arun

79171358

Date: 2024-11-08 19:44:47
Score: 5.5
Natty:
Report link

enter image description here

Download in Android Studio

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Stojan Gašić Brieva

79171346

Date: 2024-11-08 19:40:45
Score: 5.5
Natty: 5.5
Report link

Any way to do this on MACOS excel that can't use MSXML?

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

79171326

Date: 2024-11-08 19:32:41
Score: 7 🚩
Natty: 6.5
Report link

in the back of my mind, to build a DIY Book Scanner as well. I've seen many commercial models but they are all limited to A3 format (or extremely expensive). Did you manage to complete yours? Mind to share some details? Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): Did you manage to
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Federico

79171262

Date: 2024-11-08 19:07:33
Score: 5.5
Natty:
Report link

I am facing the same issue. Can not see lldb-vscode in debugger option. Any support would help.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: vineet yagnik

79171218

Date: 2024-11-08 18:50:26
Score: 7 🚩
Natty: 4.5
Report link

very good. work fine with WIN 11, Visual Studio 2022 , vb windows form. do you have an update specific for win11?

Reasons:
  • RegEx Blacklisted phrase (2.5): do you have an
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Massimo GIAMMATTEI

79171199

Date: 2024-11-08 18:43:23
Score: 4.5
Natty: 4
Report link

nah, just ignore it maaan, it's fine

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

79171193

Date: 2024-11-08 18:40:20
Score: 10.5 🚩
Natty: 6.5
Report link

were you able to solve this ? I am stuck in a similar situation where i can see the audio buffer in the backend getting transmitted to aws transcribe but getting empty results array.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (1.5): solve this ?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sarthak

79171140

Date: 2024-11-08 18:15:12
Score: 4
Natty: 5
Report link

I would like to know how I can insert a curly bracket in a legend to gather the data in specific categories. Something like:

Reasons:
  • Blacklisted phrase (1.5): I would like to know
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Fiore

79171057

Date: 2024-11-08 17:47:03
Score: 5.5
Natty:
Report link

I have followed the steps to the dot. But I am getting Address not found error. How did you create the connections using service principal? enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mohtasim Mapkar

79170920

Date: 2024-11-08 16:57:49
Score: 5
Natty:
Report link

As @MatsLindh said in the comments, the problem was due to the UTF-8 BOM and was solved by simply removing it.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @MatsLindh
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jonathan Gómez Pérez

79170911

Date: 2024-11-08 16:51:44
Score: 10.5 🚩
Natty:
Report link

how could you solve it?

I try to solve it using this post

https://learn.microsoft.com/en-us/sql/relational-databases/security/authentication-access/azure-ad-authentication-sql-server-linked-server?view=sql-server-ver16

Authentication with Microsoft Entra Password, Without success

enter image description here

I'm using this prvider string = "Server=<"enviromentname".crm4.dynamics.com,1433>;Authentication=ActiveDirectoryPassword" enter image description here

enter image description here

enter image description here

I am exhausting all options before using CData, but I download the free trial and test it success

If you have news about solutions, please tell me.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (2): could you solve
  • RegEx Blacklisted phrase (2.5): please tell me
  • RegEx Blacklisted phrase (1.5): solve it?
  • Probably link only (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how
  • Low reputation (1):
Posted by: Diego Mesa

79170896

Date: 2024-11-08 16:47:41
Score: 11 🚩
Natty:
Report link

I'm having the same issue, any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: GSFZamai

79170862

Date: 2024-11-08 16:35:35
Score: 7.5 🚩
Natty: 3.5
Report link

Did you ever solve this @human.io

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever solve this
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: GCN Controller

79170745

Date: 2024-11-08 16:03:24
Score: 4.5
Natty: 5
Report link

same issue with nextjs v15. clear cache does not work.

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Henry Zhang

79170717

Date: 2024-11-08 15:56:22
Score: 4
Natty:
Report link

Evidence main branch:

Image not loading

Download not working

Same "getAnexoFile" method

Same "descargarAnexo" method

Same HTML BLADE

Finally, same disk config: Same filesystem.php

I will continue looking for the solution, but if anyone has an idea I will thank them very much =)

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

79170708

Date: 2024-11-08 15:52:21
Score: 4
Natty: 5
Report link

For bundle pages like: https://store.steampowered.com/bundle/45867/Hogwarts_Legacy__Harry_Potter_Quidditch_Champions_Deluxe_Editions_Bundle/

You can use: https://store.steampowered.com/actions/ajaxresolvebundles?bundleids=45867&cc=UA&l=english

API endpoing details: https://github.com/Revadike/InternalSteamWebAPI/wiki/Resolve-Bundles

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

79170646

Date: 2024-11-08 15:36:16
Score: 4
Natty:
Report link

Interaction casters have a Filtering Settings section where you can change the Raycast Mask: enter image description here

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

79170627

Date: 2024-11-08 15:31:14
Score: 6
Natty: 9
Report link

What if you cin with, say, 2000 for trm and 8 for bs? It only works for 2 digit numbers, and has eights and nines in the hundred's, thousand's and so on place values. How can I change it to accommodate for all place values?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if you
  • Low reputation (1):
Posted by: user28200127

79170576

Date: 2024-11-08 15:16:08
Score: 4
Natty:
Report link

Just wanted to pop by to say that I did eventually come up with a solution in case anyone stumbles upon this thread having the same issue. I'm not sure that the non-pickleability of the dataset applies to all TF datasets, but since in this case it was relevant, that is what needed to be addressed (or worked around).

What I did was put the TFRecord files on distributed storage (UC Volume in this case) and then instantiate the TF dataset object inside the objective function. I imagine in some cases there could be some overhead there, but even with an image dataset of about 8k images, that took well less than a second, so it was fine. That also tends to be approach for any other objects that won't pickle (which did end up being the case after getting the dataset thing sorted); just build it inside the objective function. That can be the dataset from objects on distributed storage, it can be the model itself, or it can be anything really.

This might be a totally basic "duh" answer to folks in the know, but it was my first time trying to actually leverage the power of a Spark cluster, so I was definitely in over my head and could've used the insight. Maybe someone else will be in the same boat and will benefit from this answer as well. Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: snakeeyes021

79170510

Date: 2024-11-08 14:57:01
Score: 9.5 🚩
Natty: 4
Report link

did u find an solution? i'm having the same issue

Reasons:
  • RegEx Blacklisted phrase (3): did u find an solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i'm having the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: oumayma messaoudi

79170462

Date: 2024-11-08 14:47:57
Score: 5.5
Natty: 5
Report link

@SScotti did you have to make any code changes? Trying to understand if the resolution was on your side or the eClinicalWorks side.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @SScotti
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Dan Bonistalli

79170447

Date: 2024-11-08 14:40:55
Score: 5.5
Natty:
Report link

Is there a flavour of markdown that supports that?

Yes: markdown-it mostly does (as https://github.com/11ty/eleventy/issues/2438#issue-1271419451 well explains).

How do I do that?

markdownit().disable('code')
Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is there a
  • Low reputation (0.5):
Posted by: RokeJulianLockhart

79170283

Date: 2024-11-08 13:50:40
Score: 17
Natty: 7
Report link

Did you manage to solve it? I have the same problem on iOS with React Native when using react-native-nfc-manager. Any solution?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): Any solution
  • RegEx Blacklisted phrase (3): Did you manage to solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (2): Any solution?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Ailton Aires

79170175

Date: 2024-11-08 13:21:32
Score: 4
Natty:
Report link

enter image description here

I found that 'index.pdf' is coming from the title as you mentioned, but I don’t know how to modify it because this is a popup opened by the Edge browser. –

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Resul Bekir Şahin

79170110

Date: 2024-11-08 12:59:24
Score: 8.5 🚩
Natty: 5.5
Report link

i am actually stuck with the same situation, did you find its solution?

Reasons:
  • RegEx Blacklisted phrase (3): did you find
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mubariz Ali

79170082

Date: 2024-11-08 12:46:19
Score: 7 🚩
Natty: 4
Report link

I don't have the source code for the project but my server got crashed. Now I have changed the server and I got this server error in the new server.

<%@ control language="vb" autoeventwireup="false" inherits="MSFB.Header, App_Web_s7kv-y21" %>

What should I do now?

Reasons:
  • Blacklisted phrase (2): What should I do
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: MohanTech

79169991

Date: 2024-11-08 12:18:08
Score: 6 🚩
Natty:
Report link

Im not 100% sure but last time I have similar problem I do this:

Download snap7 https://sourceforge.net/projects/snap7/ Copy the dll on you win32 and when run it will recognize it

Reasons:
  • Blacklisted phrase (1): I have similar
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have similar problem
  • Low reputation (1):
Posted by: Alberttorm9

79169961

Date: 2024-11-08 12:11:05
Score: 4
Natty: 4.5
Report link

If you want cli, this is here.

https://crates.io/crates/vsixHarvester

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

79169957

Date: 2024-11-08 12:10:02
Score: 12.5 🚩
Natty:
Report link

@Sufyan can you please tell me what changes you have made in pdfjs code in asset folder. I am facing similar issue. Also please let me know version of pdfjs you are using currently. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): can you please tell me what
  • RegEx Blacklisted phrase (2.5): please let me know
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing similar issue
  • User mentioned (1): @Sufyan
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Syed Saif Ali

79169934

Date: 2024-11-08 12:00:59
Score: 4.5
Natty:
Report link

I have java-23 jdk installed in my ubuntu 24 but I am still getting this error. It occurs as soon as I open my vscode

Reasons:
  • RegEx Blacklisted phrase (1): I am still getting this error
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: berxo

79169913

Date: 2024-11-08 11:54:54
Score: 6 🚩
Natty:
Report link

Could you provide some example how to do that in df.write...saveAsTable

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide some
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tanmay Gupta

79169910

Date: 2024-11-08 11:54:54
Score: 5.5
Natty:
Report link

How much clock speed and how many cores does your processor have? And how much operational memory does your computer have?

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

79169836

Date: 2024-11-08 11:33:46
Score: 10.5 🚩
Natty: 6
Report link

I have the same problem, have you solved it somehow? It's just inconvenient to output to the terminal

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it somehow?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Мак вин

79169801

Date: 2024-11-08 11:22:43
Score: 4.5
Natty:
Report link

If I want to integrate the mail is this the correct way or if it needs modification, can you please guide me

Connect-AzAccount

# Initialize an empty array to store the results
$expirationDetails = @()

# Get all subscriptions
$subscriptions = Get-AzSubscription

# Loop through each subscription
foreach ($subscription in $subscriptions) {
    # Set the context to the current subscription
    Set-AzContext -SubscriptionId $subscription.Id

    # Get all Key Vaults in the current subscription
    $kvnames = Get-AzKeyVault

    foreach ($kvitem in $kvnames) {
        # Get Key Vault secrets, keys, and certificates
        $secrets = Get-AzKeyVaultSecret -VaultName $kvitem.VaultName
        $keys = Get-AzKeyVaultKey -VaultName $kvitem.VaultName
        $certificates = Get-AzKeyVaultCertificate -VaultName $kvitem.VaultName

        # Function to check expiration date and return the expiration DateTime or null for missing values
        function Check-Expiration($expiryDate) {
            if ($expiryDate) {
                return [datetime]$expiryDate  # Return the DateTime object if expiration date exists
            }
            return $null  # Return null if expiration date is missing
        }

        # Function to calculate remaining days
        function Get-RemainingDays($expiryDate) {
            if ($expiryDate -ne $null) {
                $remainingDays = ($expiryDate - (Get-Date)).Days
                return $remainingDays
            }
            return $null  # Return null if no expiration date
        }

        # Process secrets
        foreach ($secret in $secrets) {
            $expirationDate = Check-Expiration $secret.Expires
            $remainingDays = Get-RemainingDays $expirationDate

            if ($expirationDate -ne $null) {
                $formattedExpirationDate = $expirationDate.ToString("MM/dd/yyyy HH:mm:ss")
            } else {
                $formattedExpirationDate = ""  # Empty string for null expiration dates
            }

            # Only include items expiring within the next 7 days
            if ($remainingDays -le 7 -and $remainingDays -ge 0) {
                $expirationDetails += [PSCustomObject]@{
                    SubscriptionName  = $subscription.Name
                    ResourceGroupName = $kvitem.ResourceGroupName
                    ResourceName      = $kvitem.VaultName  # Key Vault name
                    ObjectName        = $secret.Name        # Name of the secret
                    ObjectCategory    = "Secret"            # Category for KeyVault secret
                    ExpirationDate    = $formattedExpirationDate  # Formatted expiration date
                    ExpiresIn         = $remainingDays     # Remaining days until expiration
                }
            }
        }

        # Process keys
        foreach ($key in $keys) {
            $expirationDate = Check-Expiration $key.Attributes.Expires
            $remainingDays = Get-RemainingDays $expirationDate

            if ($expirationDate -ne $null) {
                $formattedExpirationDate = $expirationDate.ToString("MM/dd/yyyy HH:mm:ss")
            } else {
                $formattedExpirationDate = ""  # Empty string for null expiration dates
            }

            # Only include items expiring within the next 7 days
            if ($remainingDays -le 7 -and $remainingDays -ge 0) {
                $expirationDetails += [PSCustomObject]@{
                    SubscriptionName  = $subscription.Name
                    ResourceGroupName = $kvitem.ResourceGroupName
                    ResourceName      = $kvitem.VaultName  # Key Vault name
                    ObjectName        = $key.Name           # Name of the key
                    ObjectCategory    = "Key"               # Category for KeyVault key
                    ExpirationDate    = $formattedExpirationDate  # Formatted expiration date
                    ExpiresIn         = $remainingDays     # Remaining days until expiration
                }
            }
        }

        # Process certificates
        foreach ($certificate in $certificates) {
            $expirationDate = Check-Expiration $certificate.Attributes.Expires
            $remainingDays = Get-RemainingDays $expirationDate

            if ($expirationDate -ne $null) {
                $formattedExpirationDate = $expirationDate.ToString("MM/dd/yyyy HH:mm:ss")
            } else {
                $formattedExpirationDate = ""  # Empty string for null expiration dates
            }

            # Only include items expiring within the next 7 days
            if ($remainingDays -le 7 -and $remainingDays -ge 0) {
                $expirationDetails += [PSCustomObject]@{
                    SubscriptionName  = $subscription.Name
                    ResourceGroupName = $kvitem.ResourceGroupName
                    ResourceName      = $kvitem.VaultName  # Key Vault name
                    ObjectName        = $certificate.Name  # Name of the certificate
                    ObjectCategory    = "Certificate"       # Category for KeyVault certificate
                    ExpirationDate    = $formattedExpirationDate  # Formatted expiration date
                    ExpiresIn         = $remainingDays     # Remaining days until expiratio
                }
            }
        }
    }
}

# Optionally, display the results on the screen
$expirationDetails | Format-Table -Property SubscriptionName, ResourceGroupName, ResourceName, ObjectName, ObjectCategory, ExpirationDate, ExpiresIn

project vaultUri
"@
$result = Search-AzGraph -Query $query

$pwd = ConvertTo-SecureString 'mailtopassword' -AsPlainText -Force
$CredSmtp = New-Object System.Management.Automation.PSCredential ('mail from', $password)$pwd = ConvertTo-SecureString 'mailfrompassword' -AsPlainText -Force
$CredSmtp = New-Object System.Management.Automation.PSCredential ('mail to', $pwd)
$FromMail = "@gmail.com"
$MailTo = "@outlook.com"
$Username = $CredSmtp.UserName
$Password = $CredSmtp.Password
$SmtpServer = "smtp.office365.com"
$Port = 587
$Message = New-Object System.Net.Mail.MailMessage $FromMail, $MailTo
$MessageSubject = "Sending Automation results"
$Message.IsBodyHTML = $true
$Message.Subject = $MessageSubject
$Smtp = New-Object Net.Mail.SmtpClient($SmtpServer, $Port)
$Smtp.EnableSsl = $true
$Smtp.Credentials = New-Object System.Net.NetworkCredential($Username, $Password)
$Smtp.Send($Message)
Reasons:
  • Blacklisted phrase (1): guide me
  • RegEx Blacklisted phrase (2.5): can you please guide me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Manju S

79169762

Date: 2024-11-08 11:09:40
Score: 4.5
Natty: 5
Report link

There is an unoffical Azure App Configuration emulator availaible here https://github.com/tnc1997/azure-app-configuration-emulator

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

79169722

Date: 2024-11-08 10:57:35
Score: 4.5
Natty:
Report link

here is a small working example. enter image description here

enter image description here

enter image description here

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

79169719

Date: 2024-11-08 10:56:34
Score: 9
Natty: 7.5
Report link

Did you solve the problem with mentioning someone in groups?

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve the problem
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you solve the
  • Low reputation (1):
Posted by: Alexis Freitas Barboza

79169653

Date: 2024-11-08 10:38:29
Score: 4.5
Natty:
Report link

selectsRange={viewMode === 'date'}

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

79169648

Date: 2024-11-08 10:37:29
Score: 4
Natty: 4
Report link

Try and modify your code by adding a + or - sign to the grade like c+ or B-.

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

79169610

Date: 2024-11-08 10:25:25
Score: 4
Natty:
Report link

@Ming if I can't reproduce a problem as stated (he said he had a problem not seeing hello output) that means there's no problem as I see it, I ran his code and it ran fine .. hope that's explicit enough :).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Ming
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Goran B.

79169607

Date: 2024-11-08 10:24:22
Score: 6.5 🚩
Natty:
Report link

I tried the Min health at 50% and max Health and 200%. But for 1 task instance it's still not working. the older task does not stop till i manually stop it. It works for 0 and 100% healths but this causes downtime. Is there a way to prevent this or will I have to use dynamic port mapping and incur the cost of a load balancer?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Blacklisted phrase (2): still not working
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: harjas sodhi

79169594

Date: 2024-11-08 10:21:20
Score: 5
Natty:
Report link

So, I just followed step by step this guide and now it works perfectly

Reasons:
  • Blacklisted phrase (1): this guide
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alextti

79169499

Date: 2024-11-08 09:50:12
Score: 4.5
Natty:
Report link

If you think you've set up everything correctly and it still doesn't work

try to close and reopen Postman

Reasons:
  • RegEx Blacklisted phrase (2): it still doesn't work
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Meta

79169323

Date: 2024-11-08 08:45:56
Score: 4.5
Natty: 4
Report link

The answer shown above seems very good.

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

79169238

Date: 2024-11-08 08:06:45
Score: 4.5
Natty: 5
Report link

With minimum master nodes set at 1, after a split brain situation, when connectivity is established back, the nodes didn't attempt to form a cluster, but remains as 2 seperate nodes and acts as master. Any reason why this may be the cause?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28193739

79169224

Date: 2024-11-08 07:59:43
Score: 4
Natty: 4.5
Report link

It´s great that you guys managed to pluck together 2 moving boxes from built-in functionality. Does anyone know of a professional library for the purpose of drag n´drop, move, resize with handles etc.

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Patrik Forsberg

79169223

Date: 2024-11-08 07:58:41
Score: 10.5 🚩
Natty: 6
Report link

I encountered the exact same problem as you. How did you resolve it?

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve it
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28193638

79169217

Date: 2024-11-08 07:55:40
Score: 5
Natty:
Report link

Getting your account suspended can feel like a slap in the face. It’s frustrating and confusing. You might be wondering why it happened and what steps to take next. Don’t worry; you’re not alone in this. Many people face similar issues including myself luckily i got recommended to anthony he's a meta employee and very good. you can reach out to him [email protected]

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): face similar issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: liza

79169189

Date: 2024-11-08 07:50:38
Score: 4.5
Natty:
Report link

Custom element in origin trial. Ref: https://developer.chrome.com/blog/permission-element-origin-trial

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

79169187

Date: 2024-11-08 07:49:37
Score: 4
Natty:
Report link

am facing the same with playSoundFileNamed , that is no sound after phone call with SKAction.playSoundFileNamed.

After testing a bit, i found that minimizing the app and coming back, doing this twice returns the audio. Or locking and unlocking the phone twice returns back as well.

I was wondering what is happening with the AVAudiosession or audioengine that doing the minimize/maximize app twice resolves this. Was looking at category, mode change of AVAudioSession during the process, it remains the same. Only thing is audioengine is not running when we recieve the phone call for like 10 frames but then it starts running automatically after and with no sound on playsoundfilenamed.

What can we do in handle interruptions such that when it ends, we get the same thing that is happening on 2nd minimize, maximize. I was going to comment but stack overflow needs 50 reps for that.

Reasons:
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (2): was wondering
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kunal Verma

79169174

Date: 2024-11-08 07:44:36
Score: 13.5
Natty: 7.5
Report link

I have a similar problem. Did you ever find a way to solve yours?

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • RegEx Blacklisted phrase (3): Did you ever find a way to solve your
  • RegEx Blacklisted phrase (1.5): solve yours?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: bea

79169149

Date: 2024-11-08 07:32:30
Score: 6.5 🚩
Natty: 4
Report link

how to do this in efs ? I'm using efs storage class and facing same issue

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: Meet Soni

79169142

Date: 2024-11-08 07:30:27
Score: 6.5 🚩
Natty: 5.5
Report link

Did you make it work with JAVA 11?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Rahaman Khan

79169114

Date: 2024-11-08 07:18:22
Score: 6 🚩
Natty:
Report link

Did you created the global.css file as in the docs?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Dennis N J

79169089

Date: 2024-11-08 07:09:17
Score: 6 🚩
Natty:
Report link

I am facing the same issue. Share the solution if you have solved this issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muskan Verma

79169074

Date: 2024-11-08 07:02:13
Score: 6.5 🚩
Natty:
Report link

I am also facing this problem now, have you solved it

Reasons:
  • Blacklisted phrase (2): have you solved it
  • Blacklisted phrase (1): also facing this
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28192685

79169050

Date: 2024-11-08 06:50:09
Score: 5.5
Natty: 3
Report link

"php": "^7.3|^8.1",

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (1):
  • Low reputation (1):
Posted by: Er-KRISHAN MOHAN PANDEY

79169008

Date: 2024-11-08 06:29:02
Score: 6.5 🚩
Natty: 4
Report link

Is this even possible to achieve? I’m facing the same issue and can’t seem to find any working example or relevant answer to a similar question.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: Samir K

79168911

Date: 2024-11-08 05:35:48
Score: 8.5 🚩
Natty:
Report link

the download link for the Impersonator class on the site that is opened with the link from post #2 (https://www.codeproject.com/Articles/10090/A-small-C-Class-for-impersonating-a-User) is not working. I would like to use this class in one of my C# projects on Windows as I have to connect to a SQL Server with a different AD user than the logged in one.

Does anybody has a link where I can download this class or send it to me via E-Mail? That would be very helpful for me.

Many thanks in advance.

Frank

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): thanks in advance
  • RegEx Blacklisted phrase (3): Does anybody has a link
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Franklin

79168864

Date: 2024-11-08 05:09:41
Score: 4.5
Natty: 6
Report link

this is not an answer. but were you successful setting up the database? my head is exploding right now.

Reasons:
  • Blacklisted phrase (1): not an answer
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: amir rahmani

79168841

Date: 2024-11-08 04:49:38
Score: 4.5
Natty:
Report link

######ABOVE######

Nailed it!

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: BoomerangBigBobbyBonerfield