Skr00b@!!
Skr00b@!!
Hello, I'm basically trying to match parts of dates using text comparisons. Like so: ``` Select * from table where text(timestamptzfield) LIKE '%20:36%' ``` It works in PgAdmin, and the...
For some reason either the callback function is not called when get is executed or the console write stream is lost. This is when you connect to a server and...
code: ```javascript AWSMock.mock('S3', 'getSignedUrl', 'message'); const s3 = new AWS.S3({ paramValidation: true }), const s3Url = s3.getSignedUrl('getObject', {Key: 'key', Bucket: 'Bucket'}); console.log(s3Url); //should be a string... However it looks more...
Compound conditional expressions do not evaluate correctly for example: ``` parameters.thing == "Yes" && (#judgement("Is Mine?").equals("No") || parameters.stolen == "Yes") ``` This produces a result of false for some reason...