Cowsay is one of those packages you just end up installing randomly on just about any client over time.
And if your using ansible you may be in for a little surprise:
[Read More]Cowsay is one of those packages you just end up installing randomly on just about any client over time.
And if your using ansible you may be in for a little surprise:
[Read More]Django’s CSRF protection is usually a great thing, but when building (API) endpoints meant to be accessed by scripts/third parties it gets in the way of that.
This is how to disable it:
from django.utils.decorators import method_decorator
from django.views.decorators.csrf import csrf_exempt
@method_decorator(csrf_exempt, name='dispatch')
class MyView(View):
pass
from django.views.decorators.csrf import csrf_exempt
@csrf_exempt
def my_view(request):
pass
Since early 2019 the sprig
library used by helm
provides a concat
function that does exactly this.
Think before you enable this, it could be a security risk
Options
, then click Continue
Utilities
menu select Startup Security Utility
Security Policy
Reduced Security
Allow user management of kernel extensions from identified developers
Things I do to be a good code reviewee.
[Read More]