Investigación de Miércoles ¿Cómo puede Volaniq colaborar con los líderes del software de gestión para PYME en España?
| Plataforma | Programa de Partners | Marketplace | Oportunidad para Volaniq | Prioridad |
|---|
Documento de Trabajo: Miércoles Programa de Referrals — Outreach a Agencias de Marketing y Digitales
¿Por qué agencias? Las agencias de marketing digital, growth y comunicación trabajan codo a codo con PYME españolas. Ven de primera mano los dolores operativos de sus clientes — incluyendo la gestión financiera y administrativa. Son embajadores naturales de herramientas que hacen la vida más fácil a sus clientes.
Versión 1.0 — Abril 2026 Contacto: Borja Vinuessa · borjavinuessa@gmail.com · volaniq.com
Proyecto: volaniq.com — Consultoría de automatización para PYMEs españolas
Actualizado: Abril 2026
Contacto: borjavinuessa@gmail.com
| ### Install neo4j | |
| brew install neo4j | |
| ### Disable auth | |
| code /usr/local/Cellar/neo4j/4.3.7/libexec/conf/neo4j.conf | |
| # uncomment this line: | |
| dbms.security.auth_enabled=false |
Original source here.
Sometimes a linter is not enough. Trying its best, it will point out to the end of file. That's ok if the file is short enough to go through it and spot it. Hoewever, sometimes that's not the case and the error is not so obvious. It's in these cases where one has to apply other techniques.
Instead of going through all the code line by line, what about using your Text Editor Fold/Unfold? For Sublime Text you have the option of folding different lvels of code.
Consider the following code:
module A
method one
end| class User | |
| include Mongoid::Document | |
| has_many :wishlists, class_name: "Item" | |
| end | |
| In rails s: | |
| >> u = User.first | |
| >> u.wishlists.push(Item.first) |
| TEST.JS | |
| db.createCollection("test_index") | |
| db.test_index.ensureIndex({"t.n":"text"}) | |
| var mydocs = [ | |
| {t: [{language: "english", n: "Mother 1"},{language: "spanish", n: "Madre 1"}]}, | |
| {t: [{language: "english", n: "Spreme 1"},{language: "spanish", n: "Edificio 1"}]} | |
| ] | |
| db.test_index.insert(mydocs) |