fsteeg.wordpress.com
UML class diagrams with Graphviz | Geschreibsel
https://fsteeg.wordpress.com/2006/11/17/uml-class-diagrams-with-graphviz
Fabian Steeg's scribblings on coding, Eclipse, and stuff. UML class diagrams with Graphviz. Class diagrams can be created with Graphviz quite nicely: hierachical structure, reversed arrows, empty arrowtails and records as node shapes, pretty compliant. Code follows, rendered result above. 2[label = "{AbstractSuffixTree text n root .}"]. 3[label = "{SimpleSuffixTree . constructTree() l.}"]. 4[label = "{CompactSuffixTree . compactNodes() l.}"]. 5[label = "{SuffixTreeNode . addSuffix(.) l.}"]. Notify me of ...
fsteeg.wordpress.com
Cloudio: SWT-based tag cloud visualization for Zest | Geschreibsel
https://fsteeg.wordpress.com/2011/09/07/cloudio-swt-based-tag-cloud-visualization-for-zest
Fabian Steeg's scribblings on coding, Eclipse, and stuff. Cloudio: SWT-based tag cloud visualization for Zest. Thanks to a contribution. The Eclipse GEF Zest. Toolkit now contains an SWT-based tag cloud visualization component. Using SWT widgets and JFace viewers, you can create tag clouds like this one:. Cloudio is part of the Zest Git repository. Its help content (like the other Zest documentation) is generated from the Eclipse wiki. Builds and p2 repos are available from the nightly. 8230;] wurde nebe...
fsteeg.wordpress.com
Metadata processing with Metafacture and Eclipse | Geschreibsel
https://fsteeg.wordpress.com/2013/04/28/metadata-processing-with-metafacture-and-eclipse
Fabian Steeg's scribblings on coding, Eclipse, and stuff. Metadata processing with Metafacture and Eclipse. A lot has happened job-wise for me since my last post: in the summer I quit my little trip into the startup world (where I used Clojure and was not just the only Eclipse user on the team, but actually the only IDE user) and joined hbz, the Library Service Center of the German state of North Rhine-Westphalia. The. I go with my kids to get library books every week. They think its retro. Metafacture i...
fsteeg.wordpress.com
One issue with JSON-LD that seems not so pragmatic | Geschreibsel
https://fsteeg.wordpress.com/2014/01/28/one-issue-with-json-ld-that-seems-not-so-pragmatic
Fabian Steeg's scribblings on coding, Eclipse, and stuff. One issue with JSON-LD that seems not so pragmatic. I originally posted this to my tumblr a few days ago, but decided the format fits better here. For context:. I love and share the pragmatic spirit, have one issue with JSON-LD that seems to go against that though: http:/ t.co/TMLkFwYSxR. Mdash; Fabian Steeg (@fsteeg) January 22, 2014. But there’s one thing that really seems wrong to me. First, here’s some JSON-LD at its best:. Why at its best?
fsteeg.wordpress.com
Visualize Clojure code in Eclipse with DOT and Zest | Geschreibsel
https://fsteeg.wordpress.com/2012/02/26/visualize-clojure-code-in-eclipse-with-dot-and-zest
Fabian Steeg's scribblings on coding, Eclipse, and stuff. Visualize Clojure code in Eclipse with DOT and Zest. In January, I started a new job where I use Clojure ( we’re hiring. I was happy to learn that there’s a nice Eclipse plugin for Clojure called Counterclockwise. As a committer on Zest. I quickly had the obvious idea (well, obvious as in other. Using Graphviz DOT, we can create an image file for the visualized structure (e.g. for documentation):. Tweets about this post. You’re currently rea...
fsteeg.wordpress.com
UML activity diagrams with Graphviz | Geschreibsel
https://fsteeg.wordpress.com/2006/11/16/uml-activity-diagrams-with-graphviz
Fabian Steeg's scribblings on coding, Eclipse, and stuff. UML activity diagrams with Graphviz. Activity diagrams are somewhat doable with Graphviz, they just don’t look very nice, some straight edges would be great. And especially, only new versions of Graphviz support that tailport thing… code and rendered result above. Start[shape=circle, label=" , style=filled]. End[shape=doublecircle, label=" , style=filled]. Action1[shape=box,style=rounded, label="action"]. If1 - action2[label="condition" tailport=w].
fsteeg.wordpress.com
Setting up Contracts for Java in Eclipse | Geschreibsel
https://fsteeg.wordpress.com/2011/02/07/setting-up-contracts-for-java-in-eclipse
Fabian Steeg's scribblings on coding, Eclipse, and stuff. Setting up Contracts for Java in Eclipse. On Friday, Contracts for Java. Was announced on the Google Open Source Blog. Learning about this at the beginning of the weekend was perfect timing for me: I had time to check it out, and while setting it up was some work, I was hooked right away. As an external tool. And asm-all-3.3.1.jar. Import com.google.java.contract.Ensures; import com.google.java.contract.Requires; pu...Next, configure the annotatio...