{"id":16658324,"url":"https://github.com/tuddman/clj-dde","last_synced_at":"2025-09-01T00:30:56.434Z","repository":{"id":11758601,"uuid":"14291646","full_name":"tuddman/clj-dde","owner":"tuddman","description":"connect to a DDE (dynamic data exchange) server/client ... in Clojure!","archived":false,"fork":false,"pushed_at":"2016-07-26T02:28:59.000Z","size":313,"stargazers_count":12,"open_issues_count":0,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-16T03:37:48.612Z","etag":null,"topics":["clojure","dde","excel"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tuddman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-11T04:40:47.000Z","updated_at":"2025-02-14T06:16:59.000Z","dependencies_parsed_at":"2022-09-26T21:30:54.287Z","dependency_job_id":null,"html_url":"https://github.com/tuddman/clj-dde","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tuddman/clj-dde","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuddman%2Fclj-dde","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuddman%2Fclj-dde/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuddman%2Fclj-dde/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuddman%2Fclj-dde/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tuddman","download_url":"https://codeload.github.com/tuddman/clj-dde/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuddman%2Fclj-dde/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273057798,"owners_count":25038109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clojure","dde","excel"],"created_at":"2024-10-12T10:05:14.966Z","updated_at":"2025-09-01T00:30:56.329Z","avatar_url":"https://github.com/tuddman.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# clj-dde\n\nA Clojure library (really a wrapper around the Java DDE library provided by pretty_tools) to interoperate with DDE (dynamic data exchange) sources.\n\n## Rationale\n\n1. Sometimes you need to connect to a DDE source, and\n2. would rather do it in Clojure \u003e some other language\n\n\n## Setup\n\nMake sure you have [Leiningen](http://leiningen.org/) installed.\n\nYour `project.clj` should include something like the following:\n\n```clj\n(defproject foo \"0.1.0\"\n  ...\n  :dependencies [[org.clojure/clojure \"1.5.1\"]\n                 [clj-dde \"0.2.0\"]]\n  ...)\n```\n\n## Usage\n\nWork in Progress.\n\nWhen you need to connect with a DDE data source...\n\n\n```clojure\n(def excel-conv (dde/convesation))          ;; to setup a connection.\n(dde/connect excel-conv \"excel\" \"sheet1\")   ;; to connect to a datasource (excel)\n(dde/request excel-conv \"R1C1\")             ;; to 'poll' the data contained in cell R1C1\n```\n\nThe major difference between version 0.1.x and 0.2.x is that all functions\nthat previously returned `nil` now returns the conversation object, thus\nmaking the functions chain-able:\n\n```clojure\n(-\u003e (dde/conversation)\n    (dde/connect \"excel\" \"sheet1\")\n    (dde/request \"R1C1\"))\n```\n\ncheck out the dde-example folder for further examples and usage.\n\n## Issues\n\nIf you get the message \"java.lang.UnsatisfiedLinkError: no JavaDDEx64 (or JavaDDE) in java.library.path\"  you need to add the javaDDEx64.dll (or javaDDE.dll) file (it's in /resources) to your classpath directory:\n\n`(System/getProperty \"java.library.path\")` to find out where this file needs to go.\n\n## License\n\nCopyright © 2013 tuddman\n\nDistributed under the Eclipse Public License; the same as Clojure.\n\n\nThe various included Java files (pretty_tools library) are licensed under their respective licenses.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuddman%2Fclj-dde","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftuddman%2Fclj-dde","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuddman%2Fclj-dde/lists"}