Using @devoxxgenie.bsky.social to fix its own Cognitive Complexity issues using #SonarQube linter and spec-driven development 🔥 #MetaProgramming
See also genie.devoxx.com/blog/devoxxg...
Racket birthday party and meet-up: Saturday, 7 February 2026 at 18:00 UTC
EVERYONE WELCOME 😁
Announcement, Jitsi Meet link & discussion at racket.discourse.group/t/racket-bir...
#lisp #scheme #metaprogramming #csed #cs
Just published my end-of-year overview. 2026 is the year I stop outlining and start building.
Would love to have a conversation with anyone interested in the topic!
warmsignull.github.io/posts/toward...
#programming #languagedesign #compilers #systemsprogramming #metaprogramming #opensource
📣 New Podcast! "Who Controls Coincidence? Inside the Earth Coincidence Control Office (E.C.C.O.)" on @Spreaker #awakening #beliefsystems #consciousness #ecco #float #humanbiocomputer #innerwork #johnclilly #manifestation #matrix #mentalmodels #metaprogramming #mindsethack #neuroscience
7 причин, почему ваш ИИ тупит (и как это исправить) Работаете с ИИ-ассистентом и чувствуете, что он вас не пони...
#искуственный #интеллект #llm #vibe-coding #cursor #metaprogramming
Origin | Interest | Match
Here's a #PowerShell #WebDev tip:
I don't say enough:
#Metaprogramming is easy!
#PowerShell -> #CSS - "${key}:$Value;"
#PowerShell -> #HTML / #SVG / #XML - "<$Element $Attributes>$Children</$Element>"
#PowerShell -> #JS
"$Modifier $VariableName = $Expression"
re:
bsky.app/profile/mrpo...
#scala #metaprogramming #typeclasses because, of course, I forgot
Yeah, these things tickle me, too.
People hear #Metaprogramming and #PowerShell and think "big and scary" when it's _really_ "join a bunch of strings together". Works for 99% of programming languages.
Scary, sure, hard to understand... not so much.
We really loved this series of tutorials on #metaprogramming in #LeanLang by Heather Macbeth. It's a great intro to a complex topic for novice users of #LeanProver!
Pt 1: youtube.com/watch?v=cKvg...
Pt 2: youtube.com/watch?v=5er4...
Pt 3: youtube.com/watch?v=TJ8T...
“This tutorial introduces the features of the macro stepper by way of a few small examples. For more discussion on the macro stepper's features”
www.ccs.neu.edu/home/ryanc/m...
#macros #metaprogramming #lisp
Nim 2 excels with user-defined operators & powerful metaprogramming via templates and macros. This enables creating highly expressive Domain-Specific Languages (DSLs) tailored to specific problem domains, a key advantage. #Metaprogramming 2/6
A link to an archive of almost all of _why’s work!
https://viewsourcecode.org/why/index.html
1/5
#_why #WhyTheLuckyStiff #Ruby #MetaProgramming
And the fun craziness of Ruby metaprogramming:
Seeing Metaclasses Clearly
If you're new to metaprogramming in Ruby and you'd like to start using it, perhaps these four methods could give you a bit more vision.
viewsourcecode.org/why/hacking/seeingMetacl...
1/4
#_why […]
🚀 When AI Builds AI: My latest experiment is live!
What happens when you use one AI to build another?
medium.com/@gianlucabai...
#AI #OpenAI #Ollama #ClaudeCode #ConversationalProgramming #MetaProgramming
TypeScript Metaprogramming Techniques Explained #Typescript #Metaprogramming #Generics #Decorators #Typescriptapi #Conditionaltypes #Mappedtypes #Templateliterals #Recursivetypes #Typeinference
How to Create Custom TypeScript Decorators #Typescript #Decorators #Metaprogramming #Class #Method #Property #Parameter #Custom #Logging #Validation #Defaultvalue #Typescriptconfig #Metadata #Angular
This is an... unexpected use of the #LeanLang InfoView: unnamed.website/posts/bad-ap...
But we love the creativity!
#LeanProver #DevTools #Metaprogramming
✨ Joel Drapper 🇬🇧 @joel.drapper.me
Smoke and Mirrors: The Tricks Behind Magical Ruby Interfaces
Join the maintainer of Phlex for a hands-on workshop on the metaprogramming magic behind expressive APIs.
Live at #Euruko2025 in Viana do Castelo 🇵🇹
#RubyCommunity #TheHeartOfCode #Phlex #Metaprogramming
Really enjoyed this talk by @harrisongoldste.in that demonstrates inventive uses of the #LeanLang InfoView enhanced by metaprogramming techniques to display real-time testing data.
#LeanProver #Metaprogramming #VSCode #PropertyTesting
"This is the natural functioning of the human brain, it's the way children's brains perform before they are wrecked by the school system. It's the way the minds of all great scientists and artists work."
4/5
#Genius #Metaprogramming #Neurologic
Banner image with title FEAR OF MACROS in red dripping horror-movie style text With the background showing a Housecat with a dark red filter
Fear of Macros by Greg Hendershott
www.greghendershott.com/fear-of-macr...
#Racket #lisp #scheme #macros #metaprogramming
Code that rewrites itself? 🌀
Dave Kimber presents #Autology, a self-rewriting #Lisp for #metaprogramming on another level. Written in #Clojure, powered by wild ideas.
🗓 Lambda Days 2025 · Krakow
🌐 www.lambdadays.org
Screenshot of my Emacs instance. Emacs shows two windows side by side. The first window is a pdfview of a beamer latex presentation slide, with the title "Making Beamer Slides from Lean", and three bullet points, "why?", "whyyy???", and "Why?????". On the right there is a normal emacs buffer viewing some lean code. The code is Lean code, but it seems to have been adjusted to include a latex-like DSL. The code snippet is: ``` import Lean4Beamer namespace Intro @[presentation] def slide_1 := slide "Making Beamer Slides from Lean" do \begin{itemize} \item{"Why?"} \item{"Whyyy???"} \item{"Whyyyyy???"} \end{itemize} end Intro ```
Amazing (read: cursed) things going on in Lean right now
I love using a language with a proper thought out macro system~
#lean4 #lean #latex #macro #metaprogramming #programmingLanguages
Episode #507 - Application Templates
#ruby #rubyonrails #programming #code #metaprogramming
www.driftingruby.com/episodes/app...
6/10 🔄 The evolution of `constexpr` simplifies metaprogramming, moving away from complex templates to more readable code. #CPlusPlus #metaprogramming
Did you know that Python modules can have top-level __getattr__ functions? Lots of neat things you can do with this but here's one: lazy-loading data modules.
natknight.xyz/lazy-loading...
#python #data #metaprogramming
Runtime introspection in Julia is more than debugging—it enables dynamic exploration of types, methods & modules at runtime. Learn how this powerful tool drives smarter, more adaptable code: medium.com/chifi-media/...
#JuliaLang #Metaprogramming #Introspection #programming #Technology
A great writeup on Zig's comptime: matklad.github.io/2025/04/19/things-zig-co...
I never learned Zig but maybe I should. It's compile time capabilities looks awesome.
#zig #metaprogramming