· 👁 21 · 1655

· 👁 21 · 1654

· 👁 17 · 1649

· 👁 17 · 1648

#music
#calm

[Verse]
So familiar and overwhelmingly warm
This one, this form I hold now
Embracing you, this reality here
This one, this form I hold now, so
Wide eyed and hopeful
Wide eyed and hopefully wild
We barely remember what came before this precious moment
Choosing to be here right now
Hold on, stay inside
This body holding me
Reminding me that I am not alone in
This body makes me feel eternal
All this pain is an illusion

https://genius.com/Tool-parabol-lyrics

https://music.yandex.ru/album/38048345/track/142481672

https://www.wikidata.org/wiki/Q110906634

Parabol · Q110906634
PropertyValue
instance ofmusic track with vocals
performerTool
distribution formatmusic streaming
ISRCUSVR10100014
titleParabol
has characteristicstudio recording
Spotify track ID3EeoMkZF8NhX9FdCSxG8MB
recording or performance ofParabol
MusicBrainz recording ID5128c310-6d92-4e96-9dc3-5defec033a51
recording date2001

· 👁 18 · 1647

· 👁 25 · 1645

· 👁 24 · 1641

#podcast
#my
#health
#startup
#geo_gorgiladze

Георгий Горгиладзе: от тяжелых болезней к выздоровлению, рекорду Гиннесса и стартапу в области HealthTech

Гость из Книги Рекордов Гиннеса, который первый в мире простоял на гвоздях 12 часов, демонстрирует экстремальные возможности человеческого тела на ТВ и международных мероприятиях, до этого много болел, 13 раз лежал в больницах, врачи запрещали физические нагрузки, что подвинуло Георгия серьёзно и самостоятельно заняться своим здоровьем, начав в 12 лет с экспериментального лечения иглоукалыванием, изучением восточной медицины и физиологии, вылечив себя самостоятельно. А сейчас делает стартап по здоровью GeoHealth https://geo-dao.com

Википедия о госте: https://ru.wikipedia.org/wiki/Горгиладзе,_Георгий_Мевлудович

Записано на Gentoo Linux в ffmpeg и Audacity (в два отдельных канала), клики в аудио удалил через https://auphonic.com

#podcast
#north_korea
#голос_кореи

http://www.vok.rep.kp/index.php/home/main/ru

https://ru.wikipedia.org/wiki/Голос_Кореи

From http://golos-korei.podfm.ru/northk/277/

· 👁 24 · 1640

· 👁 22 · 1637

· 👁 22 · 1636

#linux
#france
#news

France to ditch Windows for Linux to reduce reliance on US tech

France is trying to move on from Microsoft Windows. The country said it plans to move some of its government computers currently running Windows to the open source operating system Linux to further reduce its reliance on U.S. technology.

Linux is an open source operating system that is free to download and use, with various customized distributions that are tailored and designed for specific use cases or operations.

In a statement, French minister David Amiel said (translated) that the effort was to “regain control of our digital destiny” by relying less on U.S. tech companies. Amiel said that the French government can no longer accept that it doesn’t have control over its data and digital infrastructure.

https://techcrunch.com/2026/04/10/france-to-ditch-windows-for-linux-to-reduce-reliance-on-us-tech/

· 👁 19 · 1629

· 👁 21 · 1624

· 👁 23 · 1623

Usual #school in #china? #lenin

【【城】一行代码让整个网站瘫痪,永不过时的黑客技术】https://www.bilibili.com/video/BV1ZXE4ziEgf?vd_source=bb5efb0fc5b9ab1f523b5e6d0a9f0a2f

· 👁 23 · 1622

Про #викиданные/#wikidata (открытая база данных на #SPARQL), #wikimedia, #wikipedia

Моя #лекция/митап в Лаборатории (это бар в Батуми).

https://www.wikidata.org/wiki/User:Vitaly_Zdanevich

Все линки на видео https://share.evernote.com/note/73621155-4b57-e6c1-1c69-8ee7b423b252

👍 1

#video

· 👁 20 · 1613

· 👁 18 · 1612

I wrote, with #ai, a nice #script to #find top #biggest #folders - that has no other subfolders (#leaf folders):

find . -type d -links 2 -exec du -sh {} + | sort -hr | head

Output example:

6.3G ./ДА Житомирської області/01 Ф - фонди дорадянського періоду/0118/010118-14/010118-14-00018
5.3G ./ЦДІАЛ/0080/010020-10-00088
4.8G ./ДА Закарпатської області/Перепис Закарпаття 1921 року/024/Beregszasz
4.3G ./ДА Закарпатської області/Перепис Закарпаття 1921 року/054
4.3G ./ДА Закарпатської області/Перепис Закарпаття 1921 року/045
4.1G ./ДА Закарпатської області/Перепис Закарпаття 1921 року/026/Beregszasz
3.8G ./ДА Закарпатської області/Перепис Закарпаття 1921 року/044
3.5G ./ДА Харківської області/01/0031/010031-141-00523
3.4G ./ДА Донецької області/01/0020/010020-01-00007
3.3G ./ДА Харківської області/01/0040/0105/010040-105-00969

Explanation:

On most Linux filesystems (like ext4), a directory with no subdirectories has exactly 2 #hardlink (. and its entry in the parent). This is much faster but may not work on Btrfs or XFS.
This command is an efficient way to find "leaf" directories (folders containing only files) and sort them by size. Here is the step-by-step breakdown:

  1. find . -type d -links 2 This is the "brain" of the command that identifies folders without subfolders.
    . Start searching from the current directory
    -type d Look only for directories.
    -links 2 This is a clever trick for most Linux filesystems (like ext4):
    - Every directory has a link from its parent and a link to itself . This equals 2 links
    - Each subdirectory adds another link to the parent (via ..)
    - Therefore, if a directory has exactly 2 links, it means it has zero subdirectories.
  2. -exec du -sh {} + This calculates the size of the folders found.
    du -sh Disk Usage. -s (summary) gives the total size of the folder, and -h (human-readable) converts it to KB, MB, or GB.
    {} This is a placeholder for the list of folders found by find.
    + This tells find to group as many folders as possible into a single du command. This is much faster than running du separately for every single folder.
  3. | sort -hr This organizes the output.
    | The pipe takes the output of the previous command and feeds it into sort.
    -h Human-numeric sort. It understands that "2G" is larger than "500M". Without this, a standard sort would think "500" is larger than "2" because of the first digit.
    -r Reverse. This puts the largest folders at the top of the list.

Important Limitation
This command is extremely fast because it doesn't have to "peek" inside folders to see if they are empty; it just checks the filesystem metadata. However, it may not work on modern filesystems like Btrfs or XFS, as they don't use the standard hard-link counting method for directories.

· 👁 16 · 1602

· 👁 14 · 1600

· 👁 19 · 1599

· 👁 18 · 1595