Here are some guidelines about how to start playing around with graphviz-java-api.
> brew install graphviz
For instructions on how to do it for your system go to http://graphviz.org/Download..php
| This file contains any messages produced by compilers while | |
| running configure, to aid debugging if configure makes a mistake. | |
| It was created by gtk-doc configure 1.18, which was | |
| generated by GNU Autoconf 2.65. Invocation command line was | |
| $ ./configure --disable-debug --disable-dependency-tracking --prefix=/usr/local/Cellar/gtk-doc/1.18 --disable-scrollkeeper --with-xml-catalog=/usr/local/etc/xml/catalog | |
| ## --------- ## | |
| ## Platform. ## |
| -- Todos los artículos de 'RAFA' primero ordenados por serial y luego el resto de artículos ordenados igualmente por serial. | |
| SELECT a.* FROM articulos a LEFT JOIN (SELECT 'RAFA' COLLATE utf8mb4_general_ci AS nombre) r on r.nombre = a.usuario | |
| ORDER BY r.nombre DESC, serial |
| class_name = "publication".classify | |
| the_class = Object.const_get(class_name) | |
| # or | |
| the_class = class_name.constantize | |
| # get Publication | |
| the_class.find(1) | |
| # equal to |
| $ pwd | |
| /home/xxx/webapps/myapp/nginx | |
| $ sbin/nginx -p /home/xxx/webapps/myapp/nginx/ -s reload |
| function KnowledgeMapInitGlobals() { | |
| window.KnowledgeMapGlobals = { | |
| colors: { | |
| blue: "#0080C9", | |
| green: "#8EBE4F", | |
| red: "#E35D04", | |
| gray: "#FFFFFF" | |
| }, |
| git branch -a --merged master | # merged to master | |
| grep -v '>' | # branch pointers exception | |
| grep -v 'master\|develop' | # exceptions | |
| xargs -L1 | # get the first column | |
| tee >(grep origin | | |
| awk '{split($0,a,"/"); print a[3]}' | | |
| xargs git push origin --delete) | # remove remotes | |
| xargs git branch -d # remove local |
| > rake test TESTOPTS="-ntest_recursive_include_associations" |
Here are some guidelines about how to start playing around with graphviz-java-api.
> brew install graphviz
For instructions on how to do it for your system go to http://graphviz.org/Download..php
| # Model.subclasses will give you an empty array | |
| Rails.application.eager_load! | |
| # Now you can do Model.subclasses and it will retrieve its descendants |
| " show the registers | |
| :reg | |
| " save current line to k register | |
| "kyy | |
| " paste from k register | |
| "kp | |
| " append current line to k register |