-
Updated
Feb 5, 2022 - Go
code-generation
Here are 1,438 public repositories matching this topic...
-
Updated
Jan 16, 2022 - Swift
-
Updated
Feb 7, 2022 - Go
-
Updated
Sep 2, 2020 - LLVM
-
Updated
Feb 6, 2022 - Java
What happened?
What you expected to happen
We should be consistent with our icons, which means if we have a specific download icon,
it should be the same across the app.
so let's use the icon called "download1" for all our download buttons

curl -k --digest --user username:password url
is converted to
import requests
response = requests.get('http://url', verify=False, auth=('username', 'password'))
but should be
import requests
response = requests.get('http://url', verify=False, auth=requests.auth.HTTPDigestAuth('username', 'password'))