About 9,260,000 results
Open links in new tab
  1. 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 …

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

    The W3C's WebAppSec Working Group is starting to look at the issue. See, for example, Proposal: Marking HTTP As Non-Secure. How to create a self-signed certificate with …

  3. node.js - NPM self_signed_cert_in_chain - Stack Overflow

    NPM self_signed_cert_in_chain Asked 9 years, 11 months ago Modified 5 months ago Viewed 206k times

  4. Why do I get "TypeError: Missing 1 required positional argument: …

    The self keyword in Python is analogous to this keyword in C++ / Java / C#. In Python 2 it is done implicitly by the compiler (yes Python does compilation internally).

  5. How do I disable the security certificate check in Python requests

    All the safety caveats noted above apply. Do this only if you know what you're doing. I use this approach when I run unit tests against an API on localhost which uses a self-signed certificate. …

  6. How to 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. Ignore invalid self-signed ssl certificate in node.js with https ...

    I was having trouble with running tests using mocha on my self-signed https node server, and adding this immediately before any describe blocks made my tests pass.

  8. What is the purpose of a self executing function in javascript?

    2 Self executing function are used to manage the scope of a Variable. The scope of a variable is the region of your program in which it is defined. A global variable has global scope; it is …

  9. 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 …

  10. python - Missing 1 required positional argument - Stack Overflow

    31 This question already has answers here: Why do I get "TypeError: Missing 1 required positional argument: 'self'"? (10 answers)