Author Archives: j5423

Chome – thisisunsafe

If you are in Chrome and cannot proceed because of “Your connection is not private”, you can type “thisisunsafe” anywhere in the window (do not type it in the url input field). Then you can proceed.

Posted in Uncategorized | Leave a comment

Weird SQL DB error in my Grails code

I got the following error in my Grails app but Parameter 32 doesn’t make sense to me. Then I googled and found why. I copied the answer from stackoverflow.com. Exception Message: The incoming tabular data stream (TDS) remote procedure call (RPC) … Continue reading

Posted in Uncategorized | Leave a comment

How to remove ^M from files in Linux

Posted in Uncategorized | Leave a comment

How to migrate from Gitlab to Bitbucket

Follow these steps: Create a new repo in bitbucket.

Posted in Uncategorized | Leave a comment

How to fix access denied error for a folder

These are steps followed (https://softwarekeep.com/help-center/how-to-fix-the-failed-to-enumerate-objects-in-the-container-error-on-windows-10):

Posted in Uncategorized | Leave a comment

SQLite tool

https://marketplace.visualstudio.com/items?itemName=ErikEJ.SQLServerCompactSQLiteToolbox

Posted in Uncategorized | Leave a comment

Cannot send mail using crontab

Issued is like this one and I put comments under it: https://stackoverflow.com/questions/42488101/python-script-not-executed-from-cron/72339239#72339239 The following is helpful but I haven’t tested it yet: Cronjobs run in a minimal environment, so you can’t even assume that $PATH is set correctly. The script is probably … Continue reading

Posted in Uncategorized | Leave a comment

How check crontab logs

cat /var/log/syslog |grep cron

Posted in Uncategorized | Leave a comment

How to check IIS Application Pool last restarted time

First find the process id of your w3wp.exe process in Task Manager. In my case it is 4004 and run this command in Powershell: (Get-Process -Id 4004).StartTime

Posted in Uncategorized | Leave a comment

SQL Server database – Invalid column name “ClusterID”

If you get this error, you can try the following to make it disappear.

Posted in Uncategorized | Leave a comment