Skip to content

Instantly share code, notes, and snippets.

@bgvo
bgvo / volaniq_partners_holded_factorial.md
Created April 5, 2026 19:23
Volaniq — Programas de Partners: Holded + Factorial (Investigación Miércoles)

Volaniq — Programas de Partners: Holded + Factorial

Investigación de Miércoles ¿Cómo puede Volaniq colaborar con los líderes del software de gestión para PYME en España?


Resumen Ejecutivo

Plataforma Programa de Partners Marketplace Oportunidad para Volaniq Prioridad
@bgvo
bgvo / volaniq_agencias_target.md
Created April 5, 2026 19:22
Volaniq — 10 Agencias Target: Perfiles + Contactos + Estrategia de Contacto (Miércoles)

Volaniq — 10 Agencias Target

Documento de Trabajo: Miércoles Programa de Referrals — Outreach a Agencias de Marketing y Digitales


Estrategia de Contacto

¿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.

@bgvo
bgvo / volaniq_gestorías_target.md
Created April 5, 2026 15:36
Volaniq — 10 Gestorías Target: Perfiles + Contactos + Estrategia de Contacto (Martes)

Volaniq — 10 Gestorías Target

Documento de Trabajo: Martes Programa de Referrals — Fase de Outreach Inicial


Estrategia de Contacto

Orden de contacto recomendado:

  1. Ronda 1 (esta semana): ACR Kontablex + Xterna + Anta Consulting — mejor fit y mayor potencial
@bgvo
bgvo / volaniq_programa_referrals.md
Created April 5, 2026 15:34
Volaniq — Programa de Referrals: Comisiones + Pitch Emails (Lunes)

Volaniq — Programa de Partners y Referrals

Versión 1.0 — Abril 2026 Contacto: Borja Vinuessa · borjavinuessa@gmail.com · volaniq.com


DOCUMENTO 1: Estructura del Programa de Referrals


@bgvo
bgvo / volaniq_fase6_7_strategy.md
Created April 4, 2026 19:03
Volaniq SEO — Estrategia Fase 6 y 7 (Backlinks + Medición)

Volaniq SEO — Estrategia Completa: Fase 6 y Fase 7

Proyecto: volaniq.com — Consultoría de automatización para PYMEs españolas
Actualizado: Abril 2026
Contacto: borjavinuessa@gmail.com


FASE 6 — OFF-PAGE SEO Y DISTRIBUCIÓN

@bgvo
bgvo / neo4j_on_mac.txt
Created November 29, 2021 11:44
Installing and connecting to Neo4j on Mac
### 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
@bgvo
bgvo / enable-ssl-with-puma-rails.md
Last active August 4, 2021 06:15
Enable local SSL connections using Puma with Rails
@bgvo
bgvo / gist:8a190a5c77aad1d6a64b
Created July 8, 2015 16:14
Find (never-ending) syntax errors (Ruby).

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
@bgvo
bgvo / gist:443a2ce15dc34b8f6f50
Created January 15, 2015 17:48
has_many association not working
class User
include Mongoid::Document
has_many :wishlists, class_name: "Item"
end
In rails s:
>> u = User.first
>> u.wishlists.push(Item.first)
@bgvo
bgvo / gist:bb9ac76968cad1c4eddd
Last active August 29, 2015 14:11
Search not working
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)