Search
Top Posts & Pages
- Plasma Active for Nexus 7: Running the touch-optimized Plasma Active Linux Distribution on Nexus 7
- Exchange Data and Objects between C++ and QML and vice versa
- Hotplug an External Screen to your Laptop on Linux
- Reorder Items in a QML ListView via Touch Gestures
- QML TreeView
- Video: Plasma Active on Nexus 7
- Nexus 7: Easily Flash/Access Entire Userdata Partition
- QML FlowListView
- QComboBox for QML
- N9 Touchstone Mod
Links
Tag Archives: Clojure
test2junit: Bugfix
Due to an embarrassing error in test2junit I had to quickly release another version. The current version 1.0.1 fixes the problem and is available from clojars.org. The readme at github had been updated as well.
Posted in Announcements, Libs., Other Software
Tagged Clojure, Leiningen, Open Source, Test-driven Development
Leave a comment
test2junit: Leiningen Plug-in for Writing Test Results in JUnit XML Format
I like test-driven development very much. Over time the number of test cases grows and grows. As one consequence, it may become difficult to keep the overview of the results. As a simple mean to get an overview of my … Continue reading
Posted in Announcements, Libs., Other Software
Tagged Clojure, Leiningen, Open Source, Test-driven Development
Leave a comment
clj-assorted-utils Updated
On Sunday, I uploaded a new version of clj-assorted-utils to github. This version features an improved counter and a convenience function for processing input line-by-line. Another great news, imho, is that now there is autogenerated API documentation. You can get … Continue reading
clj-net-pcap 1.0.6 released
I just uploaded a new version of clj-net-pcap. This version re-adds native libs for Linux i386 and fixes some issues in jNetPcap with respect to formatting IPv6 addresses. Jars are available from clojars: https://clojars.org/clj-net-pcap https://clojars.org/jnetpcap Alternatively you can get the … Continue reading
Clojure Guide and Presentation
Some time ago I started to write a simple guide about the Clojure programming language. In the meantime I also added an introductory presentation. Finally, I also had the time to push everything to github: https://github.com/ruedigergad/clojure-by-example For those who didn’t … Continue reading
clj-assorted-utils and clj-net-pcap on clojars.org
I just changed the names of my two Clojure libraries cljAcmeUtils and cljNetPcap. Those two libs are now named clj-assorted-utils and clj-net-pcap respectively. Please excuse the inconvenience but I felt this step was necessary as I wanted to upload these … Continue reading
Posted in Announcements, clj-assorted-utils, clj-net-pcap, Libs.
Tagged Announcement, Clojure, jNetPcap, Open Source, Packet Capturing
Leave a comment
cljNetPcap Version 1.6.3
Already before my vacation I fixed some annoying issues in cljNetPcap. You can get cljNetPcap version 1.6.3 from its github page. This version improves the stability, offers more robust mechanisms for extracting the shipped native libs, and improves the stability … Continue reading
Posted in Announcements, clj-net-pcap, Libs.
Tagged Clojure, Open Source, Packet Capturing
Leave a comment
cljAcmeUtils: Assorted Helper Functions for Clojure
cljAcmeUtils is a collection of assorted helper functions that I wrote over time in order to reduce the amount of duplicate code in my Clojure projects and to help me implement code quicker. Now, I finally had the time to … Continue reading
cljNetPcap: Packet Capturing with Clojure
Update: Please note that cljNetPcap had been moved to clj-net-pcap. cljNetPcap allows to easily capture packets in Clojure. cljNetPcap builds on top of the jNetPcap Java library and provides a wrapper/facade/whatever for easily using the functionality as provided by jNetPcap … Continue reading
Speed up TDD in Clojure with lein-reload
Personally, I am a big fan of the Test-driven Development (TDD) approach; iterative development by writing tests first and then implementing the required functionality is just so much fun and very efficient as well. As a very nice side effect … Continue reading