Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Blasanka

Blasanka

Blasanka has asked 12 questions and find answers to 102 problems.

Stats

3.8k
EtPoint
1.5k
Vote count
12
questions
102
answers

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.