Этот коммит содержится в:
Ihar Hancharenka 2025-02-10 12:10:41 +03:00
родитель bc7bb28cb7
Коммит df95a5c979
3 изменённых файлов: 23 добавлений и 0 удалений

Просмотреть файл

@ -1,9 +1,28 @@
https://github.com/Alexays/Waybar
https://github.com/Alexays/Waybar/wiki
https://github.com/Alexays/Waybar/wiki/Configuration
https://github.com/Alexays/Waybar/wiki/Styling
https://docs.gtk.org/gtk3/css-properties.html
https://gitlab.gnome.org/GNOME/gtk/-/blob/gtk-3-24/gtk/theme/Adwaita/_colors-public.scss
https://github.com/Alexays/Waybar/wiki/Writing-Modules
https://github.com/Alexays/Waybar/wiki/Module:-Hyprland
https://github.com/Alexays/Waybar/wiki/Module:-Sway
https://github.com/Alexays/Waybar/wiki/Module:-CPU
https://github.com/Alexays/Waybar/wiki/Module:-Custom:-Simple
https://github.com/Alexays/Waybar/tree/master/src/modules/hyprland
https://github.com/Alexays/Waybar/tree/master/src/modules/sway
https://gitlab.freedesktop.org/wlroots/wlr-protocols
https://github.com/wmww/gtk4-layer-shell
https://wmww.github.io/gtk-layer-shell/
https://wiki.gentoo.org/wiki/Waybar
https://wiki.hyprland.org/Useful-Utilities/Status-Bars/
https://github.com/Alexays/Waybar/wiki/Examples
dnf/waybar
https://github.com/Alexays/Waybar/wiki/FAQ#how-to-use-with-sway
https://github.com/Alexays/Waybar/wiki/Installation#how-to-use-with-sway

Просмотреть файл

@ -14,6 +14,7 @@ https://www.delftstack.com/howto/java/java-stream-distinct-by-property/
2022
CSC - Valeev - L9 - Terminal Operations and Collectors of 1:48:30
https://www.youtube.com/watch?v=3qrNlWkJ3ac
! 50:00 - groupingBy, mapping, flatMapping
2021
Tsymbalyuk - Collectors Class 0:00 of 32:27
https://www.youtube.com/watch?v=HOQpQWK9u28

Просмотреть файл

@ -39,6 +39,9 @@ characterized by Spliterator
- uses more memory
- short-circuiting (find result earlier than finishing consuming all the input)
- .flatMap...spliterator().tryAdvance() - throws OOM because of the buffering
https://www.youtube.com/watch?v=3qrNlWkJ3ac
! 25:14
List<String> result = List.of(List.of("foo", "bar"), List.of("baz", "...")).flatMap(List::stream).toList()
.orElseThrow(IllegalStateException::new)