Skip to main content
Blasanka's user avatar
Blasanka's user avatar
Blasanka's user avatar
Blasanka
  • Member for 7 years, 11 months
  • Last seen more than 2 years ago
About

Watch Jon Skeet talk in Stack Overflow HQ.

See top SO users

Yes this is 2018,

enter image description here

Miss you Java, busy with Dart.

Java:

List<String> carriers = Arrays.asList("web", "software", "mobile");
System.out.print(carriers.stream()
                        .map(String::toUpperCase)
                        .collect(joining(", "))
                        .concat(" developer"));

Dart:

List<String> carriers = ['web', 'mobile', 'desktop'];
print('''${carriers.join(', ')
                   .toUpperCase()} developer''');

See, who I respect on this amazing world.

Badges
This user doesn’t have any gold badges yet.
This user doesn’t have any silver badges yet.
2
bronze badges
Posts

This user hasn’t posted yet.