79131718

Date: 2024-10-27 23:45:11
Score: 4
Natty:
Report link

Here is a condensed version of what I'm trying to accomplish:

Sub functionFa()
    Dim savePath As String, saveName As String, changeDate As String
    Dim countForms As Integer, i As Integer, j As Integer
    
    Dim serialNum As String, lastThree As String, LastThreePlusOneStr As String
    Dim LastThreeInt As Integer, LastThreePlusOne As Integer, k As Integer
    
    changeDate = dateFA.Value
    changeDate = Replace(changeDate, "/", ".")
        
        Set WordApp = CreateObject("Word.Application")
        Set WordDoc = WordApp.Documents.Add
        WordApp.Visible = False
        fileTemplate = Range("A1").Value
        Set WordDoc = WordApp.Documents.Open(fileTemplate)

        If startAt.Value <> "" Then     ‘Start at a number other than 1
            countForms = Val(startAt.Value) + (qtyFA.Value - 1)
            j = startAt.Value
        Else
            countForms = qtyFA.Value
            j = 1
        End If
                
    For i = j To countForms
        
        If incSerialCheck = True Then 'Checkbox on userform to increment entered serial number
            serialNum = serialNumberFAA.Value
            lastThree = Right(serialNum, 3)
            LastThreeInt = CInt(lastThree)
            LastThreePlusOne = LastThreeInt + 1
            LastThreePlusOneStr = CStr(LastThreePlusOne)
            NewSerialNumStr = Left(serialNum, Len(serialNum) - 3) & LastThreePlusOneStr
        Else
            NewSerialNumStr = SerialNumber.Value
        End If
            serialNum = NewSerialNumStr
            Debug.Print NewSerialNumStr  ' for debugging 
        End If
        
            WordDoc.FormFields(1).Result = formTrackingNumber.Value
            WordDoc.FormFields(3).Result = workOrder.Value      
            WordDoc.FormFields(17).Result = NewSerialNumStr
            WordDoc.FormFields(27).Result = dateFA.Value
  
                If ValidFileName(saveName) Then
                    With WordDoc
                        .SaveAs savePath & "\" & saveName & ".docx"
                    End If
            End If
Next i

    WordDoc.Close
    WordApp.Quit
    Set WordDoc = Nothing
    Set WordApp = Nothing
    
    Application.ScreenUpdating = True    
End Sub

And this is the section I'm struggling with. I'm trying to get the serial number to increment and inserted into "WordDoc.FormFields(17)" on EACH form created.

 If incSerialCheck = True Then 'Checkbox on userform to increment entered serial number
            serialNum = serialNumberFAA.Value
            lastThree = Right(serialNum, 3)
            LastThreeInt = CInt(lastThree)
            LastThreePlusOne = LastThreeInt + 1
            LastThreePlusOneStr = CStr(LastThreePlusOne)
            NewSerialNumStr = Left(serialNum, Len(serialNum) - 3) & LastThreePlusOneStr
        Else
            NewSerialNumStr = SerialNumber.Value
        End If
            serialNum = NewSerialNumStr
            Debug.Print NewSerialNumStr  ' for debugging 
        End If

I appreciate everyone's help on this, coding I'm very new to and have limited capacity when writing more complicated things. Please excuse my noobness. Please let me know if what I posted isn't clear

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (1.5): I'm very new
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mike

79131688

Date: 2024-10-27 23:21:06
Score: 4
Natty: 5
Report link

Estou usando @inject NavigationManager NavigationManager, adicionei o @rendermode InteractiveServer e funcionou.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @inject
  • User mentioned (0): @rendermode
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rubão

79131685

Date: 2024-10-27 23:20:06
Score: 5
Natty:
Report link

Do you guys have any update from this topic ?

I downloaded Tizen Studio and have the same problem on my W11 PC. As a substitute solution, I use a Virtual Machine with W10 to overpass the problem

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: HichamElk

79131647

Date: 2024-10-27 22:56:01
Score: 6.5
Natty: 7.5
Report link

But how do you get back to the page with the pencil?

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lepome

79131641

Date: 2024-10-27 22:48:57
Score: 6 🚩
Natty:
Report link

Good evening,

you should wrap your code into a code box (even better with css syntax highlighting). ;)

To transform your absolute values into percentage ones, we would have to know the surrounding code/layout/sizes. E.g.: The child is as big, as the parent when setting width/height to 100%.

So way more information needed on this one, or am I getting you totally wrong here?

Best regards

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): Good evening
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sascha Haßler

79131516

Date: 2024-10-27 21:21:39
Score: 4
Natty: 4
Report link

**

I think this folowing link will help you very well

** https://dev.to/ngconf/the-true-difference-between-and-bindings-in-angular-2h9i

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

79131499

Date: 2024-10-27 21:09:35
Score: 4
Natty:
Report link

C++ toolchain is OK. The problem was that my driver/GPU combination don`t support MSAA textures. For more information see [VTK 9.0.0] Rendering issue (many artifacts) with Nouveau driver.

VTK merge request that fixes this OpenGLRenderWindow: Disable MSAA on nouveau

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

79131387

Date: 2024-10-27 20:02:19
Score: 7.5 🚩
Natty:
Report link

When I remove the @emotion/react package, the slowness disappeared. Is there anything wrong with this package?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Abdulrahman Alkurdi

79131332

Date: 2024-10-27 19:34:13
Score: 5.5
Natty:
Report link

Are you using a custom library for the counters?

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

79131293

Date: 2024-10-27 19:10:08
Score: 6.5
Natty: 7.5
Report link

what about making a pdf from read only to editable ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: Gaming Clan

79131280

Date: 2024-10-27 19:06:06
Score: 4
Natty:
Report link

Just go inside IAM Identity Center > Dashboard, then "Settings summary" on the right.

enter image description here

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

79131268

Date: 2024-10-27 18:58:02
Score: 9 🚩
Natty: 4
Report link

I get this error when I do the following in the jupyter lab:

from pyspark.ml.feature import VectorAssembler

Error: ModuleNotFoundError Traceback (most recent call last) Cell In[5], line 1 ----> 1 from pyspark.ml.feature import VectorAssembler

Can anyone tell how to fix?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can anyone tell how
  • RegEx Blacklisted phrase (1.5): how to fix?
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Trango

79131264

Date: 2024-10-27 18:52:00
Score: 5
Natty: 6
Report link

You can create a program script, or simply use third-party tools like https://app.shubraj.com/email-checker/ https://email-checker.net. You can find the detail in this blog: https://blog.shubraj.com/verify-email-address-without-sending-an-email/

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ab Raj

79131254

Date: 2024-10-27 18:46:59
Score: 4.5
Natty:
Report link

Does any of this work on a database client like Jetbrains Datagrip?

More specifically i am looking for a way to generate uuid while i am feeding and testing data into the table's GUI. And I remember that i used to do it in a way like an excel formula where i wrote something in the column's field for a record and it would know that i want to generate a UUID. Upon hitting Ctrl+Enter it would insert/update the data and generate a uuid as well.

I just do not happen to recall what was it that i used to write :)

Reasons:
  • Blacklisted phrase (2): i am looking for
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Sukumar Rastogi

79131231

Date: 2024-10-27 18:31:54
Score: 10
Natty: 7
Report link

I am having the same struggle following this article getting PostMessage to work. Did you find a solution?

Best Regards Albert

Reasons:
  • Blacklisted phrase (0.5): Best Regards
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): this article
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: AlbNor

79131220

Date: 2024-10-27 18:23:52
Score: 5.5
Natty:
Report link

does appear the same error whene click sync gradle?

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

79131202

Date: 2024-10-27 18:12:47
Score: 13 🚩
Natty:
Report link

Hi @ngrigoriadis i'm currently working on implementing an sdi-12 sensor with a stm32f446re, and i have a similar problem as yours. I can't comment otherwise i would've instead of posting an answer and i thought contacting you via Linkedin wouldn't have been wise. I have a couple questions regarding your solution. First, how do you invert the idle line of UART, i can't seem to find a way; second, how did u implement the break signal and marking before sending the command? I've found in USART1->CR1 a 'send-break' bit which i've enabled, but i can't find a way of controlling the lenght of said signal and how to have a marking before my command. Any help would be deeply appreciated, if there's any other way i contact you let me know.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): i have a similar problem
  • Blacklisted phrase (1): Any help
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (3): Any help would be deeply appreciated
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): i have a similar problem
  • Contains question mark (0.5):
  • User mentioned (1): @ngrigoriadis
  • Low reputation (1):
Posted by: Fabio Marsiglia

79131189

Date: 2024-10-27 18:06:45
Score: 4
Natty:
Report link

Looks like Bean not created. Similar issue i faced before , i clean the project and did the maven install . refresh the project and check the .class file .

Reasons:
  • RegEx Blacklisted phrase (1): Similar issue
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JEngineer

79131039

Date: 2024-10-27 16:45:27
Score: 4
Natty: 4
Report link

While it's true that you may not be using all the memory that your card provides to you, perhaps your processes are using up all the memory that has been allocated to them. In other words, maybe giving them less memory was actually the opposite direction?

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

79131005

Date: 2024-10-27 16:35:23
Score: 6
Natty: 7
Report link

What is the problem with backup and restore?

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): What is the
  • Low reputation (1):
Posted by: Joakim

79130978

Date: 2024-10-27 16:21:17
Score: 6.5 🚩
Natty: 5
Report link

Helloo TikTok support team unfortunately I have forgot my TikTok account password I can't login my account I have 't email access to linked it so please help me to recover my TikTok account .. [email protected]

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me to
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Imad Khan

79130970

Date: 2024-10-27 16:17:15
Score: 4
Natty:
Report link

Model::query()->latest()->get(); model::query()->latest()->take(10)->get();

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

79130948

Date: 2024-10-27 16:07:12
Score: 4.5
Natty:
Report link

I think I've had this problem before, have you checked the directory where you're running the compiler?

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

79130932

Date: 2024-10-27 15:57:10
Score: 5.5
Natty: 5
Report link

If you're still interested...here is the link https://learn.microsoft.com/en-us/answers/questions/519505/xamarin-adm-unable-to-create-device-says-avdmanage

Reasons:
  • Blacklisted phrase (1): here is the link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ганфайтер

79130909

Date: 2024-10-27 15:49:08
Score: 5
Natty:
Report link

In below 2 minutes video we have explained and resolved error with simple solution. https://www.youtube.com/watch?v=s7uSST5rfH0&t=7s

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Error Owl

79130863

Date: 2024-10-27 15:21:59
Score: 6.5 🚩
Natty: 5.5
Report link

How can you effectively use a JSON array of objects in JavaScript to store and manipulate data for a web application? Please let me know.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How can you
  • Low reputation (1):
Posted by: Tom Jim

79130835

Date: 2024-10-27 15:02:55
Score: 4
Natty:
Report link

Upgrading to Synapse Spark Pool version 3.4 solved the issue.

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

79130819

Date: 2024-10-27 14:56:52
Score: 5
Natty:
Report link

I’ve run into the same error and here’s what I think the problem is:

If you were to manually attempt to delete a file such as C:\test.txt, you’d get the following error message:


File Access Denied

You’ll need to provide administrator permission to delete this file


So when excel VBA tries to delete a file in the root directory, I think it also gets an error message.

For me, at least, that seems to be the cause of the problem.

If anyone out there knows how to programmatically give VBA permission to delete a file in the root directory, I’d be grateful.

Hopefully, this post will help to get us all on the right track.

Regards,

Kellog

Reasons:
  • Blacklisted phrase (1): Regards
  • RegEx Blacklisted phrase (2): be grateful
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kellog

79130804

Date: 2024-10-27 14:47:50
Score: 4
Natty: 4
Report link

I need your help because i can't callback the value from the function

look my example:

var data = askQuestion('Are you sure want to continue without adding a server', function(val){
return val; });

console.log(data);

function askQuestion(msg, callback){ $.confirm({

                      title: '',
                      content: msg,
                      type: 'dark',
                      theme: 'light',
                      animation: 'none',
                      animateFromElement: false,
                      columnClass: 'medium',
                      onContentReady: function () {
                          
                      },
                      buttons: {
                          ok: {
                              text: 'Συνέχεια',
                              btnClass: 'btn-dark float-right',
                              action: function(){
                                      
                                    callback(56);
                                    
                              }//end action
                          },//end ok
                          close: {
                                text: 'Ακύρωση',
                                 btnClass: 'btn-dark float-left',
                                 action: function(){
                                      
                                    callback(59);
                                    
                              }//end action
                          }
                        
                      }
                      
            });   

}

How i can to return val into "data" variable and print after that in console.log?

console.log now is not working callback;

i want to check variable 56 or 59 and ONLY if i have result 56 or 57 to continue my code.

Please little help

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2): I need your help
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28010850

79130790

Date: 2024-10-27 14:41:48
Score: 5
Natty:
Report link

In below 2 mins youtube video we have explained and resolved error with simple solution. https://www.youtube.com/watch?v=s7uSST5rfH0&t=41s

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Error Owl

79130784

Date: 2024-10-27 14:38:47
Score: 6
Natty: 7
Report link

Do anybody know if this is possible on Flutter Web?

Reasons:
  • Blacklisted phrase (1): anybody know
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Boni Machado

79130769

Date: 2024-10-27 14:28:45
Score: 4.5
Natty:
Report link

I have the same problem... the image is in public : storage/images/image.png and the route is(http://127.0.0.1:8000/dashboard/category) whenn I try to Do this

success:function(response){
                        
                       =
                        $.each(response.res,function(key, subcat){
                            $('#table').append('<div  class="flex min-w-10 items-center justify-start gap-2 py-2"}`>\
               <img src="/storage/assets/images/subcat/'+subcat.image+')" class="w-16" alt="image">\);

not working bcs I got this as a url http://127.0.0.1:8000/dashboard/category/storage/assets/images/subcat/image.png and it's an 404 error

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Amin ED-Doryani

79130730

Date: 2024-10-27 14:07:37
Score: 8 🚩
Natty: 4
Report link

did you find a solution? i also experienced the same thing but with a different protocol, ISO14230 KWP2000 and haven't found a solution yet.

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • RegEx Blacklisted phrase (1): haven't found a solution
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution
  • Low reputation (1):
Posted by: Neoraxs

79130702

Date: 2024-10-27 13:49:32
Score: 4.5
Natty:
Report link

As stated by @codenanda, I was using the wrong file format. The current version of the OpenAI API only supports JSON files.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @codenanda
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriela

79130695

Date: 2024-10-27 13:45:32
Score: 4
Natty: 4.5
Report link

https://developer.android.com/reference/android/Manifest.permission#DUMP

pm grant com.maxmpz.equalizer android.permission.DUMP

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

79130662

Date: 2024-10-27 13:21:27
Score: 4.5
Natty: 4
Report link

i have the same problem, after trying many solution proposed, i fixed this by download recent jar file and i renamed it with the same name of version that generate the error and it worked.

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • Blacklisted phrase (1.5): any solution
  • Whitelisted phrase (-2): i fixed
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: AGA

79130657

Date: 2024-10-27 13:20:26
Score: 4
Natty:
Report link

thanks all, it work the issue is that i was using forward slashes but backward slashes are required

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nauman Yaseen

79130615

Date: 2024-10-27 12:54:18
Score: 6 🚩
Natty:
Report link

did you restart vscode already?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (0.5):
Posted by: Rene Smit

79130544

Date: 2024-10-27 12:16:09
Score: 4.5
Natty:
Report link

There is a project here https://github.com/chaseastewart/fhir-converter that I used to convert custom json to FHIR R4 with liquid templates

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

79130464

Date: 2024-10-27 11:31:59
Score: 4
Natty:
Report link

As @jcalz wrote, it's not a feature of TS unfortunately, I had to work with a BE developer to change the Java code (which wasn't optimal).

Thanks to everyone who helped!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @jcalz
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Avi

79130442

Date: 2024-10-27 11:19:57
Score: 4.5
Natty: 4.5
Report link

There are a couple of good tutorials at https://diversify.me.uk/how-to-use-the-wordpress-svn-quick-start-tutorial/

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

79130394

Date: 2024-10-27 10:51:50
Score: 5.5
Natty:
Report link

Hi i am having same issue on windows 10 import datetime as dt import numpy as np from matplotlib import pyplot as plt from matplotlib import style

Traceback (most recent call last): File "c:\Users\ioann\OneDrive\Desktop\MISC\Stock Market training\main.py", line 3, in from matplotlib import pyplot as plt File "C:\Users\ioann\AppData\Local\Programs\Python\Python313\Lib\site-packages\matplotlib_init_.py", line 263, in check_versions() ~~~~~~~~~~~~~~~^^ File "C:\Users\ioann\AppData\Local\Programs\Python\Python313\Lib\site-packages\matplotlib_init.py", line 257, in check_versions module = importlib.import_module(modname) File "C:\Users\ioann\AppData\Local\Programs\Python\Python313\Lib\importlib_init.py", line 88, in import_module return _bootstrap.gcd_import(name[level:], package, level) ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Users\ioann\AppData\Local\Programs\Python\Python313\Lib\site-packages\kiwisolver_init.py", line 8, in from ._cext import ( ...<8 lines>... ) ImportError: DLL load failed while importing _cext: %1 is not a valid Win32 application.

Reasons:
  • RegEx Blacklisted phrase (2): Hi i am having
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): i am having same issue
  • Filler text (0.5): ~~~~~~~~~~~~~~~
  • Filler text (0): ~~~~~~~~~~~~~~~~~~~~~~
  • Filler text (0): ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  • Low reputation (1):
Posted by: Grey_Hunter

79130340

Date: 2024-10-27 10:22:43
Score: 4
Natty: 4.5
Report link

https://blog.csdn.net/u011808788/article/details/143272048?sharetype=blogdetail&sharerId=143272048&sharerefer=PC&sharesource=u011808788&spm=1011.2480.3001.8118

here is a tcl demo convert hmetis (hypergraph) to metis (graph)

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

79130307

Date: 2024-10-27 10:02:38
Score: 4
Natty:
Report link

Include glad before including glfw.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anıl Doğan

79130274

Date: 2024-10-27 09:43:31
Score: 8.5 🚩
Natty: 4
Report link

Have you managed to find the solution? I'm facing the same issue. If I set the autorender true, the handleCameraStream function works fine, but the camera image is not refreshing...

Reasons:
  • Blacklisted phrase (3): Have you managed
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nagy Boti

79130255

Date: 2024-10-27 09:27:25
Score: 6 🚩
Natty: 4.5
Report link

StoryLED.L.LifeEternalDeath.account123.42.bornot2bthatsthe?fthemeaningoflife42

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Desmosislife

79130249

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

Git for Windows 2.47.0.windows.1 had a bug Update to 2.47.0.windows.2 to solve this issue

https://github.com/git-for-windows/git/issues/5199

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

79130246

Date: 2024-10-27 09:21:21
Score: 11.5 🚩
Natty: 6.5
Report link

How did you solve the issue? I am facing the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): did you solve the
  • RegEx Blacklisted phrase (1.5): solve the issue?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How did you solve the is
  • Low reputation (1):
Posted by: rasik nepal

79130220

Date: 2024-10-27 09:05:17
Score: 4
Natty:
Report link

Try running it with root permission.

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

79130219

Date: 2024-10-27 09:05:17
Score: 4
Natty:
Report link

Just read your post. Over the last year, we have significantly improved our documentation to make it more complete. You can find it here: https://krypton-suite.github.io/Standard-Toolkit-Online-Help/Source/Help/Output/index.html

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

79130152

Date: 2024-10-27 08:24:06
Score: 4.5
Natty:
Report link

You could use AOP and intercept all methods with annotation @Modifying.

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

79130081

Date: 2024-10-27 07:28:54
Score: 4.5
Natty:
Report link

The LeftSideBar in my project is quite the same. I am facing a similar issue here. When user (try to) log out, they are not actually logging out.

here are the code snippets that might be helpful -

const { signOut } = useClerk();

const handleLogout = async () => {
        await signOut();
        router.push('/sign-in'); // Redirect to sign-in page after logout
    };

            <SignedIn>
                    <div className="flex cursor-pointer" onClick={handleLogout}>
                        <Image
                            src="/assets/logout.svg"
                            alt="logout"
                            width={24}
                            height={24}
                        />

                        <p className="text-light-2 max-lg:hidden px-4" >
                            Logout
                        </p>
                    </div>
            </SignedIn>

Have you resolved the issue? Tell me about it.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved the issue?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Shreyas2604

79130048

Date: 2024-10-27 06:58:48
Score: 4
Natty:
Report link

¿Con quién puedo hablar dentro de tu empresa Analyticalpost para comentar la posibilidad de que aparezcáis en prensa? Hemos conseguido que negocios como el tuyo sean publicados en periódicos como La Razón o MSN, entre muchos otros (como noticia y no será borrada).

¿Qué consigues con esto?

Trabajamos con tarifas desde 99e, sin permanencia y con garantía de devolución por resultados.

Te puedo enseñar ejemplos y casos de éxito en video para que veas cómo funciona.

¿Cuándo te iría mejor que lo comentáramos? Puedes confirmarme tu teléfono o reservar una llamada con nosotros directamente: https://calendly.com/prensa-digital/15min

Un saludo,

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (1): cómo
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Carmen

79130024

Date: 2024-10-27 06:33:40
Score: 13 🚩
Natty:
Report link

i have same issue. did you solve it?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): i have same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: llillliii lrend

79130001

Date: 2024-10-27 06:11:37
Score: 5.5
Natty: 5
Report link

Sir, Please provide the code of Aadhaar 14 digit Enrollment No and Aadhaar 28 digit Enrollment No validation in php

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide the code
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Radheshyam SHah

79129960

Date: 2024-10-27 05:37:26
Score: 6 🚩
Natty:
Report link
`I have saved my random classifier in pickle and the count vectorizer in vectorizer.py as shown below but I am getting Vocabulary not fitted or provided. Kindly help. Please let me know if any errors as well.


from vectorizer import vect
clf = pickle.load(open(os.path.join('pkl_objects', 'r_classifier.pkl'), 'rb'))

example = ["HELLO is racist"]
X = vect.transform(example)

prediction = clf.predict(X)
probability = clf.predict_proba(X)

print('Prediction: %s\nProbability: %.2f%%' % (label[prediction[0]], np.max(probability) * 100))

Vecotrizer.py
%%writefile HateSpeechDetection/vectorizer.py
from sklearn.feature_extraction.text import CountVectorizer
from nltk.stem import WordNetLemmatizer
import re
import os
import pickle

cur_dir = os.path.dirname(__file__)
stop = pickle.load(open(
                os.path.join(cur_dir, 
                'pkl_objects', 
                'stopwords.pkl'), 'rb'))

lemmatizer = WordNetLemmatizer()

def preprocessor(tweet):
    
    # Removal of user handles
    tweet = re.sub('@[\w\-]+','', tweet)
    
    # Coverting the string into lower case
    tweet = str(tweet).lower()
    
    tweet = re.sub('\[.*?\]','',tweet)
    
    # Removal of HTML linkups
    tweet = re.sub('http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|''[!*\(\),]|(?:%[0-9a-fA-F][0-    9a-fA-F]))+','',tweet)
    tweet = re.sub('<.*?>+', '', tweet)
    
    # Removal of punctuations
    tweet = re.sub('[%s]' % re.escape(string.punctuation), '', tweet)
    tweet = re.sub('\n','',tweet)
    tweet = re.sub('\w*\d\w*', '', tweet)
    
    # Removal of stopwords
    tweet = [word for word in tweet.split(' ') if word not in stopwords]
    
    #removal of greek characters
    tweet = [' '.join([unidecode.unidecode(word) for word in str(t).split()]) if t is not None else t for t in tweet]
    
    #lemmetizing of tweets
    tweet = [" ".join(lemmatizer.lemmatize(word) for word in t.split()) for t in tweet]
    
    tweet = " ".join(tweet)
    return tweet

vect = CountVectorizer()

def process_tweet(tweet):
    # Process the tweet
    processed_tweet = preprocessor(tweet)

    
    vect.transform([processed_tweet])  # Pass a list of processed_tweet

    return processed_tweet

I want to import the code to flask to create a web embedding but stuck near this one poin
`
Reasons:
  • Blacklisted phrase (3): Kindly help
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kondapalli Sri Krishna Priya

79129844

Date: 2024-10-27 03:31:03
Score: 5.5
Natty: 4
Report link

I also have an issue in the google maps marker that is, when I zoom in the map, the markers position is changing and it showing in the different location.

I face this issue after using this flutter package for custom markers widget_to_marker: ^1.0.4

can somebody help me to make the marker stick in one position rather than moving while zooming in

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can somebody help me
  • No code block (0.5):
  • Low reputation (1):
Posted by: raagull sakthivel

79129814

Date: 2024-10-27 02:51:55
Score: 4
Natty: 4
Report link

Use: bigcharts.marketwatch.com/quickchart/options.asp?symb=TSLA&showAll=True

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: S T

79129801

Date: 2024-10-27 02:20:49
Score: 4.5
Natty:
Report link

If meta tags are no longer used or important, why does the absence of a meta tag ding my SEO score as evaluated by Google for Developers enter link description here

https://developer.chrome.com/docs/lighthouse/seo/meta-description/?utm_source=lighthouse&utm_medium=lr

And if they are still important, why doesn't Google Sites let me add them?

Google, keep it consistent please.

Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: E.E.

79129770

Date: 2024-10-27 01:40:41
Score: 4
Natty:
Report link

I found my mistake is not following WordPress documentation about Nginx Advance Administration Server (https://developer.wordpress.org/advanced-administration/server/web-server/nginx/). Now My website running perfectly.

My configuiration for WordPress Multisite Subdirectories

https://github.com/ahmadbagwi/Nginx-WordPress-Multisite

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ahmadbagwi

79129762

Date: 2024-10-27 01:35:40
Score: 4.5
Natty:
Report link

THis was due to a timeout on the deepgram request. I needed to use callbacks.

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

79129683

Date: 2024-10-27 00:20:25
Score: 5.5
Natty:
Report link

I too want to use the Stripe library on the web with Flutter. Does anyone have a full working example of this with current Flutter version/etc. I am not a JS developer so need a solid working example.

Reasons:
  • RegEx Blacklisted phrase (3): Does anyone have a full
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user1340123

79129678

Date: 2024-10-27 00:14:22
Score: 4
Natty:
Report link

Removing extension="ftp.so" from /usr/local/etc/php/7.4/php.ini

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

79129667

Date: 2024-10-26 23:56:19
Score: 5
Natty:
Report link

Here is another solution Click Here to check from github. My problem was all files were crypted and Google Drive was also keeping the crypted and previous versions. I had to convert some files urgently and any script will be run will have issue with the recovered files.So I checked documents and discuss with people who understands.I even searched and ask ai tools. At one point i figured how to solve it and shared it in github for anyone who wants to update , use or even change the code.

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (2): urgently
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: melic

79129640

Date: 2024-10-26 23:26:13
Score: 4
Natty:
Report link

Install Manim via chocolatey so that it is recognised by VS Code https://community.chocolatey.org/packages/manimce

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

79129629

Date: 2024-10-26 23:14:09
Score: 6.5 🚩
Natty:
Report link

Now I did a change in the sources list (was empty before). now this is the problem: sudo apt-get update enter image description here

my sources list: enter image description here

do you know what is the problem?

Thanks a lot!!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user28003404

79129564

Date: 2024-10-26 22:30:00
Score: 4
Natty:
Report link

It seems like this is not possible. To quote @user17732522, "there is nothing in the language to test the validity of an instantiation."

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @user17732522
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Dorian

79129562

Date: 2024-10-26 22:27:57
Score: 10.5 🚩
Natty:
Report link

Did you solve the problem? I'm stuck too

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm stuck
  • RegEx Blacklisted phrase (3): Did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you solve the
  • Low reputation (1):
Posted by: phellype

79129507

Date: 2024-10-26 21:44:46
Score: 7.5 🚩
Natty: 4
Report link

Actually, the answer above is incorrect. It produces the error Error in if (test$year == 2019) { : the condition has length > 1

and if one uses ifelse then the error is Error in ifelse(test$year == 2018) : argument "yes" is missing, with no default

Can anyone clarify?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can anyone clarify
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: JohnS

79129472

Date: 2024-10-26 21:18:41
Score: 5.5
Natty:
Report link

please try v5 of [email protected] which does not require storing any temp files on the storage. It does all the processing in memory. It should fix your problem. Please let me know here or create an issue in the officeparser git repo if it does not.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Harsh

79129427

Date: 2024-10-26 20:48:32
Score: 11.5 🚩
Natty: 5.5
Report link

How did you get just what i am looking for? I want Gallery to ignore .nomedia files, i am very mad deleting .nomedia files every day, multiple times per day ... some applications re-create the .nomedia files.

I hate the person who desing such .nomedia concept without a checkbox to ignore them... better never be born!!!

How much cost to the designer of apps that uses .nomedia files to make an option to ignore and/or not create them?????

Reasons:
  • Blacklisted phrase (2): i am looking for
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (3): did you get
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Laura

79129401

Date: 2024-10-26 20:25:27
Score: 5.5
Natty: 5.5
Report link

AmazonMQ does not support jmxurl then how should we connect amazon active mq using commandline tools?

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

79129347

Date: 2024-10-26 19:51:19
Score: 4
Natty:
Report link

found the problem, just delete the config folder from your robocode folder, it just a bug, idk why these guys dont fix ts, is so bad...........

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Filler text (0.5): ...........
  • Low reputation (1):
Posted by: Dex

79129336

Date: 2024-10-26 19:44:17
Score: 4.5
Natty:
Report link

I just needed to implement this in my code: thank you @mklement0 -

Also, to avoid false positives, use ... -replace ('\b' + [regex]::Escape($oldString) + '\b'), $replacements[$oldString]

It all works now. Thanks!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @mklement0
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ryane Helder

79129159

Date: 2024-10-26 18:03:55
Score: 4
Natty: 4.5
Report link

I'm sorry, can't you just calculate strategy.max_drawdown and strategy.max_drawdown_percent?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jonathan DeCollibus

79129088

Date: 2024-10-26 17:25:46
Score: 6.5
Natty: 7
Report link

how can i do these this by seen the character but get the follow source https://www.mycompiler.io/view/CS2cGydmOEN https://www.mycompiler.io/view/CS2cGydmOEN

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): can i do
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): how can i
  • Low reputation (1):
Posted by: kaaluXhatela

79128952

Date: 2024-10-26 16:18:29
Score: 5.5
Natty: 7
Report link

best way follow this tutorial for middleware pipeline https://www.bacancytechnology.com/blog/implement-middleware-pipeline-in-vuejs

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: odion_cloud

79128948

Date: 2024-10-26 16:12:25
Score: 11.5 🚩
Natty: 5.5
Report link

Did you find a fix for this?

Having the same issue.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Did you find a fix
  • RegEx Blacklisted phrase (1.5): fix for this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a fix for this
  • Low reputation (1):
Posted by: 0bjekt

79128900

Date: 2024-10-26 15:52:20
Score: 4
Natty:
Report link

This relay is not working in windows 11 (if anyone encountered this problem)

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

79128885

Date: 2024-10-26 15:45:19
Score: 5
Natty: 5
Report link

i have a qeustion? what are the numbers on track 2 that fall after the service code? what do they represent and why are they different for each card?

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

79128844

Date: 2024-10-26 15:27:12
Score: 8 🚩
Natty: 5
Report link

could someone help me? when running my script gives this error in the terminal: SyntaxError: Unexpected end of input at ModuleLoader.moduleStrategy (node:internal/modules/esm/translators:152:18) at ModuleLoader.moduleProvider (node:internal/modules/esm/loader:298:14) at async link (node:internal/modules/esm/module_job:67:21)

Anyone who can help me find the error in the script will be very grateful

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): could someone help me
  • RegEx Blacklisted phrase (2): will be very grateful
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: leandro kappeel

79128791

Date: 2024-10-26 14:57:05
Score: 4.5
Natty:
Report link

Sign up with SOHOTOGEL

now and seize your opportunity to hit the jackpot! Experience top-tier service and enjoy the most generous bonus offers in Indonesia!

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

79128789

Date: 2024-10-26 14:56:03
Score: 10.5 🚩
Natty: 5.5
Report link

Actually, they have asked to create calculated column only. Even if you create it as measure, it is still not showing the chart as expected after plotting them. If anyone has completed this, please help me out. I am stuck here.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (2): help me out
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ayesha Fatima

79128758

Date: 2024-10-26 14:42:58
Score: 6.5 🚩
Natty: 5.5
Report link

May I ask how you get the kurtosis of PCA and ICA?

Reasons:
  • Blacklisted phrase (1): May I ask
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zhaocheng Yang

79128740

Date: 2024-10-26 14:32:55
Score: 4
Natty: 4
Report link

I found very helpful article about to access Microsoft Outlook emails using Microsoft graph API in Java.

https://medium.com/@nareshdevassist/setup-required-for-office-365-email-integration-and-reading-emails-using-microsoft-graph-api-in-3741e2a5ef80

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Naresh Kumar

79128731

Date: 2024-10-26 14:25:52
Score: 7 🚩
Natty:
Report link

I'm getting the same error right now; I think it might be a GCP issue.

Reasons:
  • RegEx Blacklisted phrase (1): I'm getting the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm getting the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Javier Cabrera

79128728

Date: 2024-10-26 14:24:51
Score: 4
Natty:
Report link

As it turns out, iOS 18.1 fixed this issue.

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

79128702

Date: 2024-10-26 14:16:49
Score: 5.5
Natty: 7
Report link

does anyone know how to get the optimal parameters in frangi filters for blood vessel enhancement? Thanks for the insightful discussion in this thread.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2): does anyone know
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hafsa Moontari Ali

79128687

Date: 2024-10-26 14:08:46
Score: 4
Natty:
Report link

Iansipave Www.vimeo.com/461963019

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

79128665

Date: 2024-10-26 13:52:41
Score: 6 🚩
Natty: 4
Report link

I'm facing the same problem

In iOS 16 and iOS 17 I had a .onTapGesture on the parents view, and in the child view one list with items.

That items have a few swipe actions on it.

Now with iOS 18 suddenly stops working.

I already test the solutions provided and anything worked for me

Sometimes, when you swipe a few times on a items the swipe action start to work but this is not the correct way to use it.

Someone with problems in the swipe actions too?

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jose Antonio Navarro Cantero

79128550

Date: 2024-10-26 12:45:25
Score: 5
Natty:
Report link

One day when I'm dead or compensated for this outrageouse hosting of my internet by 1000's of people I don't know working so hard to make me not get what I want and am entitled to is my privacy!!! I have been stalked for 15 years by these freaks and claimed I'm mentally unwell when these fuckwits know exactly what their doing and knowone cares because they created a reason for people to not care I'm so beside myself but I will win this if it kills me!!

Reasons:
  • Blacklisted phrase (2): fuck
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Thomas David. Sellars

79128455

Date: 2024-10-26 11:55:14
Score: 5
Natty: 5
Report link

I was looking for the same thing. Perhaps distribute your program as a web app - getting round the need to install anything locally?

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

79128414

Date: 2024-10-26 11:35:09
Score: 5.5
Natty: 7
Report link

This will only place Address1 and Address2 on same line in WP admin. Not in Customer Mail and packing slips (that hooks * $this->shipping_address(); * OR * $this->billing_address(); *).

How can I place Address1 and Address2 everywhere on same line?

Thanks a lot!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): How can I
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: André

79128398

Date: 2024-10-26 11:26:04
Score: 6 🚩
Natty:
Report link

I just had this problem and solved it by using:

"key" in obj

How do I check if an object has a key in JavaScript?

Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sharp Franklin

79128301

Date: 2024-10-26 10:25:50
Score: 4
Natty:
Report link

try this package mobile_number

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sahil Kundaliya

79128282

Date: 2024-10-26 10:18:48
Score: 5
Natty:
Report link

It is a bug in DeepDiff described and fixed here https://github.com/seperman/deepdiff/issues/493

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

79128273

Date: 2024-10-26 10:15:47
Score: 5.5
Natty: 5.5
Report link

VSCode doesn't run python file when i click RUN, instead messing with debugger and visualizing code ?

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

79128244

Date: 2024-10-26 09:59:41
Score: 7 🚩
Natty: 4.5
Report link

I have the same issue. I opened a new bug. https://github.com/vitest-dev/vscode/issues/513

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (0.5):
Posted by: Nike

79128242

Date: 2024-10-26 09:58:40
Score: 5
Natty:
Report link

I'm Update Vs 2022 to VS Preview version and fixed it enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohammad Mamaghaniyan

79128204

Date: 2024-10-26 09:29:34
Score: 11
Natty: 7.5
Report link

how did you solve this problem?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how did you solve this
  • Low reputation (1):
Posted by: Ahmet Taner Atila