Code Monkey home page Code Monkey logo

morphoide's Issues

Estudiar HTML

Para ver la forma más didáctica de aprender HTML para los cursos

v0.2.3

Organizar Proyecto:

  • Crear el paquetes test.morphoide
  • Eliminar el Proyecto TestMorphoide
  • Cortar y Pegar PragmaticMorphoideInterface al Morphoide repository
  • Obtener el POM.xml de Morphoide
  • Renombrar Ambos Repositorios

Interface

Modificar la interface para que sea dinámica

v0.1.5

En Base a estándares de Javadoc documentar el código con Tags y buenas practicas de comentarios

v0.2.0

v0.2.0

Implementar Subrutinas para Patrones y criptografias, regex para validaciones de Usuarios @Zelechos
Ejemplo

Las Siguiente funciones son parte de Morph String

  • Subrutina para saber si el texto tiene una letra minuscula
  • Subrutina para saber si el texto tiene una letra mayuscula
  • Subrutina para saber si el texto tiene un numero
  • Subrutina para saber si el texto tiene un caracter especial
  • Subrutina para saber si el texto tiene una longitud comprendida entre dos valores
  • Subrutina para validar un password con todas las rutinas anteriores introducidas
  • Crear Morph int & Morph Algorithms
  • Ordenar y limpiar todo el codigo
  • Actualizar el README.md y el realeses junto con la version

code inicial

    private static final Pattern specialPattern = Pattern.compile ("[!@#$%&*()_+=|<>?{}\\[\\]~-]");

    private static final Pattern specialPatternTwo = Pattern.compile ("^[A-Z0-9_]*$");

    public static boolean validatePassword(String password) {

        if(!(password.length() >= 8 && password.length() <= 48))
            return false;

        return (containsNumber(password) || containsSpecialCharacter(password)) && containsLowerCase(password);

    }
    public static boolean validateName(String name) {
        return specialPatternTwo.matcher(name).find();
    }

    public static boolean isNullOrEmpty(String value) {
        return value == null || value.isEmpty();
    }

    private static boolean containsSpecialCharacter(String value) {
        return specialPattern.matcher(value).find();
    }

    private static boolean containsLowerCase(String value) {
        return contains(value, i -> Character.isLetter(i) && Character.isLowerCase(i));
    }

    private static boolean containsUpperCase(String value) {
        return contains(value, i -> Character.isLetter(i) && Character.isUpperCase(i));
    }

    private static boolean containsNumber(String value) {
        return contains(value, Character::isDigit);
    }

    private static boolean contains(String value, IntPredicate predicate) {
        return value.chars().anyMatch(predicate);
    }

UI

Cambiar el movimiento de la ventana

Peogramar

Clonar repositorio he habilitar en la laptop

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.