contact.sh
gustavo@dockplusai:~$./contact.sh --info
Name: Gustavo Karsten
Location: Santa Catarina - Brazil
Status: ⚡ Available for projects

$ cat contact.js

contact.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// contact.js

const contact = {
  name: "Gustavo Karsten",
  role: "DevOps & AI Automation Specialist",
  email: "[email protected]",
  location: {
    state: "Santa Catarina",
    country: "Brazil",
    timezone: "America/Sao_Paulo (UTC-3)"
  },

  companies: [
    {
      name: "DockPlusAI",
      role: "Co-Founder & Technical Lead",
      focus: "AI automation solutions"
    },
    {
      name: "Roberts Landscape Design & Construction",
      role: "Technical Operations",
      location: "Cape Cod, MA",
      focus: "Digital transformation"
    }
  ],

  availability: {
    status: "available",
    for: [
      "Automation projects",
      "Mission-critical infrastructure",
      "AI integrations",
      "DevOps consulting",
      "Workflow development"
    ]
  },

  response_time: "24-48 hours",

  social: {
    github: "github.com/gustavotoor",
    linkedin: "linkedin.com/in/gustavo-karsten-88a04383"
  }
}

// Send message
async function sendMessage(data) {
  const response = await fetch('/api/contact', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify(data)
  })
  return response.json()
}

export default contact

Email

[email protected]

Response in 24-48 hours

Location

Santa Catarina - Brazil

UTC-3

$ cat availability.yml

Automation projectsMission-critical infrastructureAI integrationsDevOps consultingWorkflow developmentHigh-availability systems