Nigel Sheridan-Smith
Nigel Sheridan-Smith
@gshaxor, you can use this approach: http://stackoverflow.com/questions/25129845/jquery-steps-into-a-angularjs-directive#answer-25182764 However, you will quickly come up against another problem, if you use `transclude: true` on any child directives (... a problem I am...
Here was my final solution, including event handlers: ``` coffeescript app.directive('uiWizardForm', [ -> return { scope: { stepChanging: '=', stepChanged: '=', finished: '&' }, compile: (tElement, tAttrs, transclude) -> tElement.wrapInner('')...
This works with OpenLDAP (using MD5 hashes)... ``` php function authLdap_passwordReset($user, $password) { $ldap_rdn = 'cn=admin,dc=company,dc=com'; $ldap_pw = 'adminpw'; $ldap_orgunit = 'ou=people,dc=company,dc=com'; $ldap_conn = ldap_connect("ldap://id.company.com", 389); if ($ldap_conn) { ldap_set_option($ldap_conn,...
@heiglandreas no probs... hope this helps someone else.
If you are using Node.js server-side grpc-web, then it defaults to HTTP/2. However, AWS ALB can be configured for HTTP/1.1 https://stackoverflow.com/questions/65233710/fetch-in-node-receiving-status-code-464-but-working-in-browser Setting `GRPC_VERBOSITY=debug GRPC_TRACE=all` I can see this: ``` D...
Actually HTTP/1.1 won't work, as GRPC relies on HTTP/2 Here's the AWS setting for request vs. configured protocol https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html#target-group-protocol-version It should work, so this is some sort of issue with...
I found a potentially related issue. Seems that the version of `gunicorn` in Redash 10.1.0 is `v20.0.4` where they were halfway between patching this Keep Alive behaviour. https://github.com/benoitc/gunicorn/issues/2297 If you...
Seems to be stable in production with `gunicorn` `v21.0.1` 🎉
``` semgrep scan --debug --config p/javascript ``` ... give me: ``` Running semgrep-core with command: /Users/nigelss/Library/Python/3.9/lib/python/site-packages/semgrep/bin/semgrep-core -json -rules /var/folders/th/nmp5p62x3k15m5c9g1thzkn80000gn/T/tmpy3vssgim.json -j 10 -targets /var/folders/th/nmp5p62x3k15m5c9g1thzkn80000gn/T/tmp6nmwm__u -timeout 30 -timeout_threshold 3 -max_memory 0 -json_time...
On Node >=18: ``` PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 yarn add puppeteer node node_modules/puppeteer/install.mjs ``` Based on this: https://github.com/puppeteer/puppeteer/issues/6622#issuecomment-1908747462 I was also able to change `@percy/agent` to `@percy/cli` to resolve this but it broke...