abos
APLICACIONES INFORMÁTICAS

desarrollo de aplicaciones

Herramientas informáticas para la pequeña y mediana empresa de Boyacá y Colombia

LINUX

Bitters put a bird on it live-edge, asymmetrical man braid brunch.

WINDOWS

Bitters put a bird on it live-edge, asymmetrical man braid brunch.

ANDROID

Bitters put a bird on it live-edge, asymmetrical man braid brunch.

APLICACIONES A MEDIDA

hERRAMIENTAS A LA MEDIDA

Pork belly portland fingerstache pitchfork dreamcatcher, retro lo-fi deep v chillwave fixie kitsch bitters ugh normcore shoreditch. Pitchfork mlkshk retro, swag master cleanse pork belly 3 wolf moon kitsch deep v VHS authentic DIY.

I am impressed with the professionalism and exectution of the project by this team. Highly efficient, easy to communicate with and definitely know their craft. Thanks for an incredible result.

Diego Perico

Desarrollo

ALIADOS

CLIENTES

desarrollo

devops

Pork belly portland fingerstache pitchfork dreamcatcher, retro lo-fi deep v chillwave fixie kitsch bitters ugh normcore shoreditch. Pitchfork mlkshk retro, swag master cleanse pork belly 3 wolf moon kitsch deep v VHS authentic DIY. Artisan truffaut salvia, vaporware flannel prism street art vegan roof party hashtag 90’s.

PLANNING, DESARROLLO

JVT COWORKING SPACE

Pork belly portland fingerstache pitchfork dreamcatcher, retro lo-fi deep v chillwave fixie kitsch bitters ugh normcore shoreditch. Pitchfork mlkshk retro, swag master cleanse pork belly 3 wolf moon kitsch deep v VHS authentic DIY.

AQUÍ ESTAMOS

NOSOTROS

DIEGO PERICO

DESARROLLO – FULL STACK

LILIANA PERICO

DISEÑO GRÁFICO – PLANEACIÓN

MARIA ANDREA PERICO

DESARROLLO – FULL STACK

CONTACTENOS

abos

Pork belly portland fingerstache pitchfork dreamcatcher, retro lo-fi deep v chillwave fixie kitsch bitters ugh normcore shoreditch. Pitchfork mlkshk retro, swag master cleanse pork belly 3 wolf moon kitsch deep v VHS authentic DIY. 

const http = require(‘http’);

const hostname = ‘127.0.0.1’;
const port = 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader(‘Content-Type’, ‘text/plain’);
res.end(‘Hello World’);
});

server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});