
Author: jkala

Solution: warning: should not use basic type string as key in context.WithValue (golint)
Problem warning: should not use basic type string as key in context.WithValue (golint) Which was incredibly annoying, so the solution is, you must add “// nolint” at the end of …
Read More
Java – Class Mocking Requires to Have cglib and objenesis libraries in the classpath – Solved
Class Mocking Requires to Have cglib and objenesis Libraries in the classpath – Solved In java when you are trying to test easymock-ed classes, you will most likely get this …
Read More
Update Github State When ServiceNow Incident State is Updated
Update Github State When ServiceNow Incident State is Updated Objective: Whenever a ServiceNow incident is closed, I want to update its corresponding Github issue with a comment and close it …
Read More
ServiceNow – Resolve Incident via REST call
ServiceNow – Resolve Incident via REST call https://devxxxx.service-now.com/api/now/table/incident/76fa56d0db021300e105d740cf96191b sys_id = 76fa56d0db021300e105d740cf96191b how to get sys_id is described here { ‘caller_id’:‘alfonso.griglen@example.com’, ‘close_code’:‘Solved (Permanently)’, ‘close_notes’:‘It was an easy Fix’, ‘state’:‘6’, ‘short_description’:‘Updating state to Solved’, ‘description’:‘details about what the problem was’ } This how the JSON …
Read More
ServiceNow – How to Get sys_id of an Incident
ServiceNow – How to get a sys_id value of an incident The REST call below would return every incident that’s been created: https://devxxxx.service-now.com/api/now/table/incident Details included in the response message will …
Read More
Block xfinitywifi From Network List
Remove xfinity Wi-Fi From Network List I had a case not too long ago where my windows system was defaulting to xfinity wifi every time my Wi-Fi signal was lost. …
Read More
Cryptocurrency Hard Learned Lessons
Cryptocurrency Hard Learned Lessons Hey folks As cryptocurrency is picking up its momentum, there are sleazy two faced bastards out there taking advantage of new investors. These motherless and shameless …
Read More
Update DB2 table With a Join
Update DB2 table With a Join Acknowledging that DB2 doesn’t allow JOINS in the update statement, utilizing MERGE INTO is the key to achieve what we want. Let’s say we …
Read More
Java was started but returned exit code=13 – Solved
Java was started but returned exit code=13 Step 1: Locate your javaw.exe file javax.exe is located in the java bin folder. Mine happens to be placed in Program files like …
Read More