79488539

Date: 2025-03-06 07:25:48
Score: 1.5
Natty:
Report link

According to https://github.com/ansible/ansible-lint/issues/1780

I think it's a better idea.

- name: Check if git lfs is installed
  community.general.git_config:
    list_all: true
    scope: global
  register: git_global_config

- name: Setup Git LFS
  ansible.builtin.command: git lfs install
  when: "'filter.lfs.required' not in git_global_config.config_values"
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zouper Zou

79488535

Date: 2025-03-06 07:22:47
Score: 3
Natty:
Report link

Apache doris is an olap database supporting inverted index, so users can use Apache doris as a good alternative for elasticsearch with join capability.

https://doris.apache.org/blog/log-analysis-elasticsearch-vs-apache-doris

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

79488524

Date: 2025-03-06 07:15:46
Score: 2.5
Natty:
Report link

tracert 192.168.11.223

Tracing route to TENSEBUSTER2 [192.168.11.223] over a maximum of 30 hops:

1 2 ms <1 ms 1 ms TENSEBUSTER2 [192.168.11.223]

Trace complete.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mnuel Harry Joseph

79488522

Date: 2025-03-06 07:15:46
Score: 1
Natty:
Report link

Like Laurie Young mentioned, you need bigger models of Llama. I took thought it was Langgraph that was inconsistent. Rewrote my application without Langgraph in python. No use. Llama 1B is the issue here. It can either use LLM or it can use tools. It cannot combine both. The fix is to use a better model.

It took a few days of breaking my head and testing with python/Pydantic and extensive online search and testing with ChatGPT to realize that Llama is the issue. I wish Meta had better documentation on this. Its appalling that they did not mention this anywhere on their documentation. What a waste of my time! I have decided to give up on Llama and stick to ChatGPT just because how unhelpful the documentation is. ChatGPT saves a lot of time, community is bigger and their models are just better. The only downside is the amount of space required. But nobody can put a price on time wasted on a model which is so far behind ChatGPT.

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

79488507

Date: 2025-03-06 07:06:44
Score: 1
Natty:
Report link

Not sure if binance provides these metrics via API for copy trading portfolio. But, they do support trading for copy trading account via APIs. so there's chance you can get the mertrics as well.

To be able to leverage APIs for lead copy trading, you need to create the APIs keys from the interface of your lead spot/future copy trading account, not from the normal spot/future account. Following are the resources to consider.

FAQs: https://www.binance.com/en/support/faq/detail/6ed0995daf0b42d5816beaf1e31ca09d

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

79488504

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

instead of concatMap, i'd suggest instead concat. combine concat with toArray

syntax as follow:

const arrOfObservable = elementsList.map(elem => this.simpleFunc(elem))
concat(...arrOfObservable).pipe(toArray()).subscribe()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: aii-yin

79488500

Date: 2025-03-06 07:05:44
Score: 2
Natty:
Report link

Steps to fix the issue

  1. Go to System Settings by clicking apple icon
  2. Then go to Privacy & Security
  3. Select Full Disk Access from right menu
  4. Click on + icon
  5. Enter password and select Applications from left menu
  6. Then select Sequel Ace from applications list
  7. Quit and reopen Sequel Ace
  8. Export sql dump
  9. Change path then select downloads
  10. Create new folder with desired name (eg. sql-dump)
  11. Select that folder, it will add the path in Sequel ACE

Enjoy coding

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

79488494

Date: 2025-03-06 07:01:43
Score: 0.5
Natty:
Report link

When using Ed25519 keys, you do not specify a digest (e.g., "sha256") in Node.js. Instead of creating a Sign object with createSign("ed25519"), you simply call crypto.sign() directly, passing null for the digest and the raw data as a Buffer. For example:

const { sign } = require('crypto');

function signDataWithEd25519(privateKey, data) {
  // For Ed25519, the first argument (digest) must be null
  return sign(null, Buffer.from(data), privateKey);
}
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Fredrick M T Pardosi

79488492

Date: 2025-03-06 07:01:42
Score: 5.5
Natty:
Report link

You can visit my source code here: https://github.com/HiImLawtSimp1e/EShopMicroservices/tree/main/src

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Quang Hưng Nguyễn

79488489

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

Thank you guys so much editing my post to make it more readable! This is my first time posting, I learned a lot from this.

It's for 32bit, and yes stdcall is used. here are the codes.

[StructLayout(LayoutKind.Sequential, Pack = 4, CharSet = CharSet.Unicode)]
    public class COSERVERINFO : IDisposable
    {
        internal COSERVERINFO(string srvname, IntPtr authinf)
        {
            servername = srvname;
            authinfo = authinf;
        }

#pragma warning disable 0649
        internal int reserved1;
#pragma warning restore 0649
        [MarshalAs(UnmanagedType.LPWStr)]
        internal string servername;
        internal IntPtr authinfo;                // COAUTHINFO*
#pragma warning disable 0649
        internal int reserved2;
#pragma warning restore 0649
        void IDisposable.Dispose()
        {
            authinfo = IntPtr.Zero;
            GC.SuppressFinalize(this);
        }
        ~COSERVERINFO()
        {
        }
    }

    [StructLayout(LayoutKind.Sequential, Pack = 4)]
    public struct MULTI_QI : IDisposable
    {
        internal MULTI_QI(IntPtr pid)
        {
            piid = pid;
            pItf = IntPtr.Zero;
            hr = 0;
        }

        internal IntPtr piid;        // 'Guid' can't be marshaled to GUID* here? use IntPtr buffer trick instead
        internal IntPtr pItf;
        internal int hr;

        void IDisposable.Dispose()
        {
            if (pItf != IntPtr.Zero)
            {
                Marshal.Release(pItf);
                pItf = IntPtr.Zero;
            }
            if (piid != IntPtr.Zero)
            {
                Marshal.FreeCoTaskMem(piid);
                piid = IntPtr.Zero;
            }
            GC.SuppressFinalize(this);

        }
    }

[UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Unicode, SetLastError = true)]
delegate int CoCreateInstanceExDelegate(
   ref Guid clsid,
   IntPtr punkOuter,
   int dwClsCtx,
   [In, Out] COSERVERINFO pServerInfo,
   int dwCount,
   [In, Out] MULTI_QI[] pResults);

static IntPtr _originalCoCreateInstanceExPtr;
static CoCreateInstanceExDelegate _originalCoCreateInstanceEx;

And this is the code for EasyHook IEntryPoint Run method.

    public void Run(RemoteHooking.IContext context)
    {
        _originalCoCreateInstanceExPtr = GetProcAddress(GetModuleHandle("ole32.dll"), "CoCreateInstanceEx");
        _originalCoCreateInstanceEx = Marshal.GetDelegateForFunctionPointer<CoCreateInstanceExDelegate>(_originalCoCreateInstanceExPtr);

        var hook = LocalHook.Create(
            _originalCoCreateInstanceExPtr,
            new CoCreateInstanceExDelegate(HookedCoCreateInstanceEx),
            null);

        hook.ThreadACL.SetExclusiveACL(new int[] { 0 });

        RemoteHooking.WakeUpProcess();

        while (true)
        {
            System.Threading.Thread.Sleep(1000);
        }
    }

and I got weird parameters in HookedCoCreateInstanceEx

static int HookedCoCreateInstanceEx(
   ref Guid clsid,
   IntPtr punkOuter,
   int dwClsCtx,
   [In, Out] COSERVERINFO pServerInfo,
   int dwCount,
   [In, Out] MULTI_QI[] pResults)
{
    // Call original CoCreateInstanceEx
    int hr = _originalCoCreateInstanceEx(ref clsid, punkOuter, dwClsCtx, pServerInfo, dwCount, pResults);

    if (hr == 0) // S_OK
    {
        // Do something else
    }

    return hr;
}

I tried to increase the pResults array size to the length of dwCount, and put the interface identify I need to hook like:

pResults= new MULTI_QI[dwCount];

Guid iid = new Guid("322D5097-61CC-4984-9215-791FC75E137E");
for (int i = 0; i < dwCount; i++)
{
    pResults[i] = new    MULTI_QI(Marshal.AllocCoTaskMem(Marshal.SizeOf(iid)));
    Marshal.StructureToPtr(iid, pResults[i].piid, false);
}

hr = 0 with this but apparently this crashed the VB6 program.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: StackOverflowUser

79488486

Date: 2025-03-06 06:58:42
Score: 2
Natty:
Report link

I also got the same issue after doing pub upgrade of old project. Going to previous version of code will work that was without pub upgrade. So, my suggestion is to not to do pub upgrade unless it is necessary.

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

79488485

Date: 2025-03-06 06:56:41
Score: 2
Natty:
Report link

The best solution came from GitHub: https://github.com/lokesh/lightbox2/issues/172#issuecomment-228747592

#lightboxOverlay { position: fixed !important; top: 0; left: 0; height: 100% !important; width: 100% !important; }

#lightbox { position: fixed !important; top: 50% !important; transform: translateY(-50%); }

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

79488483

Date: 2025-03-06 06:55:41
Score: 0.5
Natty:
Report link

In bootstrap4 you can use g-* (change number instead *) class in row container. It will add grid gutter space. And If you switch to bootstrap5 there is a gap-* class you can use.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Md Mahmud Hasan

79488476

Date: 2025-03-06 06:52:40
Score: 3.5
Natty:
Report link

What you had above definitely worked.

temp1 = temp1[:,[0,6]]

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

79488473

Date: 2025-03-06 06:51:40
Score: 1.5
Natty:
Report link
  1. Is @param.context("ctx") a valid decorator in Indie v4**+**?

No, there is not

  1. If ctx doesn't need to be declared, how do I pass it correctly?

In Indie >= v4 you do not have to pass it directly. Instead you should use self.ctx, where self - is a reference to Main class (or any other Context).

  1. Is there another way to define context-based parameters in Indie?

No, and... you should not need this. A context is an abstraction of a trading instrument (a dataset of candles in other words). If you need additional instruments (i.e. Contexts) you should use Context.calc_on method.

Reasons:
  • Blacklisted phrase (1): how do I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vitaly Volkov

79488470

Date: 2025-03-06 06:50:39
Score: 4
Natty:
Report link

Currently, TensorFlow does not officially support Python 3.12. You should use Python versions 3.8 to 3.11 instead. Refer to the official Python documentation to install a compatible version (3.8 to 3.11)

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: Jenny

79488469

Date: 2025-03-06 06:49:39
Score: 4
Natty: 4
Report link

Does anyone here know if there is a way to get the path to the current workspace storage directory in a launch configuration or a task?

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

79488466

Date: 2025-03-06 06:48:38
Score: 2
Natty:
Report link
  1. close androidStudo and rm .idea/, restart;
  2. invalidate Caches;
  3. annotate the reference native lib in settings.gradle & app's build.gradle, sync, then reopen it and sync again.
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: allan

79488444

Date: 2025-03-06 06:38:37
Score: 1
Natty:
Report link

Following transformation helped:

val renamedDf = backfillDf.withColumnRenamed("pf", "data").withColumnRenamed("cid", "profileId")

val cstColsSeq = renamedDf.columns.filter(c => c.endsWith("data")).map(f => { col(f) }).toSeq
var cstMapCol: Column = org.apache.spark.sql.functions.struct(cstColsSeq: _*)
renamedDf.withColumn("profile", cstMapCol).drop("data").printSchema
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sadhna Jain

79488431

Date: 2025-03-06 06:30:35
Score: 3
Natty:
Report link

select ssn from downloads where sum(time)= (select max(sum(time)) from downloads);

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

79488425

Date: 2025-03-06 06:26:35
Score: 1.5
Natty:
Report link
  1. Select the data in the row that you want to transpose.
  2. Copy the data (press Ctrl + C or right-click and select Copy).
  3. Select the destination cell where you want the transposed data to appear.
  4. Right-click on the destination cell and choose Paste Special.
  5. In the Paste Special dialog box, check the Transpose option at the bottom.
  6. Click OK.

Your row data will now be pasted as a column.

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

79488405

Date: 2025-03-06 06:11:32
Score: 3.5
Natty:
Report link

Thanks this help me a lot.

I was trying to make a POST to Upload a file with C# to replace a script using:

curl -F "file=@myfile" 192.168.1.31:80/upload

And this did the work.

Regards JL

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): help me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Son Goku

79488404

Date: 2025-03-06 06:11:32
Score: 0.5
Natty:
Report link

If you don't need your local changes and want to overwrite them with the remote version, this worked for me

git reset --hard git pull

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sàndéép Màhàjàn

79488402

Date: 2025-03-06 06:10:32
Score: 3
Natty:
Report link

Try URL(string: "itms-watchs://") instead!

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sean O'Donnell

79488399

Date: 2025-03-06 06:08:32
Score: 0.5
Natty:
Report link

Use CGDisplayCreateUUIDFromDisplayID.

You can get an NSScreen, then its deviceDescription, then the NSScreenNumber key.

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

79488397

Date: 2025-03-06 06:07:31
Score: 3
Natty:
Report link

For now I have solved it with Mopups: https://github.com/LuckyDucko/Mopups

Reasons:
  • Whitelisted phrase (-2): I have solved
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kasper Sommer

79488396

Date: 2025-03-06 06:06:31
Score: 3
Natty:
Report link

I am new to R. I was trying to install ggtree in R but i am continuously getting the following error Installation paths not writeable, unable to update packages path: /usr/lib/R/library packages: codetools, lattice, MASS, spatial Warning messages: 1: In install.packages(...) : installation of package ‘ape’ had non-zero exit status 2: In install.packages(...) : installation of package ‘tidytree’ had non-zero exit status 3: In install.packages(...) : installation of package ‘treeio’ had non-zero exit status 4: In install.packages(...) : installation of package ‘ggtree’ had non-zero exit status

My R version is the most updated and I am using Ubuntu 22.

Let me know how can I resolve the issue.

Reasons:
  • Blacklisted phrase (0.5): how can I
  • RegEx Blacklisted phrase (1.5): I am new
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: jobin jose

79488376

Date: 2025-03-06 05:48:28
Score: 2
Natty:
Report link

check if the key for the release aab file is correct or not via running,

keytool -list -v -keystore YOUR_KEYSTORE_PATH -alias YOUR_KEY_ALIAS

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Abhishek Kumar Kushwaha

79488370

Date: 2025-03-06 05:42:26
Score: 1
Natty:
Report link

Read the MUI documentation

To workaround the issue, you can force the "shrink" state of the label.

<TextField slotProps={{ inputLabel: { shrink: true } }} />

or

<InputLabel shrink>Count</InputLabel>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: TryCatchMe

79488362

Date: 2025-03-06 05:38:25
Score: 1
Natty:
Report link

Answered by @Stephen Quan already, however as of 28 Jan 2025, bindings that define x:Reference and Source are compiled, unless there is an issue such as mismatch between x:DataType and the type of the Source. See the Compiled Bindings Microsoft docs.

Quote:

Prior to .NET MAUI 9, the XAML compiler would skip compilation of bindings that define the Source property instead of the BindingContext. From .NET MAUI 9, these bindings can be compiled to take advantage of better runtime performance.

Additionally, as of 15 Nov 2024, StaticResources are now compiled wherever possible. See the 9.0.10 release notes.

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

79488351

Date: 2025-03-06 05:32:24
Score: 0.5
Natty:
Report link

According to this part of the Faces spec: https://jakarta.ee/specifications/faces/4.0/jakarta-faces-4.0#a5638, you’re missing one more thing - define reference to your taglib xml file in web.xml, using the servlet context parameter. It would have value of “/WEB-INF/example.taglib.xml”

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Ondro Mihályi

79488349

Date: 2025-03-06 05:31:24
Score: 1.5
Natty:
Report link

I also faced the same problem, maven is giving an error saying invalid target release. After an hour of investigation, I have found out that in my Jenkins file wrong version of jdk was shown, and, i have recently upgraded version of jdk and forgot to change in Jenkinsfile. After changing it everything started working as expected.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Khasan 24-7

79488346

Date: 2025-03-06 05:29:23
Score: 9
Natty: 8.5
Report link

can you point to any relevant code?

I am trying to do the same thing and cannot read mouse data.

Thank you in advance for your help.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): trying to do the same
  • RegEx Blacklisted phrase (3): Thank you in advance
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Christos

79488342

Date: 2025-03-06 05:27:23
Score: 3.5
Natty:
Report link

I just found the solution that you need to set false the UseChunkEncoding

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

79488318

Date: 2025-03-06 05:12:20
Score: 1
Natty:
Report link

I think the sql is being broken up like this:

--this select statement has 3 columns

select staff.staffid, staff.staffname, staff.department from staff left join department on staff.departmentid = department.departmentid

union all

--this select statement has 2 columns

select department.departmentname, department.domain from department left join staff on department.departmentid = staff.departmentid;

A union should be between selects with the same number of columns

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

79488313

Date: 2025-03-06 05:07:19
Score: 0.5
Natty:
Report link

You can achieve something like this with a signalStoreFeature. Like this article, "Extending the NgRx signal store with a custom feature"

A summary of the article:

The end product is adding this one line to your stores:

withCrudOperations<MyDto>(MyService),

MyService implements an interface like this:

export interface CrudService<T> {
  fetch(id: string): Observable<T>;
  update(value: T): Observable<T>;
  //... other ones
}

The signature of the signalStoreFeature, and an example of a method in use:

export type BaseEntity = { id: string };

export type BaseState<Entity> = {
  items: Entity[];
};

export function withCrudOperations<Entity extends BaseEntity>(
  dataServiceType: Type<CrudService<Entity>>
) {
  return signalStoreFeature(
    {
      state: type<BaseState<Entity>>(),
    },
    withMethods((store) => {
      const service = inject(dataServiceType);

      return {
        update: rxMethod<Entity>(
            // details in article
        ),
        // ... the rest of the methods
      }
    }
  )
}

For a more powerful entity based approach, there is withDataService from the ngrx-toolkit. It is based around withEntities and can add the collection name to the respective state/methods. However, it uses promises instead of observables. I had a PR to extend it to support observables that you could pull pieces from as needed.

Between the article's basics about a signalStoreFeature that is observable CRUD based and withDataService's advanced source code, you could piece together something really nice. That's what I did.

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

79488309

Date: 2025-03-06 05:03:18
Score: 3.5
Natty:
Report link

You just have to remove podLock.file will work fine.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: m.k official

79488298

Date: 2025-03-06 04:55:17
Score: 0.5
Natty:
Report link

I was using cmake to compile a large c++ project with many dependencies, for the first time, on a new system. With each sub-project, in this case Boost, it would sometimes stop with this error. The solution was to install the development library, e.g. boost-devel (or @development-libs to get them all). They had neglected to mention these were required. But I was paying the price for not installing the full development system.

CMakeFiles/dep_BOOST.dir
conftest.c /usr/bin/ld: /usr/lib64/../lib64/crt1.o: in function `_start':(.text 0x1b): 
undefined reference to `main'
collect2: error: ld returned 1 exit status
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @development-libs
  • Low reputation (0.5):
Posted by: hellork

79488297

Date: 2025-03-06 04:55:17
Score: 3
Natty:
Report link

The issue was caused by not setting a passphrase when creating the SSH key using PuTTY. I initially generated an SSH key without a passphrase, which led to the problem. To resolve it, I created a new GPU instance with a new SSH key that included a passphrase, and now everything is working properly.

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

79488296

Date: 2025-03-06 04:53:17
Score: 1.5
Natty:
Report link

MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT MANIKLALHAIT

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

79488288

Date: 2025-03-06 04:45:14
Score: 6 🚩
Natty:
Report link

I'm having the same issue, but even removing the comments from the HTML doesn't solve the problem. I've tried everything, and the workaround I found is to set the positions to absolute. However, in some cases, this doesn't work very well..

Reasons:
  • Blacklisted phrase (1): ve tried everything
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arthur

79488286

Date: 2025-03-06 04:43:14
Score: 2.5
Natty:
Report link

Seems Like the issue with additional header. I added Header

--header 'content-type: application/json'

In the Data flow source settings which resolved the issue and I am able to retrieve the Data from API

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

79488285

Date: 2025-03-06 04:41:13
Score: 2
Natty:
Report link

So this was very easy. Just calculate the return value from PvRecorder.read():

pcm = recorder.read()    
volume = np.mean(np.abs(pcm))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: El3ktra

79488281

Date: 2025-03-06 04:39:13
Score: 2
Natty:
Report link

Use button tag

return (<button>Click me</button>);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Murali krishna Ps

79488280

Date: 2025-03-06 04:37:12
Score: 2
Natty:
Report link

Remove Duplicates The best approach here would be to enforce the Identify Duplicate Rows option in a "Clean" step right after you use the custom SQl node

the Is Duplicate Row? column will identify the duplicates for you and you can filter them

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

79488277

Date: 2025-03-06 04:35:12
Score: 0.5
Natty:
Report link

Yes, Instagram requires app review approval before your app can access live data, but that mainly applies to other users' data. If you're just working with your own Instagram account (the one that generated the access token), you can typically test API calls without app review. However, you must have the right permissions and a properly generated access token.

Regarding your OAuth errors:

If you're using the Graph API Explorer, make sure you’ve requested the necessary scopes (instagram_content_publish for publishing media). If your token is from a personal Instagram account, it won’t work—Instagram requires a business or creator account connected to a Facebook Page.

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

79488276

Date: 2025-03-06 04:35:11
Score: 8.5 🚩
Natty: 4
Report link

have you solved this question? I have the same issue. On my screen, only BL works well. We're using the same screen.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (1.5): solved this question?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yen Harvey

79488273

Date: 2025-03-06 04:34:11
Score: 2.5
Natty:
Report link

I have found a solution for this issue. We can catch the on tap event using a GlobalKey.

  1. Define the global key

    final GlobalKey convexAppBarKey = GlobalKey();

  2. Use convexAppBarKey as key of the ConvexAppBAr

    ConvexAppBar( key: convexAppBarKey, onTap: (index) { // Handle tab changes }, ),

  3. Call the onTap event any where you want.

    ElevatedButton( onPressed: () { convexAppBarKey.currentState?.tap(1); }, child: Text("Tap Here"), )

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

79488269

Date: 2025-03-06 04:30:10
Score: 1.5
Natty:
Report link

the best way is by using "host.docker.internal" instead of localhost curl -i -X POST http://localhost:8001/services
--data "name=equipments_service"
--data "url=http://host.docker.internal:800X" # Replace with your actual backend URL

and make sure to allow the host(host.docker.internal) by adding ALLOWED_HOSTS = ["localhost", "127.0.0.1", "0.0.0.0", "equipments_service","192.168.60.136","host.docker.internal"]

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

79488267

Date: 2025-03-06 04:29:10
Score: 3
Natty:
Report link

I am a beginner but this may help,

import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);
Reasons:
  • RegEx Blacklisted phrase (2): I am a beginner
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Varun Kumar

79488262

Date: 2025-03-06 04:24:09
Score: 1
Natty:
Report link

Although quite some time has passed since the question was asked, I’d still like to share my solution—especially because the above methods didn’t work for me.

Newer excel has a functionality named "Get Data (Power Query)" – which can read text of UTF-8. So the csv files in UTF-8 encoding seemed to be loaded perfectly.

The functionality can be searched by name, or by the path on my mac: "Data" > "Get Data (Power Query)" > "Data (Power Query)" I hope this solution will help.

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

79488256

Date: 2025-03-06 04:20:08
Score: 0.5
Natty:
Report link

You can use Angular Material Table with expandable rows for show child table. Click here for more info

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

79488253

Date: 2025-03-06 04:17:07
Score: 6.5
Natty: 7
Report link

how does the "phone by Google app achieve these features when recording is started app says "this call is being recorded". how can we achieve this?

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

79488243

Date: 2025-03-06 04:11:06
Score: 3
Natty:
Report link

just delete your pubspec.lock file and again run flutter clean flutter pub get

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: R.D.T Sewmini

79488241

Date: 2025-03-06 04:10:06
Score: 0.5
Natty:
Report link

Hello there in Dio Response object does not contain body if you want to access body from dio response object you have to write response.data and directly pass to the model not needed parsing

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

79488239

Date: 2025-03-06 04:09:05
Score: 2
Natty:
Report link

I hit this exact error and resolved the issue by using "raspi-config" to enable the SPI interface.

The exact steps:

  1. Run "sudo raspi-config"
  2. Select "Interface Options"
  3. Select "SPI"
  4. It will ask "Would you like the SPI interface to be enabled"?
  5. Select "Yes", and "Ok"
  6. Once enabled you can exit the tool by using to select "Finished" then press

Once the SPI interface is enabled you should no longer receive the SPI errors from board.py

Note: No overlay or changes in config.txt should be required.

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

79488236

Date: 2025-03-06 04:09:05
Score: 1
Natty:
Report link

Because it is encountering a debug assertion in libc++, Xcode stalls. To avoid this: First, turn off exception breakpoints: You can delete any exception breakpoint by opening the Breakpoints Navigator (⌘8). 2. Turn off LIBCPP_DEBUG Claims: a. Select Scheme > Product > Edit Scheme (⌘⇧,). a. Add by selecting Run > Arguments: _LIBCPP_DEBUG = 0.

  1. Disregard LLDB assertions: a. Type breakpoint set -s libc++ -n __cxa_throw -G 0 into the Debug Console (⌘⇧C). b. manage the SIGTRAP procedure --stop false --notify false --pass true

  2. As a final resort, run in Release Mode: a. Change the Run configuration to Release in Edit Scheme.

By doing this, _LIBCPP_ASSERT_SEMANTIC_REQUIREMENT will no longer cause the debugger to pause.

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

79488235

Date: 2025-03-06 04:08:05
Score: 0.5
Natty:
Report link

The code appears to hardcode many things, and that may or may not be the issue.

First I see this:

CURLOPT_URL => ' https://demo.docusign.net/restapi/v2.1/accounts/123456789/envelopes',

The 123456789 is, I assume, your accountID, is this a GUID? or a short numeric value? are you sure you have the right accountID in there?

Then I see this:

 CURLOPT_HTTPHEADER => array ('Authorization: Bearer eyJ0****'),

First, do you hardcode a token? that won't work, tokens expire after 8 hours. If you don't do that, how do you obtain it using JWT? do you have a consistent code that does this every time you need one? I would suggest trying to use the PHP SDK that does this for you. You can find this code in https://github.com/docusign/code-examples-php/blob/master/JWTConsoleApp/JWTConsoleApp.php

Third, I suggest you have code like this:

curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  'Authorization': 'someAuthorization',
  'x-api-key': 'somekey',
  'Content-Type': 'application/x-www-form-urlencoded'
));

You need to set multiple headers, not just one

These headers are also needed:

'--header' "Accept: application/json" \
'--header' "Content-Type: application/json")
Reasons:
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (2.5): do you have a
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Inbar Gazit

79488228

Date: 2025-03-06 04:04:04
Score: 5.5
Natty: 5.5
Report link

In the newest cameraX version,does it also not support this feature?

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

79488223

Date: 2025-03-06 03:58:03
Score: 3
Natty:
Report link

Thank @mkl, using your test code testCreateSignatureWithMultipleVisualizations I could have a better approach for my requirement to add multiple signatures to one document. But I my case I need to use saveIncrementalForExternalSigning(signature) method to sign the document externally and unfortunatelly I got the exception "Can't write signature, not enough space". I resolved this exception by creating new SignatureOptions to setPreferredSignatureSize() but somehow in the signed document, there only last signature was displayed, the others were hidden. I will be very grateful if you can give me a hint on this issue.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-2): I resolved
  • RegEx Blacklisted phrase (2): I will be very grateful
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @mkl
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nguyen Van Tai

79488217

Date: 2025-03-06 03:53:02
Score: 3.5
Natty:
Report link

At the line where url is parsing add await keyword

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

79488216

Date: 2025-03-06 03:52:02
Score: 1
Natty:
Report link

Answering my questions for the benefit of others.

Ultimately, I could not get any of the Postgres installers to work. I tried a variety of techniques, but all failed. My best guess is that this machine has a ton of installs, like Node.js, three database systems (now 4), hyper-v, etc., and I suspect it is some unique configuration error unique to my machine.

In the original post, Daniel suggested a Docker image of it, and that's what I did. Of course, it will be a bit slower because of Docker, but at least it's installed, and I can access it using HeighSQL.

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

79488212

Date: 2025-03-06 03:51:01
Score: 2.5
Natty:
Report link

The code is only injected if you run the web with a live server, it is not saved, the code is used so that the web can reload when there are changes. You will not see this code if you run it using a web server such as Apache or Nginx.

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

79488209

Date: 2025-03-06 03:51:01
Score: 0.5
Natty:
Report link

Adding to clamchoda's answer, creating an instance using reflection should work as well.

public static dynamic HelperAAA(Type type, int a, int b) {
    return Activator.CreateInstance(type, [a, b]);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Patrick Xavier Silerio

79488208

Date: 2025-03-06 03:50:01
Score: 1
Natty:
Report link

I'm not seeing a better way than what you presented @Jason. I gave my service principal the Storage Blob Data Reader role and then created a condition (via the "Code" Editor type) to only allow the Blob.List SubOperation.

(
 (
 (ActionMatches{'Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read'} AND SubOperationMatches{'Blob.List'})
 )
)

RBAC Example

(My other screenshots look like Jason's)

Then I tested using

# Authenticate
az login --service-principal -u $clientid -p $clientsecret --tenant $tenant
# Unsuccessful attempt to download. (az blob storage show is the same)
az storage blob download --container-name $container --name test.txt --subscription $subscriptionid --account-name $account
# Successful attempt to view the lastModified property
az storage blob list --container-name $container --account-name $account --query "[].properties.lastModified" | jq '.[]' -r
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Jason
  • Low reputation (1):
Posted by: Kevin Stevens

79488198

Date: 2025-03-06 03:40:59
Score: 0.5
Natty:
Report link

import ReactDOM from react-dom/client instead of react-dom

import ReactDOM from "react-dom/client";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Sagar M

79488193

Date: 2025-03-06 03:35:58
Score: 0.5
Natty:
Report link

the_field('is_neighborhood') directly prints the value. it returns null. Use get_field('is_neighborhood') on place of it.

$is_neighborhood = get_field('is_neighborhood'); // Get the field value
    echo $is_neighborhood; // Print it to verify

    if ($is_neighborhood == 'Yes') {
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gauri Kaushik

79488192

Date: 2025-03-06 03:35:58
Score: 1.5
Natty:
Report link

I was having problems to build with IL2CPP, then found that missing vcruntime.h is related to not checking the C++ environment when installed the Visual Studio Community 2022.

I searched for Visual Studio Installer already on my computer, then noticed i have Visual Studio and Visual Studio Build Tools. I added C++ to both of them.

No more missing vcruntime.h error.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: José Ureña

79488191

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

To completely remove the old Workspace from your Slack app on Windows 11, follow these steps: Method 1: Use Slack’s Built-in Option (If Available)

  1. Open Slack.
  2. Look at the left sidebar where the workspace logos are displayed.
  3. Right-click (or Ctrl + Click) on the workspace logo.
  4. If "Remove Workspace" appears, select it. If that doesn’t work, proceed to the manual methods below.

Method 2: Clear Slack's App Data Since Slack stores some settings locally, clearing the cache and local files can remove the lingering workspace.

  1. Close Slack completely
    • Right-click the Slack icon in the system tray (bottom-right corner) and select Quit Slack.
  2. Delete Slack’s cache and storage files
    • Press Win + R, type the following, and hit Enter: %appdata%\Slack
    • Delete the folders named:
      • Cache
      • Code Cache
      • Local Storage
      • Session Storage
  3. Delete Slack's settings
    • In the same Slack folder, delete storage and workspace.json if available.
  4. Restart Slack and check if the workspace is gone.

Method 3: Reinstall Slack If the workspace persists, uninstalling Slack and reinstalling it fresh will clear all stored workspaces.

  1. Press Win + R, type: appwiz.cpl
  2. 
and hit Enter.
  3. Find Slack, right-click, and select Uninstall.
  4. After uninstalling, go to: %appdata%
  5. 
and delete any Slack folder remaining.
  6. Reinstall Slack from the official website: https://slack.com/downloads/windows.

After completing these steps, the removed workspace should no longer appear in Slack.

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

79488190

Date: 2025-03-06 03:34:58
Score: 1.5
Natty:
Report link

From within the virtual environment:

pipenv install setuptools

This resolved the issue for me.

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

79488186

Date: 2025-03-06 03:31:57
Score: 0.5
Natty:
Report link

The Express documentation now has a page specifically explaining how to handle this correctly for that framework.

const server = app.listen(port)

process.on('SIGTERM', () => {
  debug('SIGTERM signal received: closing HTTP server')
  server.close(() => {
    debug('HTTP server closed')
  })
})

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

79488184

Date: 2025-03-06 03:29:57
Score: 2
Natty:
Report link

From an alternative approach, we focus exclusively on client-side logic: if a user fails to connect to the server for any reason within a defined period, they are considered offline. For game sessions, the server maintains real-time game state persistence during a match. Upon reconnection, the client synchronizes with the server-stored game state to resume gameplay.

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

79488176

Date: 2025-03-06 03:26:56
Score: 2.5
Natty:
Report link

Open Settings, search Terminal and change Shell path: to C:\Program Files\Git\bin\sh.exe

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

79488170

Date: 2025-03-06 03:20:54
Score: 4
Natty:
Report link

https://manage.resellerclub.com/kb/answer/1029

Here's the link to the documentation of how to use the API to get the cost price

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

79488169

Date: 2025-03-06 03:18:54
Score: 1
Natty:
Report link

The problem is you have a style for the p tag. This is how to fix your issue

.InverseOnHoverContainer:hover p {
   color: white;
}

Also, you don't need to add !important. This will be a problem later on.

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

79488157

Date: 2025-03-06 03:12:53
Score: 1.5
Natty:
Report link

As of Scipy 1.9 there is now a keyword argument intergrality which accepts a boolean mask indicating which decision variables are constrained to be integers.

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

79488153

Date: 2025-03-06 03:08:53
Score: 0.5
Natty:
Report link

The fundamental problem is that there is no inheritance relationship between List<ChildA> and List<Parent>. You mistakenly believe that ChildA inherits from Parent, so List<ChildA> inherits from List<Parent>. This is wrong.

List<ChildA> inherits from List<? extends Parent>.

If you understand list as "house", maybe you can figure this problem out:

public interface Parent { }

public interface Boys extends Parent{ }
public interface Girls extends Parent{ }

List<? extends Parent> aHouseForChildrenWhoExtendsParent = new List<Boys>(); // boys house.
List<? extends Parent> otherHouseForChildrenWhoExtendsParent = new List<Grils>(); // grils house.

List<Parent> parentHouse = new List<Boys>(); // ??? this is parent house, boys and girls can not go in here.
Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: alalalala

79488152

Date: 2025-03-06 03:08:53
Score: 1.5
Natty:
Report link

I have run into this with some open source software that's written to use a lot newer Java version than 8, but it includes no Java files required to work. It does throw error messages that require a bunch of searching to figure out what's needed.

Turned out that simply installing the latest JDK wasn't quite enough. Some file had to be registered before the open source software could detect it was installed.

This goes against the original premise of Java where the Java Virtual Machine software for a platform could be installed once then Java apps could be written and run on any platform without platform dependent differences. Another part of it was by using the JVM, the Java apps could be smaller, less to download, use less storage space, and use less RAM when multiple apps were running since all would make calls to a single set of Java runtime files.

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

79488150

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

I have solved this problem. I updated the latest version chrome and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-2): I have solved
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tunaa

79488130

Date: 2025-03-06 02:54:49
Score: 1
Natty:
Report link

You can make it in one row by creating comparer in constructor.

SortedDictionary<int, int> dictionaryDescendingOrder = new SortedDictionary<int, int>(Comparer<int>.Create((x, y) => y.CompareTo(x)));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Egor Vlasov

79488128

Date: 2025-03-06 02:54:49
Score: 5.5
Natty: 5
Report link

enter image description here

ss

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: samantak bamns

79488126

Date: 2025-03-06 02:52:49
Score: 3.5
Natty:
Report link

Register

404 Not Found

404 Not Found


nginx
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nitish Kumar

79488124

Date: 2025-03-06 02:51:48
Score: 1
Natty:
Report link

Maui provides a default style template for FlyoutItem. You need to set it up based on this template.

This template can be used for as a basis for making alterations to the existing flyout layout, and also shows the visual states that are implemented for flyout items.

Please refer to the following document.

-Default template for FlyoutItems.

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

79488123

Date: 2025-03-06 02:49:48
Score: 1
Natty:
Report link

I'd like to provide a rule of thumb based on Satya Prakash Dash's answer:

  1. Prefer torch.inference_mode() for pure inference scenarios which gives you maximum performance.

  2. Use torch.no_grad() when working with custom autograd functions or dealing with older code.

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

79488120

Date: 2025-03-06 02:47:47
Score: 2.5
Natty:
Report link

what you're looking for is already defined in the DV 2.0, this is the "Status tracking satellite".

Basically, it keep track where a BK was create, update and deleted.

Please watch https://www.scalefree.com/knowledge/webinars/data-vault-friday/cdc-status-tracking-satellite-and-delta-lake/ for more information.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): what you
Posted by: MLeblanc

79488110

Date: 2025-03-06 02:40:45
Score: 6 🚩
Natty: 5.5
Report link

How to export line numbers to the indexing process ?

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

79488108

Date: 2025-03-06 02:34:44
Score: 1.5
Natty:
Report link

for anyone who is stumbled on this issue:

it is happening because the video asset has more than 1 audio track, I guess the first is the plain old stereo track to be compatible with older players, while the rest is a spatial audio track that contains more channels.

then things now become easier -- just process the first audio track, and neglect the rest.

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

79488106

Date: 2025-03-06 02:33:44
Score: 1.5
Natty:
Report link

refer to octane documentation, you can use --watch flag to instruct octane to restart automatically everytime you've made changes to your files.

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

79488101

Date: 2025-03-06 02:31:43
Score: 0.5
Natty:
Report link

The workaround that I came up for missing constraints, does this:

  1. Don't use SolverAdd in VBA. That appears to be how this issue starts.
  2. Instead, use the Solver Parameters dialog that opens in a worksheet under Data/Solver.
  3. To make it easier to deal with, structure the variables and constraints in a list in the worksheet: Name | Type | Lower Bound | Value | Upper Bound For Binary types, only the value is necessary. For Integer and (non-integer constrained) types, the bounds may be necessary. (I use Evolutionary mode usually and make them required).
  4. With this done, you can select the Value cells to create ranges to paste into the Solver Parameters dialog in the appropriate places. You will have to specify Binary, Integer for those. For integer, you will also need to enter the <= constraints and the >= constraints, just the same as with non-integer constraints.
    This may seem counter to what you want to do if your intent is to use VBA. But, fortunately, this structured approach works well with VBA implementations because the Solver Parameters dialog information sticks once entered. So, now one is able to write optimization subs and to use SolverOk and SolverSolve in VBA. You can change the SetCell entry if appropriate, just make sure to enter the ByChange:= range the same as is entered in the Solver Parameters dialog. This is the only solution I've found after a lot of effort, study and research. I'm running large problems consistently without trouble as long as I don't use SolverAdd. I note that others have found positive results doing something similar.
    It's worthy of note that the right-hand-side RHS of the constraints can be entered as ranges as set out above. I had hoped this would help use SolverAdd but it didn't. The approach using ranges on both the LHS and RHS reduced the number of constraint entries from around 80 down to 6. This makes it much easier to debug!!
Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: fred

79488093

Date: 2025-03-06 02:22:42
Score: 1.5
Natty:
Report link

Im already try with your code but everything fine no extra space between SliverAppBar and SliverList Im not sure. Is it happen to some device.

Anyway you can try to define toolbarHeight in SliverAppBar

enter image description here

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

79488090

Date: 2025-03-06 02:19:41
Score: 3.5
Natty:
Report link

I Got my answer, Currently I'm using MSSQL 2022 and It's working fine. The solution was changed the MSSSQL 2005 to Higher version. 2019 to 2022 I think.

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

79488089

Date: 2025-03-06 02:18:41
Score: 1.5
Natty:
Report link

Since I couldn't call PS 7.4 executable directly to execute a script, I implemented a convoluted work-around by calling PS5 script that would call PS7.4 to execute the script I want. To get the output of the script, I redirect it to a temp file and then read it in php.

I will use this setup temporarily until I can figure out why I can't call PS 7.4 executable directly from php.

php code

shell_exec('powershell.exe -File C:\inetpub\ps5-calling7.ps1');
$output = "C:\\inetpub\\env_output.tmp";

ps5-calling7.ps1

Start-Process pwsh.exe -ArgumentList "C:\inetpub\env_output.ps1" -wait -RedirectStandardOutput "env_output.tmp";
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Singsiblaw

79488081

Date: 2025-03-06 02:13:40
Score: 0.5
Natty:
Report link

i tryed ..change node version "@types/node": "^12.11.1", ..in package.json file its working...before,, "@types/node": "^18.19.79", { "name": "demoprojects", "version": "0.0.0", "scripts": { "ng": "ng", "start": "ng serve", "build": "ng build", "watch": "ng build --watch --configuration development", "test": "ng test" }, "private": true, "dependencies": { "@angular/animations": "^14.2.0", "@angular/common": "^14.2.0", "@angular/compiler": "^14.2.0", "@angular/core": "^14.2.0", "@angular/forms": "^14.2.0", "@angular/platform-browser": "^14.2.0", "@angular/platform-browser-dynamic": "^14.2.0", "@angular/router": "^14.2.0", "rxjs": "~7.5.0", "tslib": "^2.3.0", "zone.js": "~0.11.4" }, "devDependencies": { "@angular-devkit/build-angular": "^14.2.13", "@angular/cli": "~14.2.13", "@angular/compiler-cli": "^14.2.0", "@types/jasmine": "~4.0.0", "@types/node": "^12.11.1", "jasmine-core": "~4.3.0", "karma": "~6.4.0", "karma-chrome-launcher": "~3.1.0", "karma-coverage": "~2.2.0", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.0.0", "typescript": "~4.7.2" } }

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

79488070

Date: 2025-03-06 02:04:37
Score: 0.5
Natty:
Report link

It worked for me after restarting the db engine. Somewhere else it was suggested that using pool_recycle helped others, but instantly I didn't see the effect.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jumanazar Said

79488054

Date: 2025-03-06 01:48:34
Score: 3.5
Natty:
Report link

NPM will often ask "is this ok: (yes)" at the end, if you say "no" the process will be aborted, just take a do-over.

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

79488052

Date: 2025-03-06 01:47:34
Score: 1.5
Natty:
Report link

Can you do something like:

import { components } from "@octokit/openapi-types";
type Pull = components["schemas"]["pull-request"];
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (0.5):
Posted by: chanban

79488038

Date: 2025-03-06 01:37:32
Score: 1.5
Natty:
Report link

The problem for me was that I committed .idea.

What I did to solve that problem:

  1. shut down the blowtted Intellij
  2. remove .idea folder and then commit the change
  3. open your folder in the blowtted ?? you know

I've just seen it; this error was from 2012, the same age of my laptop.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Khabir

79488037

Date: 2025-03-06 01:37:32
Score: 1
Natty:
Report link

I also come up with the same error when i tried to compile mcl_dfti.f90:> ifx -c mkl_dfti.f90 mkl_dfti.f90(20): error #7001: Error in creating the compiled module file. [MKL_DFT_TYPE] MODULE MKL_DFT_TYPE -------^ mkl_dfti.f90(222): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE ------^ mkl_dfti.f90(228): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(232): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(240): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(244): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(255): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(259): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(260): error #6683: A kind type parameter must be a compile-time constant. [DFTI_SPKP] REAL(DFTI_SPKP), INTENT(IN) :: s ------------^ mkl_dfti.f90(270): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(274): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(275): error #6683: A kind type parameter must be a compile-time constant. [DFTI_SPKP] REAL(DFTI_SPKP), INTENT(IN) :: s ------------^ mkl_dfti.f90(285): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(289): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(290): error #6683: A kind type parameter must be a compile-time constant. [DFTI_DPKP] REAL(DFTI_DPKP), INTENT(IN) :: d ------------^ mkl_dfti.f90(300): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(304): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(305): error #6683: A kind type parameter must be a compile-time constant. [DFTI_DPKP] REAL(DFTI_DPKP), INTENT(IN) :: d ------------^ mkl_dfti.f90(316): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(320): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(321): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: new_desc ------------^ mkl_dfti.f90(329): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(333): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(342): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(348): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(353): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(358): error #6683: A kind type parameter must be a compile-time constant. [DFTI_SPKP] REAL(DFTI_SPKP), INTENT(IN) :: sglval ------------^ mkl_dfti.f90(359): error #6457: This derived type name has not been declared. [DFTI_DESCRIPTOR] TYPE(DFTI_DESCRIPTOR), POINTER :: desc ------------^ mkl_dfti.f90(364): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MKL_DFT_TYPE] USE MKL_DFT_TYPE -----------^ mkl_dfti.f90(369): error #6683: A kind type parameter must be a compile-time constant. [DFTI_DPKP] REAL(DFTI_DPKP), INTENT(IN) :: DblVal ------------^ mkl_dfti.f90(771): catastrophic error: Too many errors, exiting compilation aborted for mkl_dfti.f90 (code 1)

ifx -qmkl basic_dp_complex_dft_1d.f90 ifx: error #10236: File not found: 'basic_dp_complex_dft_1d.f90' ifx: command line error: no files specified; for help type "ifx -help" ./a.out zsh: no such file or directory: ./a.out

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Filler text (0.5): -----------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Filler text (0): ------------
  • Filler text (0): -----------
  • Filler text (0): ------------
  • Low reputation (1):
Posted by: Yiwen Tang

79488032

Date: 2025-03-06 01:33:31
Score: 3
Natty:
Report link

I needed to navigate with cd in command line to where the .whl file was (in my case. C:\Users\name\Downloads) located and pip install your_file.whl from there. Pretty sure this downloaded as a global package, but it's available in my virtual environment now.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Puhtooie

79488027

Date: 2025-03-06 01:30:30
Score: 7.5 🚩
Natty: 6.5
Report link

Same , myapps forbidden too how to solve ?

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (1.5): how to solve ?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Muhamad Dzikri Fadhilah