When I don’t feel too good, I just watch Thomas #Garrity that “Functions describe the world” and I feel better. #math #mathematics #functions #function https://youtu.be/zHU1xH6Ogs4
When I don’t feel too good, I just watch Thomas #Garrity that “Functions describe the world” and I feel better. #math #mathematics #functions #function https://youtu.be/zHU1xH6Ogs4
File this under #shell #functions I should have written years ago:
function grepc {
#Do a grep -c, but skipping files with no results
grep -c "$@" |grep -v ':0$'
}
Focus Rings With Nested “contrast-color()”?, by @davatron5000:
https://daverupert.com/2026/01/nested-contrast-color-focus-rings/
Zoey (@zoeysandel)
OpenAI Codex 관련 개발자 요청: Code 모드에서도 functions.request_user_input를 사용해 스킬이 해당 함수를 호출하도록 지원해달라고 제안하고, Codex가 함수 호출로 Plan 모드로 전환할 수 있으면 유용할 것이라며 누구(@thsottiaux 등)에게 태그해 이 사안을 제기할지 묻는 내용입니다.
Python lets you redefine functions but it replaces the original.
CSS in 2026: The New Features Reshaping Frontend Development, by @logrocket.bsky.social:
Bruce Payette dives deep into #PowerShell #proxy #functions 🧠
⚙️ RBAC
⚡ Memoization
📦 Cmdlet wrapping
📊 Streaming & logging
👀 A must-watch for advanced users!
📍 #PSConfEU 2026 → Wiesbaden. Tickets: psconf.eu
#DevOps #ProxyFunctions
- YouTube
Responsive Hexagon Grid Using Modern CSS, by @css (@csstricks):
https://css-tricks.com/responsive-hexagon-grid-using-modern-css/
Oh, the joys of academia! 🤓 Apparently, #arrays are just #functions in disguise! 🎭 Next, they'll tell us that bubble sort is an avant-garde performance art piece! 🎨 Let's just fork this on #GitHub and pretend we understand. 🙄
https://futhark-lang.org/blog/2026-01-16-are-arrays-functions.html #academia #bubble_sort #humor #HackerNews #ngated
Directional CSS With “scroll-state(scrolled)”, by @Una:
4 CSS Features Every Front-End Developer Should Know in 2026, by @argyleink:
https://nerdy.dev/4-css-features-every-front-end-developer-should-know-in-2026
The Christian Democratic Union (CDU) is signaling a significant shift in its approach to governance, planning a sweeping overhaul of state responsibilities slat... https://news.osna.fm/?p=29811 | #news #cdu #cut #functions #review
Building a Multi-Stage Timetable With Modern CSS Using Grid, Subgrid, “round()”, and “mod()”, by @nilsbinder:
“light-dark()” Isn’t Always the Same as “prefers-color-scheme”, by @stefan:
https://www.stefanjudis.com/today-i-learned/light-dark-isnt-the-same-as-prefers-color-scheme/
The New “clamp()” Function in PHP 8.6, by @amitmerchant.bsky.social:
Creating Scroll-Based Animations in Full view(), by @preethisam.bsky.social (@csstricks):
https://css-tricks.com/creating-scroll-based-animations-in-full-view/
How to Unit Test a Vue Composable With TypeScript, by @johnfraney.ca:
https://johnfraney.ca/blog/how-to-unit-test-a-vue-composable-with-typescript/
Just three new bash #functions I don't know why I didn't write months/years ago ;)
function binfind {
#search for patterns in the system bin directories
local d oIFS="$IFS"
IFS=:
for d in $PATH; do
ls -1 $d/$@ 2>&-
done
IFS="$oIFS"
}
function tootlookup {
#Show a fediverse thread when given a url
url="$*"
[[ $url == http* ]] || ( warn "please specify URL"; return 1 );
toot --no-color thread $(toot --no-color search "$url" |awk '$1=="*" {print $2}' |head -1)
}
function colors {
#uses ImageMagick identify to print the number of colors in a specified image
local oIFS="$IFS" output maxlen=0
IFS=$'\n'
for f in $@; do
(( ${#f} >> maxlen )) && maxlen=${#f}
done
((maxlen+=4))
for f in $@; do
printf "%-${maxlen}s " $f
output=$(identify -verbose $f |& grep Colors: |sed 's/^ *Colors: //')
[[ -n $output ]] || output="(unknown)"
echo $output
done
IFS="$oIFS"
}
Introduction to CSS “if” Statements and Conditional Logic, by @markodenic.com:
https://markodenic.com/introduction-to-css-if-statements-and-conditional-logic/