Skip to content
View joshiraez's full-sized avatar
  • Red Hat
  • Seville, Spain

Block or report joshiraez

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Calculator done with enums for the o...
    1
    public class EnumCalculator {
    2
    
                  
    3
        //Notice how concise the code has become in the logic
    4
    
                  
    5
        public int calculate(char op, int a, int b) {
  2. Third example for "Rethinking interf...
    1
    class OperationInterfaceAsClass implements Operation {
    2
    
                  
    3
        Predicate<String>                   isOperation;
    4
        Function<List<Integer>, Integer>    operate;
    5
    
                  
  3. How would you create classic instanc...
    1
    class OperationWithOperationData {
    2
    
                  
    3
        Predicate<String>                   isOperation;
    4
        IntBinaryOperator                   reductionOperation;
    5
        List<Integer>                       toOperateOn;
  4. Creating Data classes interfaces. Re...
    1
    class CharacterData {
    2
        int HP;
    3
        int attack;
    4
        int defense;
    5
    
                  
  5. Transforming it to an abstract appro...
    1
    class OperationAbstractAsClass implements Operation {
    2
    
                  
    3
        Predicate<String>                   isOperation;
    4
        IntBinaryOperator                   reductionOperation;
    5
    
                  
  6. Toy compresser
    1
    package com.company;
    2
    
                  
    3
    import java.util.*;
    4
    import java.util.stream.Collectors;
    5
    import java.util.stream.IntStream;

0 contributions in the last year

Contribution Graph
Day of Week February March April May June July August September October November December January February
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Less
No contributions.
Low contributions.
Medium-low contributions.
Medium-high contributions.
High contributions.
More

Contribution activity

February 2025

joshiraez has no activity yet for this period.
Loading

Seeing something unexpected? Take a look at the GitHub profile guide.