Skip to content
View dosmoc's full-sized avatar

Block or report dosmoc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. example of calling Java method from ... example of calling Java method from Oracle PL/SQL using an Oracle collection (oracle.sql.ARRAY)
    1
    CREATE OR REPLACE TYPE string_array AS TABLE OF VARCHAR2(32767);
    2
    /
    3
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED STRFMT AS
    4
    public class StrFmt
    5
    {
  2. fizzbuzz no conditionals fizzbuzz no conditionals
    1
    (defn fizzbuzz [n]
    2
       (let [f {(mod n 3) "fizz"}
    3
             b {(mod n 5) "buzz"}
    4
             fblist [(get f 0) (get b 0)]
    5
             fb (clojure.string/join "" fblist)]
  3. sicp-exercises sicp-exercises Public

    Working through problems in Structure and Interpretation of Computer Programs

    Scheme 1 1