I need to only allow one instance of my Golang executable at a time. I'm not sure how to use a Global Mutex to make sure no other instances are running. This w
I am trying to import a pfx certificate (with password) using python requests library(Post method). Code: headers = {'Authorization': pstr_auth_header, 'Conten
I have a file called im.db in my current working directory, as shown here: I also am able to query this database directly from sqlite3 at the command line: % s
In my code I did ldapsearch an object/contact and got an result and after saving the result into a file, I want to ldapdelete same entry/contact from AD. ldapse
I have an app that was deployed to heroku. In that app, there is a file called data.js that has a few links to some tiktok videos. I have noticed that everyday,
i am trying to create a function which checks if all the elements in a list are palindrome.In my list i have two elements which are both palindrome,but my func
I made a discord.py bot for one of our members, as a joke. im testing it out and it doesnt work at all. can someone tell me what can be wrong with this code? fr
I came across this second order non linear ODE How do i input the BCs into bvp5/4c function and is this possible to be solved by bvp5/4c function?
I have a dispatched action in React Component and saga listen this action and do async call COMPONENT: dispatch(getGroups, (success) => setStatus(success)) A