79362360

Date: 2025-01-16 16:28:55
Score: 4
Natty:
Report link

As a workaround, see this other thread

There is a project called ios-deploy on github. https://github.com/phonegap/ios-deploy

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Stan-SSK

79362353

Date: 2025-01-16 16:26:54
Score: 0.5
Natty:
Report link

I finally managed to get something to work mashing Taller's code (Thank you so much for that) with some other online code and the code the initial macro maker did. It is not a pretty solution and required a lot of editing of later subs to account for non-numerical values in calculations but here is my code mash that somehow worked

Dim filepath As String
Dim file As String
Dim filename As String
Dim filemax As Integer
Dim filei As Integer   
Dim TextFile As Integer
Dim FileContent As String

 Private Sub Cmdpopulate_Click()
        filei = 0
        filepath = InputBox("Please enter file path to be imported") & "\"                                                                                        'asks user for the file path (the files should be named with integers sequentially)
        filemax = InputBox("How many files do you wish to import?")                                                                                                                 'asks user how many files to import, this sets a maximum number to cycle through
        Do While filei < filemax                                                                                                                                                    'begins the file import loop, starting at filei (initially 0) up to filemax (defined above)
            filei = filei + 1
            filename = filei & ".txt"                                                                                                                                               'filename is the current filei integer and the extention
            foffset = filei + 19
            TextFile_FindReplace                                                                                                                                                                  'import file sub routine (see below)
        Loop
        add_frames
        format_tables
        Sheet1.Cells(1, 1).Select
    '    cmdpopulate.Visible = False
    End Sub
    Sub TextFile_FindReplace()
    
        file = filepath & "\" & filename
      TextFile = FreeFile
        Open file For Input As TextFile
            FileContent = Input(LOF(TextFile), TextFile)
        Close TextFile
      
            FileContent = Replace(FileContent, "          ", " --")
            TextFile = FreeFile
        Open file For Output As TextFile
            Print #TextFile, FileContent
        Close TextFile
        imptxt
    End Sub
    
    Public Sub imptxt()
        Sheet2.Range("a4").CurrentRegion.Offset(500, 0).Resize(, 40).Clear                                                                                                          'clears the table
        With Sheet2.QueryTables.Add(Connection:= _
            "TEXT;" & filepath & filename, Destination:=Sheet2.Range("$A$4"))
            .Name = Sheet2.Range("b1").Value
            .TextFilePlatform = 874
            .TextFileStartRow = 1
            .TextFileParseType = xlDelimited
            .TextFileOtherDelimiter = "?"
            .TextFileSpaceDelimiter = True
            .TextFileConsecutiveDelimiter = True
            .Refresh BackgroundQuery:=True
            .RefreshStyle = xlOverwriteCells
        End With                                                                                                                                                                    'opens file  filename (defined above) at filepath (defined above), delimites for '?' and overwrites any data in existing cells
        Sheet2.Range("a1") = filepath                                                                                                                                               'inserts filepath in cell a1, troubleshooting only
        Sheet2.Range("a2") = filename                                                                                                                                               'inserts filename in cell b2, troubleshooting only
      '  Sheet2.Select                                                                                                                                                                  'goes to the send subroutine to put data from the import table into the summary table
        TextFile_Restore
    End Sub
    Sub TextFile_Restore()
        file = filepath & "\" & filename
      TextFile = FreeFile
        Open file For Input As TextFile
            FileContent = Input(LOF(TextFile), TextFile)
        Close TextFile
      
            FileContent = Replace(FileContent, " --", "          ")     'changing the document back
            TextFile = FreeFile
        Open file For Output As TextFile
            Print #TextFile, FileContent
        Close TextFile
         If filei = 1 Then
            headers
        End If
        send
    End Sub

I hope it never breaks as I don't think I would be able to do it again.

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

79362348

Date: 2025-01-16 16:25:54
Score: 1
Natty:
Report link

Instead of printing, consider using module memory_graph to graph the recursion. A simple example for a factorial() function looks like:

import memory_graph # see link above for install instructions

def factorial(n):
    if n==0:
        return 1
    memory_graph.show( memory_graph.get_call_stack(), block=True )
    result = n * factorial(n-1)
    memory_graph.show( memory_graph.get_call_stack(), block=True )
    return result

print(factorial(3)) # 6

factorial graphed

Full disclosure: I am the developer of memory_graph.

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

79362344

Date: 2025-01-16 16:22:53
Score: 3.5
Natty:
Report link

I upgraded my Android Studio, and it only resolved the issue in Android 14,15 (Google Play). However, the other versions are still not functioning.

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

79362325

Date: 2025-01-16 16:17:51
Score: 3.5
Natty:
Report link

Don't tell anyone but it was a mistake on the html.

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

79362323

Date: 2025-01-16 16:17:51
Score: 2
Natty:
Report link

Well, it seems obvious now. The problem was that flutter created versions of these files with a .kts prefix. This relates to the new domain-specific-language (DSL) being used for gradle. I did see these files but assumed they had some different purpose.

The problem I now have is that flutterfire cli won't configure apps with kts files.

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

79362318

Date: 2025-01-16 16:16:51
Score: 1.5
Natty:
Report link

I have faced the same issue and I realised that I am using WSL for my develepment, so I changed the ganache settings to accept request from WSL and it worked. My suggestion for your problem will be check your ganache server settings.Hope this solution work for you guys!!.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Madhuresh S.S

79362313

Date: 2025-01-16 16:14:50
Score: 1
Natty:
Report link
  1. Ensure Class Loader Consistency: Verify that the class loaders used in both Eclipse and Maven-built clients are the same.

  2. Optimize Resource Packaging: Make sure resources are correctly bundled and accessed in the same way in both environments.

  3. Improve File System Access: Check for any discrepancies in file system access patterns and optimize for consistency.

  4. Adjust JVM Settings: Ensure that the JVM settings are identical in both environments to avoid performance differences.

  5. Enable Resource Caching: Implement caching mechanisms for frequently accessed resources to reduce load times.

  6. Detailed Profiling: Use advanced profiling tools to identify and address any underlying performance bottlenecks.

By addressing these areas, you can achieve more consistent performance between your Eclipse and Maven-built clients.

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

79362297

Date: 2025-01-16 16:10:50
Score: 1
Natty:
Report link

I was able to get g++ -pg -g with -02 optimizations to work by removing the -l from gprof command. So first compile and run the program. Then move gmon.out and the binary compiled with debug options into the same directory. Then run sudo gprof binary_name gmon.out binary_name > output.txt

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

79362292

Date: 2025-01-16 16:08:49
Score: 1
Natty:
Report link

It’s possible that this is an intended cold start behavior. Websockets usually have challenges when synchronizing data to Cloud Run because instances are stateless while websockets are stateful.

When it comes to choosing between first and second generation of Cloud Run, both will still discard in-memory data once an instance is terminated or scaled down. But in terms of cold start times, the first generation has faster cold start times than the second generation.

You can also try setting a minimum number of instances to reduce the cold start time.

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

79362290

Date: 2025-01-16 16:08:49
Score: 1.5
Natty:
Report link

The issue was target_compile_options(project1 PRIVATE /Zp).

I assume intellisense was expecting the next item to be passed to be the argument. As /Zp is the same as /Zp1 I had left it empty. Adding the argument of 1 has made the intellisense errors dissappear.

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

79362287

Date: 2025-01-16 16:07:49
Score: 2.5
Natty:
Report link

You can checkout the flutter package Securepass which uses google mlkit package and others. Use their flutter package or implement yourself following their idea of implementation.

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

79362285

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

Issue resolved by retrograding to version 2.9.3.

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

79362280

Date: 2025-01-16 16:04:47
Score: 4.5
Natty:
Report link

Store Kit Pro uses Transaction from StoreKit which means you're okay

See more here: https://stackoverflow.com/a/79357207/4514671

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

79362276

Date: 2025-01-16 16:03:47
Score: 2.5
Natty:
Report link

Have you set up a payment method? When you send out a message (template), your webhook will be called with the status of that message. It might contain an error indicating the issue with sending the message.

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

79362254

Date: 2025-01-16 15:59:45
Score: 1
Natty:
Report link

To help you better understand my problem, here is an excerpt of the messages generated by the compiler after compiling with the command mingw32-make:

[ 1%] Building C object CMakeFiles/gen_test_char.dir/tools/gen_test_char.c.obj
[ 2%] Linking C executable gen_test_char.exe
[ 2%] Built target gen_test_char
[ 3%] Generating character tables, apr_escape_test_char.h, for current locale
[ 3%] Built target test_char_header
[ 3%] Building C object CMakeFiles/libapr-1.dir/atomic/win32/apr_atomic.c.obj
In file included from x:/mingw64/x86_64-w64-mingw32/include/objbase.h:66,
from x:/mingw64/x86_64-w64-mingw32/include/ole2.h:17,
from x:/mingw64/x86_64-w64-mingw32/include/wtypes.h:13,
from x:/mingw64/x86_64-w64-mingw32/include/accctrl.h:10,
from x:/apr-1.7.5/include/arch/win32/apr_private.h:62,
from x:/apr-1.7.5/include/arch/unix/apr_arch_atomic.h:22,
from x:\apr-1.7.5\atomic\win32\apr_atomic.x:17:
x:/mingw64/x86_64-w64-mingw32/include/objidl.h:9954:9: error: unknown type name 'HMETAFILEPICT'; did you mean 'METAFILEPICT'?
9954 | HMETAFILEPICT hMetaFilePict;
| ^~~~~~~~~~~~~
| METAFILEPICT
x:/mingw64/x86_64-w64-mingw32/include/objidl.h:9967:9: error: unknown type name 'wireHBITMAP'; did you mean 'HBITMAP'?
9967 | wireHBITMAP hBitmap;
| ^~~~~~~~~~~
| HBITMAP
x:/mingw64/x86_64-w64-mingw32/include/objidl.h:9968:9: error: unknown type name 'wireHPALETTE'; did you mean 'HPALETTE'?
9968 | wireHPALETTE hPalette;
| ^~~~~~~~~~~~
| HPALETTE
x:/mingw64/x86_64-w64-mingw32/include/objidl.h:9969:9: error: unknown type name 'wireHGLOBAL'; did you mean 'HGLOBAL'?
9969 | wireHGLOBAL hGeneric;
| ^~~~~~~~~~~
| HGLOBAL
x:/mingw64/x86_64-w64-mingw32/include/objidl.h:9976:13: error: unknown type name 'wireHMETAFILEPICT'; did you mean 'LPMETAFILEPICT'?
9976 | wireHMETAFILEPICT hMetaFilePict;
| ^~~~~~~~~~~~~~~~~
| LPMETAFILEPICT
x:/mingw64/x86_64-w64-mingw32/include/objidl.h:9977:13: error: unknown type name 'wireHENHMETAFILE'; did you mean 'HENHMETAFILE'?
9977 | wireHENHMETAFILE hHEnhMetaFile;
| ^~~~~~~~~~~~~~~~
| HENHMETAFILE
x:/mingw64/x86_64-w64-mingw32/include/objidl.h:9979:13: error: unknown type name 'wireHGLOBAL'; did you mean 'HGLOBAL'?
9979 | wireHGLOBAL hGlobal;
| ^~~~~~~~~~~
| HGLOBAL
x:/mingw64/x86_64-w64-mingw32/include/objbase.h:159:52: error: unknown type name 'uCLSSPEC'
159 | WINOLEAPI CoInstall (IBindCtx *pbc, DWORD dwFlags, uCLSSPEC *pClassSpec, QUERYCONTEXT *pQuery, LPWSTR pszCodeBase);
| ^~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/objbase.h:159:74: error: unknown type name 'QUERYCONTEXT'; did you mean 'PUMS_CONTEXT'?
159 | WINOLEAPI CoInstall (IBindCtx *pbc, DWORD dwFlags, uCLSSPEC *pClassSpec, QUERYCONTEXT *pQuery, LPWSTR pszCodeBase);
| ^~~~~~~~~~~~
| PUMS_CONTEXT
In file included from x:/mingw64/x86_64-w64-mingw32/include/urlmon.h:456,
from x:/mingw64/x86_64-w64-mingw32/include/objbase.h:163:
x:/mingw64/x86_64-w64-mingw32/include/oleidl.h:1328:9: error: unknown type name 'LPMSG'
1328 | LPMSG lpmsg,
| ^~~~~
x:/mingw64/x86_64-w64-mingw32/include/oleidl.h:2198:9: error: unknown type name 'LPMSG'
2198 | LPMSG lpmsg);
| ^~~~~
x:/mingw64/x86_64-w64-mingw32/include/oleidl.h:2299:5: error: unknown type name 'LPMSG'
2299 | LPMSG lpmsg);
| ^~~~~
x:/mingw64/x86_64-w64-mingw32/include/oleidl.h:2441:9: error: unknown type name 'LPMSG'
2441 | LPMSG lpmsg,
| ^~~~~
In file included from x:/mingw64/x86_64-w64-mingw32/include/msxml.h:311,
from x:/mingw64/x86_64-w64-mingw32/include/urlmon.h:458:
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:366:9: error: unknown type name 'CY'
366 | typedef CY CURRENCY;
| ^~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:378:5: error: unknown type name 'wireBSTR'
378 | wireBSTR *aBstr;
| ^~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:408:16: error: 'VT_ERROR' undeclared here (not in a function); did you mean 'IS_ERROR'?
408 | SF_ERROR = VT_ERROR,
| ^~~~~~~~
| IS_ERROR
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:409:13: error: 'VT_I1' undeclared here (not in a function)
409 | SF_I1 = VT_I1,
| ^~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:410:13: error: 'VT_I2' undeclared here (not in a function)
410 | SF_I2 = VT_I2,
| ^~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:411:13: error: 'VT_I4' undeclared here (not in a function)
411 | SF_I4 = VT_I4,
| ^~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:412:13: error: 'VT_I8' undeclared here (not in a function)
412 | SF_I8 = VT_I8,
| ^~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:413:15: error: 'VT_BSTR' undeclared here (not in a function); did you mean 'PTSTR'?
413 | SF_BSTR = VT_BSTR,
| ^~~~~~~
| PTSTR
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:414:18: error: 'VT_UNKNOWN' undeclared here (not in a function); did you mean 'VFT_UNKNOWN'?
414 | SF_UNKNOWN = VT_UNKNOWN,
| ^~~~~~~~~~
| VFT_UNKNOWN
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:415:19: error: 'VT_DISPATCH' undeclared here (not in a function); did you mean 'VIF_MISMATCH'?
415 | SF_DISPATCH = VT_DISPATCH,
| ^~~~~~~~~~~
| VIF_MISMATCH
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:416:18: error: 'VT_VARIANT' undeclared here (not in a function)
416 | SF_VARIANT = VT_VARIANT,
| ^~~~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:417:17: error: 'VT_RECORD' undeclared here (not in a function); did you mean 'METARECORD'?
417 | SF_RECORD = VT_RECORD,
| ^~~~~~~~~
| METARECORD
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:418:31: error: 'VT_RESERVED' undeclared here (not in a function); did you mean 'TC_RESERVED'?
418 | SF_HAVEIID = VT_UNKNOWN | VT_RESERVED
| ^~~~~~~~~~~
| TC_RESERVED
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:508:13: error: unknown type name 'VARTYPE'; did you mean 'CALTYPE'?
508 | VARTYPE vt;
| ^~~~~~~
| CALTYPE
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:519:17: error: unknown type name 'VARIANT_BOOL'
519 | VARIANT_BOOL boolVal;
| ^~~~~~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:521:17: error: unknown type name 'CY'
521 | CY cyVal;
| ^~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:522:17: error: unknown type name 'DATE'
522 | DATE date;
| ^~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:523:17: error: unknown type name 'BSTR'; did you mean 'HSTR'?
523 | BSTR bstrVal;
| ^~~~
| HSTR
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:533:17: error: unknown type name 'VARIANT_BOOL'
533 | VARIANT_BOOL *pboolVal;
| ^~~~~~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:535:17: error: unknown type name 'CY'
535 | CY *pcyVal;
| ^~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:536:17: error: unknown type name 'DATE'
536 | DATE *pdate;
| ^~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:537:17: error: unknown type name 'BSTR'; did you mean 'HSTR'?
537 | BSTR *pbstrVal;
| ^~~~
| HSTR
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:549:17: error: unknown type name 'DECIMAL'
549 | DECIMAL *pdecVal;
| ^~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:562:9: error: unknown type name 'DECIMAL'
562 | DECIMAL decVal;
| ^~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:604:9: error: unknown type name 'VARIANT_BOOL'
604 | VARIANT_BOOL boolVal;
| ^~~~~~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:606:9: error: unknown type name 'CY'
606 | CY cyVal;
| ^~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:607:9: error: unknown type name 'DATE'
607 | DATE date;
| ^~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:608:9: error: unknown type name 'wireBSTR'
608 | wireBSTR bstrVal;
| ^~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:619:9: error: unknown type name 'VARIANT_BOOL'
619 | VARIANT_BOOL *pboolVal;
| ^~~~~~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:621:9: error: unknown type name 'CY'
621 | CY *pcyVal;
| ^~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:622:9: error: unknown type name 'DATE'
622 | DATE *pdate;
| ^~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:623:9: error: unknown type name 'wireBSTR'
623 | wireBSTR *pbstrVal;
| ^~~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:634:9: error: unknown type name 'DECIMAL'
634 | DECIMAL decVal;
| ^~~~~~~
x:/mingw64/x86_64-w64-mingw32/include/oaidl.h:635:9: error: unknown type name 'DECIMAL'
635 | DECIMAL *pdecVal;
| ^~~~~~~
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (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): ~~~~~~~~~~~
  • Low reputation (1):
Posted by: user29212188

79362252

Date: 2025-01-16 15:59:45
Score: 1.5
Natty:
Report link

I suggest you use : pymysql. It works exactly the same as mysql.connector

import pymysql

connection=pymysql.connect(user="root",password="mysql")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abderrahmane ELYADINI

79362250

Date: 2025-01-16 15:57:45
Score: 2
Natty:
Report link

Here is how i found 'PROFESSIONAL HACKER' when i noticed changes in my husband's behaviour and i needed to Hack into his cell phone without physical contact, when he would always being with his phone at odd hours, i suspected infidelity but i know i needed cheating proof to be able to confront the situation before its too late.... i talked to colleague at work who introduced me to a Hacking Guru' and SPYWARE DIRECTORY PROGRAMMER his direct contact for call or texts is +,1. 77894 60028 and his e-mail addrr is 'UNTRACEABLELOOPSHACKING247 AT G. MAIL DOT C OM' he only need the Target phone number[s] and the phone model [iphone, samsung etc'] to program your spyware directory app, he will help you gain access in-to your cheating partner's phone without physical contact, with his software and spyware tools i was able to read all his texts messages 'both deleted and recent' and also had access to his whatsapp chats [new and deleted] facebook chats, instagram,viber mesaages etc...recovered and retrieved deleted text messages, files,conversations and emails of at least 3 years and above, with the spylink directory you can always know and view Target phone live location at anytime , view his banks and credit cards statements, record or listen to phone calls, view call logs and many more, you can as well 've access to his icloud information remotely without his passwords, any apps[ dating sites, bank apps, or any social media apps] on the target phone would be remotely accessible for you on the directory with many more functions and features, he's a Guru in spyware programming and he will show the Demo of how to navigate and use the directory, his service charges is very affordable considering the multiple features of the spyapp.....So, if you need cheating proof or any hacking and tracking related service just follow your gut instincts, contact him via his email addrr 'untraceableloopshacking AT G. MAIL DOT CO M and tell him Sharon fisher refer you..

Reasons:
  • Blacklisted phrase (0.5): i need
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sharon Fisher

79362245

Date: 2025-01-16 15:54:44
Score: 0.5
Natty:
Report link

Late to the party maybe, but for anyone interested in this day and age: I'm using Pandoc for conversions like this. It also supports converting docbook format to other formats, like HTML.

For example: pandoc -s -t docbook example.xml -o example.html

You can try it online here: https://pandoc.org/try/

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

79362243

Date: 2025-01-16 15:54:44
Score: 1
Natty:
Report link

you can try this too:

python -m fastapi dev .\main.py
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: scorcism

79362239

Date: 2025-01-16 15:52:43
Score: 2
Natty:
Report link

-check your logs file -check if there is any weird place that you have made a database query like in my case I called User::all() in my routes file which resulted in the error uncomment that part and check if everything works

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

79362217

Date: 2025-01-16 15:48:42
Score: 10.5
Natty: 7.5
Report link

Were you able to resolve this?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yves De Meersman

79362215

Date: 2025-01-16 15:48:42
Score: 1.5
Natty:
Report link

I'm not able to truly disable the security certificate check, even with the two last proposed solutions.

I use the pyowm module and at some point, it calls one of its library where request is used and where it forces the verification. See below the get_json function of the HttpClient object with verify=self.config['connection']['verify_ssl_certs']

The only solution I found was to replace that line by verify = false but I would prefer to set a global variable in my original code instead of changing the code directly in one of the pyowm script.

Any ideas ? (safety warning : I'm not a developer, I just know the minimum to play with python to make my job easier)

Thanks.

class HttpClient:

"""
An HTTP client encapsulating some config data and abstarcting away data raw retrieval

:param api_key: the OWM API key
:type api_key: str
:param config: the configuration dictionary (if not provided, a default one will be used)
:type config: dict
:param root_uri: the root URI of the API endpoint
:type root_uri: str
:param admits_subdomains: if the root URI of the API endpoint admits subdomains based on the subcription type (default: True)
:type admits_subdomains: bool
"""

def __init__(self, api_key, config, root_uri, admits_subdomains=True):
    assert isinstance(api_key, str)
    self.api_key = api_key
    assert isinstance(config, dict)
    self.config = config
    assert isinstance(root_uri, str)
    self.root_uri = root_uri
    assert isinstance(admits_subdomains, bool)
    self.admits_subdomains = admits_subdomains

    if self.config['connection']['max_retries'] is not None:
        # this adapter tells how to perform retries
        self.session_adapter = HTTPAdapter(
            max_retries=Retry(
                total=self.config['connection']['max_retries'],
                status_forcelist=[429, 500, 502, 503, 504],
                method_whitelist=["HEAD", "GET", "PUT", "DELETE", "OPTIONS", "TRACE"]
            )
        )
        # this is the adapted requests client
        self.http = requests.Session()
        self.http.mount("https://", self.session_adapter)
        self.http.mount("http://", self.session_adapter)
    else:
        self.http = requests

def get_json(self, path, params=None, headers=None):
    builder = HttpRequestBuilder(self.root_uri, self.api_key, self.config, has_subdomains=self.admits_subdomains)\
        .with_path(path)\
        .with_api_key()\
        .with_language()\
        .with_query_params(params if params is not None else dict())\
        .with_headers(headers if headers is not None else dict())
    url, params, headers, proxies = builder.build()
    try:
        resp = self.http.get(url, params=params, headers=headers, proxies=proxies,
                            timeout=self.config['connection']['timeout_secs'],
                            verify=self.config['connection']['verify_ssl_certs']
                            #Added by Alex
                            #verify = False
                             )
    except requests.exceptions.SSLError as e:
        raise exceptions.InvalidSSLCertificateError(str(e))
    except requests.exceptions.ConnectionError as e:
        raise exceptions.InvalidSSLCertificateError(str(e))
    except requests.exceptions.Timeout:
        raise exceptions.TimeoutError('API call timeouted')
    HttpClient.check_status_code(resp.status_code, resp.text)
    try:
        return resp.status_code, resp.json()
    except:
        raise exceptions.ParseAPIResponseError('Impossible to parse API response data')
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Any ideas
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: xla99

79362214

Date: 2025-01-16 15:48:42
Score: 2
Natty:
Report link

On Mac M3, it turned out it didn't have anything to do with path, but rather the way that psycopg2 was installed. I had to do conda install psycopg2 instead of using pip as I was before. Thanks to this contributor for the solution.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jowen

79362212

Date: 2025-01-16 15:47:42
Score: 3
Natty:
Report link

Link ere's a link! And a reference-style link to a panda. References don't have to be numbers.

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

79362205

Date: 2025-01-16 15:45:41
Score: 3.5
Natty:
Report link

when creating the driver object, are you passing the parameter password="your_password" on purpose because you've already set the password in the method definition

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when
  • Low reputation (1):
Posted by: Kobina Folson

79362202

Date: 2025-01-16 15:45:41
Score: 4
Natty: 4.5
Report link

Hey hello i put the archives in drive for you, i think it's that what you are lookin for

https://drive.google.com/drive/folders/1XNoU7Jaxchh31tCV8KSD92XYvOCRvOva?usp=sharing

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

79362190

Date: 2025-01-16 15:41:40
Score: 1.5
Natty:
Report link

The previous answers are useful, but I'll add some more for those who find this later.

The correct way to solve the problem is exactly what the question poster did. The only other thing I would do is changing the name of the function from addPassenger to addPassengerToBus (or boardBus).

Adding a passenger to the bus should change the fullness of the bus. You would never want to have someone added to the bus without calculating the change in bus fullness. From the "business" perspective (the business of busses) it is one thing.

What is not one thing, is the exact numerical tipping points, which should be calculated via it's own function and called whenever a passenger is added.

Had adding people to the bus truly been independent of calculating the fullness of the bus, then the thing to do would be to split the functions and have the method which calls addPassenger now call both methods directly.

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

79362180

Date: 2025-01-16 15:36:38
Score: 2
Natty:
Report link

My apologies, the issue was with my code: I was passing the method instance to an unrelated visitor. Once I corrected this, everything works as advertised.

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

79362173

Date: 2025-01-16 15:34:38
Score: 2
Natty:
Report link

This takes 2 extra steps and is technically not an answer to the question, but should do the job in no time + it's easy. All you need is a terminal in your repo:

  1. checkout the commit by its hash in your terminal
  2. git log -> this should show the commit message
  3. ctrl + c the message and search in gitlab by the message
Reasons:
  • Blacklisted phrase (1): not an answer
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Clemens Dinkel

79362168

Date: 2025-01-16 15:33:38
Score: 1.5
Natty:
Report link

https://platform.freemusicd-----BEGIN CERTIFICATE----- MIIDrDCCA1KgAwIBAgIQeKyL508y8dEOEs2mQfCufjAKBggqhkjOPQQDAjA7MQsw CQYDVQQGEwJVUzEeMBwGA1UEChMVR29vZ2xlIFRydXN0IFNlcnZpY2VzMQwwCgYD VQQDEwNXRTEwHhcNMjQxMTI4MTUzMjQwWhcNMjUwMjI2MTUzMjM5WjAiMSAwHgYD VQQDExdiYWNrc3RhZ2UuZGlzdHJvZmx5LmNvbTBZMBMGByqGSM49AgEGCCqGSM49 AwEHA0IABLOu7msDHA4FMSyrZCCPt9BFhYNH4xuhhz25lk7sckvA8cnstrIGD9N/ SbS9NF12QtwU4CKrLGcwc3j5PdTTtMCjggJPMIICSzAOBgNVHQ8BAf8EBAMCB4Aw EwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUNCac LcdXjZZkiOHK4nyyZ2LoiKQwHwYDVR0jBBgwFoAUkHeSNWfE/6jMqeZ72YB5e8yT +TgwXgYIKwYBBQUHAQEEUjBQMCcGCCsGAQUFBzABhhtodHRwOi8vby5wa2kuZ29v Zy9zL3dlMS9lS3cwJQYIKwYBBQUHMAKGGWh0dHA6Ly9pLnBraS5nb29nL3dlMS5j cnQwIgYDVR0RBBswGYIXYmFja3N0YWdlLmRpc3Ryb2ZseS5jb20wEwYDVR0gBAww CjAIBgZngQwBAgEwNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2MucGtpLmdvb2cv d2UxL3Jkb1phUC1DRTRZLmNybDCCAQMGCisGAQQB1nkCBAIEgfQEgfEA7wB1AE51 oydcmhDDOFts1N8/Uusd8OCOG41pwLH6ZLFimjnfAAABk3OeFdsAAAQDAEYwRAIg LxCtkXjtO7RedovnTCm5XeC7YdazR5NxJKt5xbtu870CIAjaboIYPkAAAdav4kiy J/cQv8klMzWOStT/udOMMiRtAHYAfVkeEuF4KnscYWd8Xv340IdcFKBOlZ65Ay/Z DowuebgAAAGTc54WAgAABAMARzBFAiEAlYVcn3vXPICZedaSAkh2ipnRoRTgIKYS lqWfiIdy5v8CIH98JcUc0nP92zmSX2UUaNuJTX3FhajipEA+dNiq2v/qMAoGCCqG SM49BAMCA0gAMEUCIBIFN5wKonsdh9K/F9iLTwqetz2So/3YN5wbetRi4qahAiEA qy6VVopQ7x9mN9ZG84HMTGpsCVNBp91fH13S+lsHHgA= -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICnzCCAiWgAwIBAgIQf/MZd5csIkp2FV0TttaF4zAKBggqhkjOPQQDAzBHMQsw CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU MBIGA1UEAxMLR1RTIFJvb3QgUjQwHhcNMjMxMjEzMDkwMDAwWhcNMjkwMjIwMTQw MDAwWjA7MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVR29vZ2xlIFRydXN0IFNlcnZp Y2VzMQwwCgYDVQQDEwNXRTEwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARvzTr+ Z1dHTCEDhUDCR127WEcPQMFcF4XGGTfn1XzthkubgdnXGhOlCgP4mMTG6J7/EFmP LCaY9eYmJbsPAvpWo4H+MIH7MA4GA1UdDwEB/wQEAwIBhjAdBgNVHSUEFjAUBggr BgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQU kHeSNWfE/6jMqeZ72YB5e8yT+TgwHwYDVR0jBBgwFoAUgEzW63T/STaj1dj8tT7F avCUHYwwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzAChhhodHRwOi8vaS5wa2ku Z29vZy9yNC5jcnQwKwYDVR0fBCQwIjAgoB6gHIYaaHR0cDovL2MucGtpLmdvb2cv ci9yNC5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgEwCgYIKoZIzj0EAwMDaAAwZQIx AOcCq1HW90OVznX+0RGU1cxAQXomvtgM8zItPZCuFQ8jSBJSjz5keROv9aYsAm5V sQIwJonMaAFi54mrfhfoFNZEfuNMSQ6/bIBiNLiyoX46FohQvKeIoJ99cx7sUkFN 7uJW -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- MIICCTCCAY6gAwIBAgINAgPlwGjvYxqccpBQUjAKBggqhkjOPQQDAzBHMQswCQYD VQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIG A1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAw WjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2Vz IExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQAIgNi AATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzuhXyi QHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvR HYqjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW BBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNpADBmAjEA6ED/g94D 9J+uHXqnLrmvT/aDHQ4thQEd0dlq7A/Cr8deVl5c1RxYIigL9zC2L7F8AjEA8GE8 p/SgguMh1YQdc4acLa/KNJvxn7kjNuK8YAOdgLOaVsjh4rsUecrNIdSUtUlD -----END CERTIFICATE-----istrib.com/?next=%2Falbums

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

79362163

Date: 2025-01-16 15:32:37
Score: 1
Natty:
Report link

Due to the quarkus.smallrye-openapi.servers is a runtime property you may directly in application.properties file set it to any runtime env variable like

quarkus.smallrye-openapi.servers=${HOSTNAME:localhost}

where localhost is just a fallback value in case HOSTNAME env missing.

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

79362161

Date: 2025-01-16 15:32:37
Score: 3.5
Natty:
Report link

how can i get that data from the woocommerce to my application regarding abandoned carts list what is the api endpoint for this like to get orders i use(wp-json/wc/v3/orders) then what will be for abandoned carts

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how can i
  • Low reputation (1):
Posted by: Bilal shahid

79362156

Date: 2025-01-16 15:27:36
Score: 3.5
Natty:
Report link

You can create a Converter to make the direct convertion between POJO/Record -> Record. See more : https://modelmapper.org/user-manual/converters/.

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

79362151

Date: 2025-01-16 15:25:36
Score: 2
Natty:
Report link

The issue was related to payment. Upgrading your OpenAI account doesn’t automatically include an API key subscription. You’ll need to purchase a subscription separately based on the pricing available on this page: OpenAI API Pricing.

Once I subscribed, the problem was resolved.

Thank you, everyone!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Ahmed Amin Shahin

79362145

Date: 2025-01-16 15:23:35
Score: 2.5
Natty:
Report link

I tried to find a solution 2 or 3 days, and missed out this thread.

In my case, Build Settings - Packaging - Product Name was not English. Changed to English and worked.

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

79362141

Date: 2025-01-16 15:23:35
Score: 1.5
Natty:
Report link

Im asking a question on this thread since you all seems pretty aware on the subject.

Im getting too some difficulty to place orders with REST API, even if I manage perfectly to get the endpoints. No matter what I try, included the example from the official doc: https://ibkrcampus.com/ibkr-api-page/cpapi-v1/#place-order, I get an error 500: internal server error

Here is my code:

>>> data
  {'orders': [{'conid': 136155102, 'orderType': 'MKT', 'quantity': 1, 'side': 'BUY'}]}
>>> url 
    'https://localhost:5005/v1/api/iserver/account/XXXXXX/orders' 
>>> response = requests.post(url, data=data, verify=False)
>>> response.raise_for_status()
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 500 Server Error: Internal Server Error for url: https://localhost:5005/v1/api/iserver/account/XXXXXX/orders

I tried also to specify the acctID in the body but I get the same result. I will keep testing in the coming days, in case this is an issue coming directly from the server -- what I doubt.

Please note that Im currently trying with a paper account.

@Voy, you did a great job on your lib ibind.

Thanks for your help

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • RegEx Blacklisted phrase (1): I get an error
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Voy
  • Low reputation (1):
Posted by: Roms

79362139

Date: 2025-01-16 15:22:34
Score: 1
Natty:
Report link

Solved:

When storing these external users, exchange will replace the "@" symbol in the User Principle Name with an "_", leaving the emails to look like this: exampleemail_outlook.com#EXT#@company.com. This issue was resolved by changing Select-Object -ExpandProperty UserPrincipalName to Select-Object -ExpandProperty Mail.

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

79362111

Date: 2025-01-16 15:16:33
Score: 3.5
Natty:
Report link

I'm working on a Chinese-English dictionary app in Swift and need advice on the best way to store simple data (Chinese word, pronunciation, definitions). I tried SwiftData but felt overwhelmed—any tips to simplify this would be sizzling!

Reasons:
  • Blacklisted phrase (1): any tips
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sam Links

79362104

Date: 2025-01-16 15:14:32
Score: 1
Natty:
Report link

The expected value 3030, in hex translates to "00" which is an approval. The actual value you received 3936 translates to "96", which is one of many possible decline codes.

8A is the tag identifier for (Authorisation Response Code). 02 is the length of the data in bytes, 3936 is the value (2 bytes is 4 hex digits). There is not enough information to tell if it is a host problem, issuer problem, or perhaps a problem with the transaction data that was sent to the host.

Your payment processor / host should be able to tell you what decline code 96 means.

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

79362098

Date: 2025-01-16 15:12:31
Score: 5
Natty:
Report link

If you are facing the same issue, Check your build.gradle file and remove this line: implementation("androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-apha03")

now re-run the project.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Dev.Joshua

79362096

Date: 2025-01-16 15:12:31
Score: 3.5
Natty:
Report link

You can do a query in your own space https://github.com/notifications?query=reason%3Ainvitation

reason:invitation When you're invited to a team, organization, or repository.

as explained here: https://docs.github.com/en/account-and-profile/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications/managing-notifications-from-your-inbox

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Guillaume de Toulouse

79362093

Date: 2025-01-16 15:11:30
Score: 2
Natty:
Report link

It seems that in version: 2024.4 /2695759 the issue was fixed.

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

79362080

Date: 2025-01-16 15:07:29
Score: 3.5
Natty:
Report link

I answer to myself: the issue was caused by a special character in the password.

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

79362070

Date: 2025-01-16 15:04:29
Score: 2
Natty:
Report link

Try change your type to params: Promise<{ uuid: string }>;

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

79362048

Date: 2025-01-16 15:00:27
Score: 2
Natty:
Report link

Put recordSetStructure = root,*

Put row.endSeparator = 'nl' in place of row.fieldSeparator.

Refer below blog for simple conversions from XML to plain files: https://www.riyaz.net/sap/xipi-file-content-conversion-for-simple-structure/75/

Also, imo, chatgpt and others AI tools are still evolving and do not provide reliable solutions where SAP PI/CPI is concerned. So try to follow SAP documentations and blogs.

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

79362047

Date: 2025-01-16 14:59:27
Score: 1.5
Natty:
Report link

So, in codegen.ts documents destinations should be in the same folder as generate output.

documents: ['lib/**/*.ts'],
ignoreNoDocuments: true,
generates: {
   './graphql/': {
      preset: 'client',
      config: {
          documentMode: 'string'
      }
   },
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: nutipa

79362039

Date: 2025-01-16 14:57:27
Score: 2.5
Natty:
Report link
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Doan Chung

79362038

Date: 2025-01-16 14:57:27
Score: 2
Natty:
Report link

Two Screenshots showing the app-files on azure belonging to this function. It is not running (Assuming Error during import). Only If I remove #import zsbiconfig. I do not see any fault here

Function app Files

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: mbieren

79362031

Date: 2025-01-16 14:55:26
Score: 1
Natty:
Report link

Other applications may also be taking over the shortcuts in addition to the AMD Radeon background processes. In my case (I do not have AMD), the culprit was Zoom. Deleting the shortcut from Zoom App - Profile - Settings - Keyboard shortcuts - Clips - "Record new clip" removes the conflict and restores RStudio comment/uncomment functionality.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: sparrow

79362022

Date: 2025-01-16 14:52:25
Score: 4
Natty: 4.5
Report link

which data format i can use with the octproz? how i can make a convertion to octproz format

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): which
  • Low reputation (1):
Posted by: אופירה דבח

79362019

Date: 2025-01-16 14:51:24
Score: 1.5
Natty:
Report link

In my specific case, the issue came down to network routing.

I investigated the azure app configuration again more in-depth after I posted this question and some of the network configuration. It turns out that I had some network restrictions in place on my identity provider and needed to add this app to the vnet. After doing this the app is now able to successfully go through the authentication flow!

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

79362017

Date: 2025-01-16 14:50:24
Score: 1
Natty:
Report link

chrome/chromium here is the google chrome internet browser, but I can recommend to just downgrade to an older version of Kaleido to avoid these issues. You can run the following command to downgrade Kaleido:

pip install --upgrade "kaleido==0.1.*"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Memke

79362012

Date: 2025-01-16 14:49:24
Score: 1
Natty:
Report link

You can achieve this using the splitlines() method in python

data = """1000
2000
3000
4000"""

number_list = data.splitlines()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: David Aniebo

79362008

Date: 2025-01-16 14:46:23
Score: 1
Natty:
Report link

This is another solution to rename the first column:

data.rename(columns={data.columns[0]:'newname'},inplace=True)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ekraus

79362002

Date: 2025-01-16 14:45:23
Score: 1.5
Natty:
Report link

Have you tried adding the routerLinkActiveOptions? it might be that the path matching is looking for the whole path.

https://stackoverflow.com/a/38091022/4777292

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Edward Newsome

79361993

Date: 2025-01-16 14:42:22
Score: 1.5
Natty:
Report link

I tested a simplified version of option (2) from @Paul Fraser's fix, which also worked. The following code needs to be executed before exiting the function that uses Application.ScreenUpdating:

ActiveWindow.FreezePanes = True
ActiveWindow.FreezePanes = False

Alternatively, this also worked but the screen flashes for a second:

ActiveWindow.WindowState = xlMinimized
ActiveWindow.WindowState = xlMaximized

It seems that forcing Excel to perform minor UI interactions "fixes" the issue.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Paul
  • Low reputation (1):
Posted by: maxdmvp

79361992

Date: 2025-01-16 14:42:22
Score: 2.5
Natty:
Report link

Bongiwe Rahman, Email: [email protected], I.D No.: 801231 0624 082, TymeBank Everyday Account: 5100 4875 340 Branch Code: 678910 Card No.: 4847 9540 7519 9122 Exp. Date: 05/27 , CVV: 633 Password: qU2#2198003% IKHOKHA Ticket ID: 1812 2674 731

Vat No.: 3660371423

MERCHANT INVOICE: IKABC055329-20250110

CNP230772076, Cash Purchase, Amount: R 1 615.00 Vat (15%): R 285.00 Total Incl. Vat: R 1 900.00

CHP230772076 , Cash Purchase, Amount: R 1 615.00 Vat (15%): R 285.00 Total Incl. Vat: R 1 900.00

CHP230775298, Cash Purchase, Amount: R 1 062.50 Vat (15%): R 187.50 Total Incl. Vat: R 1 250.00

IFT230775298, Instant EFT, Amount: R 1 062.50 Vat (15%): R 187.50 Total Incl. Vat: R 1 250.00

Total R 6 300.00 Vat (15%) R 821.74

SUBTOTAL R 5 478.26 Vat (15%) R 821.74 TOTAL DUE R 6 300.00

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Bongiwe Rahman

79361989

Date: 2025-01-16 14:40:21
Score: 2.5
Natty:
Report link

You could use CanDeactivate guard built into to angular. a use case in this blog here: https://medium.com/@altamashali/angular-candeactivate-guard-e9069e1adf0f

We have a NavigateAwayService in our app that utilises this. for when we want to show a popup saying "You have unsaved changes / are you sure?" when a user tries to navigate forward or back or close the browser tab.

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (0.5): medium.com
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Edward Newsome

79361966

Date: 2025-01-16 14:33:20
Score: 3
Natty:
Report link

When setting up the private endpoint on the cosmos database, you need to pick 'SqlDedicated' as the target sub-resource. The problem was solved by creating a new private endpoint with this setting - and by using the sqlx.cosmos.azure.com endpoint for the dedicated gateway, of course.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Kenbo

79361954

Date: 2025-01-16 14:30:18
Score: 9 🚩
Natty: 6.5
Report link

I faced absolutely the same problem...it seems that there should be little issue, but I can't figure it out.. Did you solve your problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve your problem
  • RegEx Blacklisted phrase (1.5): solve your problem?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: pinktadpole

79361949

Date: 2025-01-16 14:30:18
Score: 2.5
Natty:
Report link

I've had the same issue, turned out the actual DLLs weren't in the path.

Try copying them to the output directory with a custom target.

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

79361946

Date: 2025-01-16 14:30:18
Score: 3
Natty:
Report link

you can solve this problem with npm cache clean --force. It will be enough to write this command before npm install in your deploy environment.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Erol Emre Güleç

79361944

Date: 2025-01-16 14:29:17
Score: 0.5
Natty:
Report link

With some slight tweaking this seems to be working for Graph. Thank you Glen. Still getting issues with it being unauthorized for Exchange Online. For the Exchange app for Graph and the Exchange permissions mentioned earlier, I granted both delegate and application API permissions on the app (not sure which one did the job yet until I play about removing permissions to see what exactly is needed).

This is the code for Graph:

$CalendarPermissionsClientSecret = ConvertTo-SecureString "CENSORED" - 
AsPlainText -Force
$CalendarPermissionsClientID="CENSORED"
$CalendarPermissionsTenantID="CENSORED"
$MsalParams = @{
ClientId = $CalendarPermissionsClientID
TenantId = $CalendarPermissionsTenantID
ClientSecret = $CalendarPermissionsClientSecret
Scopes="https://graph.microsoft.com/.default"
}
 $Pwd = ConvertTo-SecureString $password -AsPlainText -Force


 $MsalResponse = Get-MsalToken @MsalParams

$global:CalendarPermissionsToken = ConvertTo-SecureString 
$MsalResponse.AccessToken -AsPlainText -Force

Connect-mggraph -AccessToken $CalendarPermissionsToken

Get-MgUser

The command then works fine.

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

79361943

Date: 2025-01-16 14:29:17
Score: 2.5
Natty:
Report link

Thanks Ulrich Eckhardt. Yes, the github project linked above is a minimal example of the current Segmentation fault problem. We were stuck with this problem for a long time because we didn't know why the Segmentation fault exited, and we tried a lot of things, including adding a loop body, but it didn't work, and the page provided to the user had to be refreshed several times before it finished loading, which was a very bad experience for the user.

After enabling the single-threaded solution, I can leave the loop body, and the page will be loaded at once. Although it may not be the optimal method, can also use frankenphp have Segmentation fault this error PHP project reference.

“ Whether it should be used do not understand, if there is something wrong, please directly help to change it to the correct one, thank you.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Li Li

79361939

Date: 2025-01-16 14:28:11
Score: 6 🚩
Natty:
Report link

I have similar issue but with the following package:

"@aws-sdk/lib-dynamodb": "^3.699.0"

I just exclude it from build because lambda has v3 libs provided by AWS. Docs: https://docs.aws.amazon.com/lambda/latest/dg/lambda-nodejs.html#nodejs-sdk-included

Reasons:
  • Blacklisted phrase (1): I have similar
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have similar issue
  • Low reputation (1):
Posted by: Koge

79361938

Date: 2025-01-16 14:28:06
Score: 7 🚩
Natty:
Report link

I have a same problem. I try to generate core dump with abort() function end of the process, but it does not generated. If I will use SIGSEGV signal, core dump is generated. What is differences of both of them?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Developer

79361935

Date: 2025-01-16 14:28:05
Score: 7 🚩
Natty: 4.5
Report link

I see that couple of years has passed since someone tried to use GenABEL in newer version of R. I have exactly the same problem, I tried several options from the internet, but neither of them worked. Does someone knows is there an option to install it? Hopefully someone has a solution, I have tons of scripts and definitely would avoid shifting to some another newer package!

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2): Does someone know
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: boris lukic

79361928

Date: 2025-01-16 14:26:05
Score: 2
Natty:
Report link

Is his what you need? DATA LIST LIST / patient_id (A20) operator_id (A20) procedure_date (SDATE10). BEGIN DATA. 1,pseudo_001,2024/02/01 2,pseudo_002,2024/07/11 3,pseudo_002,2023/08/10 4,pseudo_003,2024/03/01 5,pseudo_004,2024/08/01 6,pseudo_004,2024/07/02 7,pseudo_004,2024/01/15 8,pseudo_003,2023/01/19 END DATA. compute jaar= XDATE.YEAR(procedure_date). crosstabs tables= operator_id by jaar.

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

79361908

Date: 2025-01-16 14:18:02
Score: 1
Natty:
Report link

This is the fastest solution I found. In actions tab:

  1. Do not add double quotes around the file path: C:\folder\script.vbs rather than "C:\folder\script.vbs"
  2. Add path to parent directory of the script: C:\folder\
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: NakerTheFirst

79361904

Date: 2025-01-16 14:16:02
Score: 2
Natty:
Report link

Ionic serve does not include live reload. This needs to be configured: https://capacitorjs.com/docs/guides/live-reload

and then use:

ionic cap run android -l --external

Or

if you use VS Code, you can install the ionic plugin and within this plugin there is a button that does all the configuration for you. Make sure to click the life line looking icon, this enables live reload. Then just click the play button.

enter image description here

Reasons:
  • Blacklisted phrase (1): this plugin
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: StackOverHoes

79361898

Date: 2025-01-16 14:14:01
Score: 1
Natty:
Report link

I have used the following stylesheet for QTreeView in my app.

QTreeView {
    border: none;
    background-color: transparent;
    color: #000;
    show-decoration-selected: 1;
}

And full row is selected including icon area and branch image. Seems, not any other special options were set.

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

79361891

Date: 2025-01-16 14:12:01
Score: 3.5
Natty:
Report link

Just putting this here in case anyone runs into the same issue and wants some sort of answer, I received this email from AuthNet Dev support.

Hello,

Thank you for contacting Authorize.net Developer Support. I understand you need assistance regarding the country-of-origin code for some of your clients. I am here to help.

If the merchant received an email from Mastercard that they are not compliant, then this is more likely related to Mastercard compliance mandate and not a development issue. It also depends on who the merchant is processing with.

You may confirm with the merchant if they received an email from Mastercard. If so, then the merchant does not have to do anything as Authorize.net is still working with this mandate.

You may visit this link for more details: https://support.authorize.net/knowledgebase/Knowledgearticle/?code=000002704

I hope this information helps. Have a wonderful day!

If the information provided above satisfies your needs, please close this Support Case. Otherwise, please add an update to this Support Case with your follow-up questions so I can further assist you. For your convenience the Authorize.net Support Center, located at: https://support.authorize.net. You may also call us at (877) 447-3938, available 24 hours a day, 7 days a week.

For more information regarding our privacy practices, visit the privacy page at Authorize.net.

Regards, Authorize.net Developer Support

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): this link
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ron

79361880

Date: 2025-01-16 14:08:00
Score: 1
Natty:
Report link

In order to extract the data handling from the component you would usually use a state manager like Vuex or Pinia, this is the most popular approach across the community;

a much more simple option (reduces the amount of boilerplate code) is using a singleton class to store data and functions (similar to angular services approach to the problem).

There clearly is a problem on how reactive triggers DOM's and there's not much on the documentation about how reactive gets involved in components lifecycle.

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

79361875

Date: 2025-01-16 14:05:59
Score: 1.5
Natty:
Report link

Looks like you are trying a Modal view. If use it in a router is mandatory, the suggestion above is a good way...

On your router you'll need to set the path with something like '/list/create' and redirect it to your ProjectList.vue.. Inside them you could set a computed pointing to the route to check if you are in the /list/create and add an v-if at the Create component that should be displayed as a modal.

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

79361869

Date: 2025-01-16 14:04:59
Score: 0.5
Natty:
Report link

Move this.setFormState(); from the closeModal() method to the openModal() method.

There are cleaner ways of doing this like having the modal being its component so it can have its own lifecycle and Output the value of the form back to your parent component when its closed.

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

79361862

Date: 2025-01-16 14:02:59
Score: 1.5
Natty:
Report link

This Button option would work

Button(child: const Text('Sign Out'), onPressed: () {FirebaseAuth.instance.signOut();})

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

79361858

Date: 2025-01-16 14:01:58
Score: 1
Natty:
Report link

It depends.

To add on others answer, generally, unless you're using a hot reloading system, or the running code is reading the file you changed (like a config file or your own interpreted code), no, your changes wouldn't affect the running code.

This is because the process created to run compiled code includes dumping the code to main memory. And to change execution due to file modification requires compiling and executing it again.

For the link on python source modified, the S.O. answer states this happens when you're trying something funky with imports.

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

79361850

Date: 2025-01-16 14:00:58
Score: 0.5
Natty:
Report link

One solution with GridSpec (less elegant than jared's answer):

fig = plt.figure(figsize=(4,8)) 
gs = fig.add_gridspec(nrows=4, ncols=2, left=0.05, right=0.95, hspace=0.25, wspace=0.3)
ax0 = fig.add_subplot(gs[0:2, :])
ax1 = fig.add_subplot(gs[2, 0])
ax2 = fig.add_subplot(gs[2, 1])
ax3 = fig.add_subplot(gs[3, 0])
ax4 = fig.add_subplot(gs[3, 1])

plot

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

79361846

Date: 2025-01-16 13:57:57
Score: 2
Natty:
Report link

the same problem happened to me in a different context, i tried to use ebook2audiobook which also needs the same gardio file, and i got the same error like you. what helped me, was to rename the file to EXACTLY this name WITHOUT exe

frpc_windows_amd64_v0.3

do NOT add dot (.) and also do not add exe (.EXE) and then i tried a few more times and it managed to connect to the server (a link which will expire in 72 hours).

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

79361842

Date: 2025-01-16 13:56:57
Score: 1
Natty:
Report link

In my case I had a dependency with with a lower version than my main service.

Main:
  pom.xml (Using Spring-Core 6.1.xxx)
Dependency:
  pom.xml (Using Spring-Core 5.2.xxx)

You need to check all your private libraries to ensure everyone is on the same version.

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

79361819

Date: 2025-01-16 13:49:55
Score: 1.5
Natty:
Report link

Today I experienced an issue when selenium returned only 100 items when there are more than 100 items to return. That's why I think the limit is 100 items when calling driver.find_elements(By.CLASS_NAME, 'list-item').

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

79361808

Date: 2025-01-16 13:46:54
Score: 1.5
Natty:
Report link

Fixed by adding this to the remote app config:

  tools: {
    rspack: {
      output: {
        uniqueName: 'remote',
        publicPath: 'auto',
      },
    },
  },
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user1847403

79361799

Date: 2025-01-16 13:45:54
Score: 3
Natty:
Report link

As @David found within 5 min of me posting this, my issue was a typo in my second hook. I was returning this: [weapons, setWeapons, loadingState]

when I should have been returning this: {weapons, setWeapons, loadingState}

Thank you my friend.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @David
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: darthhiggy

79361794

Date: 2025-01-16 13:44:53
Score: 1
Natty:
Report link

I've met a similar issue while putting a Button next to a Picker in the same HStack which is contained in a Form.

This Apple developer forum thread brings me the solution/workaround: simply add .buttonStyle(BorderlessButtonStyle())

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

79361792

Date: 2025-01-16 13:44:53
Score: 1.5
Natty:
Report link

Find a public program: link Such a proxy may be easy to find the problem. I use the zip package downloaded from the above project, directly extracted to the WEB working directory of the test frankenphp, replace the working file, that is, the frankenphp server has not changed, but the server web page has changed. When the agent has a dynamic web page with video, no matter what version, the package change 1.4.0 version, must be "Segmentation fault" exit. But according to the method found by PHP programmers over here, once you set only single thread in Caddyfile, i.e. set "num_threads 1", there is a high probability that "Segmentation fault" will not occur, and it is possible to use this github project from the present! frankenphp problem solution.

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

79361777

Date: 2025-01-16 13:39:52
Score: 1
Natty:
Report link

This will work for you: you have to rewrite url and also redirect old url to new one

RewriteEngine On
RewriteBase /
RedirectMatch 301 ^/main/(.*)$ https://abc.com.com/$1
RewriteRule ^main/(.*)$ /$1 [R]

this will solve issue and also redirect old urls

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

79361771

Date: 2025-01-16 13:38:51
Score: 5
Natty:
Report link

In this particular case, I am trying to read a secured string from a file made by another user. When such a file with a password is prepared without the –Key or –SecureKey parameters of ConvertTo-SecureString, only the same user account on the same computer will be able to use this encrypted string.

Source: https://www.pdq.com/blog/secure-password-with-powershell-encrypting-credentials-part-1/#convertto-securestring-encrypting-passwords-and-other-strings

A similar topic: ConvertTo-SecureString run without key on different user account, is there a way (with proper credentials) to get this working from a different user?

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): is there a way
  • Probably link only (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: Gerard Jaryczewski

79361769

Date: 2025-01-16 13:38:51
Score: 2
Natty:
Report link

bro i think this method Workmanager().isScheduledByUniqueName() is not define in Workmanager class.you can schedule task by this 2 methods.

  1. registerOneOffTask : for one time task
  2. registerPeriodicTask : for run task at specified interval.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kailash Rabari

79361759

Date: 2025-01-16 13:35:51
Score: 0.5
Natty:
Report link

I had the same error message. Tried to delete the caches file. This did -not- help. I thought the problem came from an internal inconsistency of gradle that was caused by some sloppy automatic upgrade. But .... this was not the reason.

I had a windows update the day before. Somehow Windows had broken permissions for file creation. Manually adding permission also did not help.

I then tried what always helps in Bill Gates wonderland. Restarted the PC. After that again started Android Studio. It then worked like a charm. Since i did delete the cache file before i am not 100% sure that just rebooting windows would have solved the problem.

Reasons:
  • Blacklisted phrase (1): worked like a charm
  • Whitelisted phrase (-1): I had the same
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: MatthiasL

79361758

Date: 2025-01-16 13:34:50
Score: 5.5
Natty: 4
Report link

Please help me! My C++ don't see openCV =(

I created envoriment variable; And I did all across of instruction;

But my IDE: VSCode/MS VisualStudio won't to see opencv2/opencv.hpp.

Please help me!

I don't know what I may anything doing!

P.S. I asked chat-gpt 4o but he suggest to repit previos step and check dependencies, I did it, but it wasn't helping.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pavel Shapavalau

79361748

Date: 2025-01-16 13:30:49
Score: 3.5
Natty:
Report link

Title: Issue with Running an External CSV Viewer in CODESYS on a Windows Environment

Body:

I’m CSI student and I’m working with CODESYS to create an application which will use an external csv application I need to work the csv viewer wheenter image description heren I press a “Data History” button. Over the years, I’ve established the appropriate library and parameters inside my code, but unfortunately, I've encountered the issue the SysProcessCreate2 function.

Problem Details:

According to the log is presented to me when doing a start of the external application I see the following message:

Error Code: -1 (RTS_INVALID_HANDLE)Details (39): This is a failure in the process creation related to permissions or configuration issues.

Steps I’ve Tried:

I ran the file paths through the PowerShell which ensured me that they are indeed functional in CODESYS.I found the config file and made sure the code was included in the [SysProcess] section with the following lines:Furthermore, I rebooted the runtime to apply the configuration changes that were made to the “CODESYSControl.cfg” file.Then I proceeded with launching notepad.exe as the command was easier, and it allowed me to understand that since it was the same error.My efforts went a bit wasted.

Observations:

The file paths and commands are functional when done through PowerShell.At least I can suspect it to be either a configuration or a permission-related issue due to the fact that the file runs as a process on Windows in most cases.

Environment Details:

CODESYS Version: 3.5.19.20 & Operating System: WindowsApplication to Launch: CSV Viewer

Question:

Has anyone else faced any problems when trying to use the Windows' SysProcessCreate2 function? What are the possible extra settings not provided in the compact code for the application to work exactly as it was designed, if any?

Some advice or attention-grabbing code would be greatly appreciated. Remember, I owe you one!

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Khalil Soussi

79361747

Date: 2025-01-16 13:30:49
Score: 1.5
Natty:
Report link

(node:11424) [DEP0044] DeprecationWarning: The util.isArray API is deprecated. Please use Array.isArray() instead. (Use node --trace-deprecation ... to show where the warning was created)

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

79361736

Date: 2025-01-16 13:27:48
Score: 2.5
Natty:
Report link

use this to align

nodePositionBuilder: (context, index) { return 0.0; // Adjust the node position vertically },

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

79361732

Date: 2025-01-16 13:25:47
Score: 1.5
Natty:
Report link

Well, I needed to call remove_all_jobs on the jobstore not on the scheduler:

scheduler._jobstores["default"].remove_all_jobs()
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Omroth

79361728

Date: 2025-01-16 13:25:47
Score: 4.5
Natty: 4.5
Report link

Here is solution my friend

Django linkedIn Social authentication

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

79361702

Date: 2025-01-16 13:16:45
Score: 1
Natty:
Report link

In the link you provided, there is a footnote that says “Important”. (Screenshot)

...Import the component from the individual package...

It means you should import components like this:

import { Button } from '@nextui-org/button'

Not like this

import { Button } from '@nextui-org/react'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Данил Фархутдинов

79361691

Date: 2025-01-16 13:12:44
Score: 1.5
Natty:
Report link

Changing the base branch of a pull request
After a pull request is opened, you can change the base branch to compare the changes in the pull request against a different branch.

More Info find you under the Link.

Note: If the source branch and the target branch are completely different, then you might want to do a rebuild and check the changes again.

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

79361687

Date: 2025-01-16 13:10:43
Score: 1
Natty:
Report link

One reason to prefer double quotes is that Canonical XML uses them instead of single quotes. Citing the Recommendation:

The canonical form of an XML document is physical representation of the document produced by the method described in this specification. The changes are summarized in the following list:

  • [...]
  • Attribute value delimiters are set to quotation marks (double quotes)
  • [...]
Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Tachi

79361684

Date: 2025-01-16 13:09:43
Score: 2.5
Natty:
Report link

The solution you implemented seems good, but I’d like to understand the main reason behind it. My application was working fine initially, yet the problem keeps reappearing after some time.

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