About 51 results
Open links in new tab
  1. oop - What do __init__ and self do in Python? - Stack Overflow

    Jul 8, 2017 · In this case, there are some benefits to allowing this: 1) Methods are just functions that happen defined in a class, and need to be callable either as bound methods with implicit self passing …

  2. What is the purpose of the `self` parameter? Why is it needed?

    For a language-agnostic consideration of the design decision, see What is the advantage of having this/self pointer mandatory explicit?. To close debugging questions where OP omitted a self …

  3. Openssl : error "self signed certificate in certificate chain"

    Aug 29, 2012 · You have a certificate which is self-signed, so it's non-trusted by default, that's why OpenSSL complains. This warning is actually a good thing, because this scenario might also rise due …

  4. What is SELF JOIN and when would you use it? [duplicate]

    Jun 13, 2024 · A self join is simply when you join a table with itself. There is no SELF JOIN keyword, you just write an ordinary join where both tables involved in the join are the same table. One thing to …

  5. How can I generate a self-signed SSL certificate using OpenSSL?

    A self-signed certificate does not chain back to a trusted anchor. The best way to avoid this is: Create your own authority (i.e., become a CA) Create a certificate signing request (CSR) for the server Sign …

  6. How can I get Python Requests to trust a self-signed SSL certificate ...

    In my case, I was using self-signed certificate generated by mkcert. While curl works fine with such self-signed certificates, the Python requests module does not.

  7. Self-reference for cell, column and row in worksheet functions

    Jun 13, 2011 · In a worksheet function in Excel, how do you self-reference the cell, column or row you're in?

  8. How can I create a self-signed certificate for 'localhost'?

    I've gone through the steps detailed in How do you use HTTPS and SSL on 'localhost'?, but this sets up a self-signed certificate for my machine name, and when browsing it via https://localhost, I receive …

  9. Mockito is currently self-attaching to enable the inline-mock-maker ...

    Dec 13, 2024 · I get this warning while testing in Spring Boot: Mockito is currently self-attaching to enable the inline-mock-maker. This will no longer work in future releases of the JDK. Please add …

  10. Getting Chrome to accept a self-signed localhost certificate

    May 23, 2017 · I have created a self-signed SSL certificate for the localhost CN. Firefox accepts this certificate after initially complaining about it, as expected. Chrome and Internet Explorer. However, …