micro habits to fight depression

Instead of
ruminating on painful angry thoughts,
engage in mindfulness Instead of
waiting for motivation,
take action even if I don't feel like it Instead of
withdrawing from life,
continue to sincerely reach out for connection Instead of
thinking I have…

ffmpeg karaoke version

ffmpeg -i file.mp3 -af pan="stereo|c0=c0|c1=-1*c1" -ac 1 novocal/file.mp3 ffmpeg -i novocal/file.mp3 -af "bass=g=6:f=100:w=0.5" bassboost/file.mp3 ffmpeg -i novocal/file.mp3 -i file.mp3 -filter_complex "[0:a]volume=1.0[a0];[1:a]volume=0.3[a1];[a0][a1]amix=inputs=2[a]" -map "[a]" done/file.mp3 ffmpeg -i $file -i mix/$file -map 0:v -map 1:a -map_metadata 0 -map_metadata:s:a 0:s:a -c: copy done/$file original song copies at /Volumes/sneakernet/karaoke for file in *.mp3 do ffmpeg -i $file -af pan="stereo|c0=c0|c1=-1*c1"…

Les Salades De L'Oncle Francois - Django Reinhardt

Toinon, Toinette, mes cousines À la campagne, un beau matin Jouaient, endiablées et mutines Avec moi, dans le grand jardin Elles trottaient dans les allées Comme des biches dans les bois Sans respect pour les azalées Qu'avait plantées l'oncle François Le grand vent Qui courait autour de la maison Poursuivait, en soufflant Parmi les…

7 UI principles

  1. micro-interactions: subtle animations and feedback in user interfaces, simulating a real world experience, or creating an easily understandable digital world
  2. typography: choose a font for either emotional impact or readability
    • font pairings
      serifdifferent
      contrastdifferent
      aperturematching
      proportionmatching
  3. accessibility: WCAG guidelines, or affect 20% of users
  4. emotional joy juice from interaction
  5. brainstorming without judgment
  6. quantity leads to…

using has to select siblings

has(> .pink):hover > *:not(:hover) { background: white; } parent of pink, hover any, others change :has(> .pink) > *:not(.pink) { background: white; }
siblings of pink get white bg: parent of pink all children except pink white bg
Category: CSS