Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Blasanka

Blasanka

Blasanka has asked 11 questions and find answers to 99 problems.

Stats

3.8k
EtPoint
1.4k
Vote count
11
questions
99
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.