John Jelinek IV

Results 125 comments of John Jelinek IV

I didn't need to rename for v0.12. Had the same error though when running. On Jan 16, 2015 12:39 AM, "Adam Ralph" [email protected] wrote: > 0.12 works without the scriptcs_...

note: I've never heard of `LD_LIBRARY_datafile` before -- not sure what that should be set to. `ORACLE_HOME` and `LD_LIBRARY` are set though.

``` - hosts: localhost gather_facts: no connection: local tasks: - name: create domain tablespace oracle_tablespace: hostname: "{{ RDS_HOST }}" service_name: "{{ RDS_SERVICE_NAME }}" user: "{{ RDS_USER }}" password: "{{ RDS_PASSWORD...

@TerryHowe: yes! Please make this an ansible collection!

The absolute path helped (with double `\` in the path). I get a follow-up error in the debug console: ``` Launch requestListening for transport dt_socket at address: 8030 REPL server...

Is there any way to alter the timeout time?

I increased the timeout in `project.clj`, but after the nREPL loaded, vscode stated: `Debug adapter process has terminated unexpectedly` again.

Turns out I had a typo: I was missing an extra `\` in my lein path in VS Code's settings.

In contrast, code like this: ``` (cubed 2) (cubed 64) ``` works fine.

Hrmm .. I tried to be tricky by prefixing newlines with a `;` ``` (defn- cubed [x] (* x x x)) ; (cubed 2) ``` but when I execute, it...