Coder Social home page Coder Social logo

declarative's Introduction

Profile

I am a software developer, architect, technical lead, author, and teacher with over 15 years of professional experience. I have been programming and building software since the age of 10, making it 30 years of overall experience in the field.

Throughout my career, I worked on software products for different businesses and in organizations of varying sizes. I started as an individual contributor in projects both for backend and frontend and quickly progressed into working as a technical lead, mentor and architect.

Since many years, I consider myself an expert in Message-Driven Systems, Domain-Driven Design, CQRS, and Event Sourcing. On top of that, I am experienced in modeling techniques such as Event Storming, Domain Storytelling, and Context Mapping.

For more information, please visit my website.

Book

I am the author of "Implementing DDD, CQRS and Event Sourcing". This book explains and illustrates how to implement Domain-Driven Design, Command Query Responsibility Segregation and Event Sourcing. The goal is to build software that is behavior-rich, event-based, problem-centric, reactive, scalable and well-designed.

Buy it on Leanpub

declarative's People

Contributors

alexlawrence avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

declarative's Issues

avoid using `eval`

There is an option to avoid the use of eval on parseOptions function:

    var parseOptions = function (input) {
            try {
                var properties = input.split(', ');
                var output = {};
                properties.forEach(function(property) {
                    var tup = property.split(':');
                    output[tup[0]] = tup[1];
                });
                return output;
            }
            catch (error) {
                throw new Error(errors.parseOptions);
            }
        };

cons:
Attributes cannot hold the : sign

Another way is:

return (new Function('return {'+input+'}'))();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.