Skip to content

Tag: networking

Bringing Python layout algorithm to Cytoscape

We would like to bring one of our layout algorithms, which is implemented in Python, to Cytoscape. As Cytoscape apps are written in Java, I was wondering whether some of you has an idea on how to easily bring it to Cytoscape without rewriting the Algorithm in Java. Answer I believe Dexter already reached out …

Maximum length of domain name

As I noticed class from google library com.google.common.net.InternetDomainName containts the following constant: Code below, checks length during creation of InternetDomainName instance: But RFC-2181 says that: So, what is valid max length for domain name? Answer This is straight from wikipedia: The full dom…