#metaprogramming search results

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=cKvgMj… Pt 2: youtube.com/watch?v=5er4yL… Pt 3: youtube.com/watch?v=TJ8Tqv…

leanprover's tweet image. 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=cKvgMj…
Pt 2: youtube.com/watch?v=5er4yL…
Pt 3: youtube.com/watch?v=TJ8Tqv…

Scala superpower unlocked: Spec-first APIs *without* a separate codegen pass. ⚡Just Import 'N' Go!⚡ Typesafe and IDE assisted. Pictured is my prototype for OpenAPI, but can be done for GraphQL, Smithy, Protobuf/gRPC, Avro, ... #Scala #Metaprogramming #OpenAPI

tomas_mikula's tweet image. Scala superpower unlocked:

Spec-first APIs *without* a separate codegen pass.

⚡Just Import 'N' Go!⚡

Typesafe and IDE assisted.

Pictured is my prototype for OpenAPI, but can be done for GraphQL, Smithy, Protobuf/gRPC, Avro, ...

#Scala #Metaprogramming #OpenAPI
tomas_mikula's tweet image. Scala superpower unlocked:

Spec-first APIs *without* a separate codegen pass.

⚡Just Import 'N' Go!⚡

Typesafe and IDE assisted.

Pictured is my prototype for OpenAPI, but can be done for GraphQL, Smithy, Protobuf/gRPC, Avro, ...

#Scala #Metaprogramming #OpenAPI
tomas_mikula's tweet image. Scala superpower unlocked:

Spec-first APIs *without* a separate codegen pass.

⚡Just Import 'N' Go!⚡

Typesafe and IDE assisted.

Pictured is my prototype for OpenAPI, but can be done for GraphQL, Smithy, Protobuf/gRPC, Avro, ...

#Scala #Metaprogramming #OpenAPI
tomas_mikula's tweet image. Scala superpower unlocked:

Spec-first APIs *without* a separate codegen pass.

⚡Just Import 'N' Go!⚡

Typesafe and IDE assisted.

Pictured is my prototype for OpenAPI, but can be done for GraphQL, Smithy, Protobuf/gRPC, Avro, ...

#Scala #Metaprogramming #OpenAPI

#c #metaprogramming An attempt at metaprogramming in C using `_Generic` and `typeof`. I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun. gist.github.com/ttldtor/759be9…

ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…
ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…
ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…

Our new J.UCS issue is out today!🎉 lib.jucs.org/issue/5178/ It features a bibliometric retrospective on 30 years of J.UCS. Plus, 5 more articles exploring #convolutionalneuralnetworks, #NLP, #metaprogramming, #anomalyprevention and #GeneticAlgorithms.🌍✨Photo: Christian Trummer

jucsnews's tweet image. Our new J.UCS issue is out today!🎉 lib.jucs.org/issue/5178/ It features a bibliometric retrospective on 30 years of J.UCS. Plus, 5 more articles exploring #convolutionalneuralnetworks, #NLP, #metaprogramming, #anomalyprevention and #GeneticAlgorithms.🌍✨Photo: Christian Trummer

Building a quad tree for #MuckyVision sprite collisions got me thinking on pros/cons of #metaprogramming (minimal example below). Pros: succinct code, tree builds at compile time. Cons: Bloated executable, some runtime delay (copying tree to heap?). Maybe 'can'≠'should'?🤔

MuckyTaters's tweet image. Building a quad tree for #MuckyVision sprite collisions got me thinking on pros/cons of #metaprogramming (minimal example below). Pros: succinct code, tree builds at compile time. Cons: Bloated executable, some runtime delay (copying tree to heap?). Maybe 'can'≠'should'?🤔

Really enjoyed this talk by Harry Goldstein that demonstrates inventive uses of the #LeanLang InfoView enhanced by metaprogramming techniques to display real-time testing data. #LeanProver #Metaprogramming #VSCode #PropertyTesting

leanprover's tweet image. Really enjoyed this talk by Harry Goldstein that demonstrates inventive uses of the #LeanLang InfoView enhanced by metaprogramming techniques to display real-time testing data.

#LeanProver #Metaprogramming #VSCode #PropertyTesting

Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025 #MetaProgramming #Java #JConf #JConfGt2025

guatejug's tweet image. Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025

#MetaProgramming #Java #JConf #JConfGt2025
guatejug's tweet image. Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025

#MetaProgramming #Java #JConf #JConfGt2025

Use `define_method` to simplify repetitive methods in your classes! ⚠️ Metaprogramming can obscure your code, so use it sparingly and wisely! #rubyonrails #metaprogramming

RubyCademy's tweet image. Use `define_method` to simplify repetitive methods in your classes!

⚠️ Metaprogramming can obscure your code, so use it sparingly and wisely!

#rubyonrails #metaprogramming

✨ RAILS PRO TIPS ✨ Use define_method to simplify repetitive methods in your classes ✨💫 ⚠️ Metaprogramming can obscure your code, so use it sparingly and wisely! #rubyonrails #metaprogramming

RubyCademy's tweet image. ✨ RAILS PRO TIPS ✨

Use define_method to simplify repetitive methods in your classes ✨💫

⚠️ Metaprogramming can obscure your code, so use it sparingly and wisely!

#rubyonrails #metaprogramming

Came out with a C++ metaprogramming technique where a macro differentiates between types and enum values. Sample output: "C" is a type "E::v1" is a numeric expression Works primarily with non-enum classes. Fascinating hack! #cplusplus #metaprogramming

galtza's tweet image. Came out with a C++ metaprogramming technique where a macro differentiates between types and enum values. Sample output:

"C" is a type
"E::v1" is a numeric expression

Works primarily with non-enum classes. Fascinating hack! #cplusplus #metaprogramming

An interesting example of Rails using metaprogramming in view rendering! 💚 #rubyonrails #metaprogramming

RubyCademy's tweet image. An interesting example of Rails using metaprogramming in view rendering! 💚

#rubyonrails #metaprogramming

Programs that write programs? Welcome to the fascinating world of metaprogramming. #FutureOfCode #Metaprogramming #CodeNerd

_codebeans's tweet image. Programs that write programs? 
Welcome to the fascinating world of metaprogramming. 

#FutureOfCode #Metaprogramming #CodeNerd

While working on some #Scala3 #Metaprogramming, the harsh reality hit: IDEA fell short, unable to assist me further, sometimes even with basic completions. 😐 I've worked with @scalameta before, but it saved my life this time. Great job, guys! 👍

filemon_279's tweet image. While working on some #Scala3 #Metaprogramming, the harsh reality hit: IDEA fell short, unable to assist me further, sometimes even with basic completions. 😐 
I've worked with @scalameta before, but it saved my life this time. Great job, guys! 👍

Only a few days left until the Scala 3 #Metaprogramming workshop with @jdegoes! ⏰ Explore quoting, splicing, type-level metadata, and support for type class derivation. Implement your own Scala 3 macros with confidence and secure your spot before it's too late! 💪 ➡️…

zivergetech's tweet image. Only a few days left until the Scala 3 #Metaprogramming workshop with @jdegoes! ⏰ Explore quoting, splicing, type-level metadata, and support for type class derivation. Implement your own Scala 3 macros with confidence and secure your spot before it's too late! 💪 

➡️…

Sneak Peek: Local Llama 3.1 (70 B) model reviewing the DevoxxGenie project using the DevoxxGenie plugin 🤯 + Window context now visible for @Ollama models🔥 #MetaProgramming

DevoxxGenie's tweet image. Sneak Peek: Local Llama 3.1 (70 B) model reviewing the DevoxxGenie project using the DevoxxGenie plugin 🤯 
+ Window context now visible for @Ollama models🔥 
#MetaProgramming
DevoxxGenie's tweet image. Sneak Peek: Local Llama 3.1 (70 B) model reviewing the DevoxxGenie project using the DevoxxGenie plugin 🤯 
+ Window context now visible for @Ollama models🔥 
#MetaProgramming

Learn Scala 3 Metaprogramming with @jdegoes! Explore conditional givens, singleton types, quoting, splicing, and more. Empower your #Scala development by crafting your own macros with confidence. 💪 #metaprogramming #workshop

zivergetech's tweet image. Learn Scala 3 Metaprogramming with @jdegoes! Explore conditional givens, singleton types, quoting, splicing, and more. Empower your #Scala development by crafting your own macros with confidence. 💪 #metaprogramming #workshop

Struggling with repetitive iOS development tasks? Meet #metaprogramming - a technique to generate code, save time, and reduce maintenance. Learn metaprogamming with @ivan_goremykin from @RevolutApp to to see how you can add this support to your existing projects!

CodementorIO's tweet image. Struggling with repetitive iOS development tasks? 

Meet #metaprogramming - a technique to generate code, save time, and reduce maintenance.

Learn metaprogamming with @ivan_goremykin from @RevolutApp to to see how you can add this support to your existing projects!

Ruby와 Lisp: Lisp의 정신이 Ruby에 미친 영향 Lisp의 핵심 철학인 '코드는 데이터'와 '표현식 중심 사고'는 Ruby의 유연한 메타프로그래밍 및 DSL 구축 능력에 깊은 영향을 주었습니다. #metaprogramming ruby-news.kr/articles/ruby-…


Our new J.UCS issue is out today!🎉 lib.jucs.org/issue/5178/ It features a bibliometric retrospective on 30 years of J.UCS. Plus, 5 more articles exploring #convolutionalneuralnetworks, #NLP, #metaprogramming, #anomalyprevention and #GeneticAlgorithms.🌍✨Photo: Christian Trummer

jucsnews's tweet image. Our new J.UCS issue is out today!🎉 lib.jucs.org/issue/5178/ It features a bibliometric retrospective on 30 years of J.UCS. Plus, 5 more articles exploring #convolutionalneuralnetworks, #NLP, #metaprogramming, #anomalyprevention and #GeneticAlgorithms.🌍✨Photo: Christian Trummer

Ruby와 그 이웃 언어: Lisp Lisp는 괄호 기반의 S-표현식과 코드-데이터 동일성이라는 독특한 문법을 가진 가장 오래된 프로그래밍 언어 중 하나입니다. #metaprogramming ruby-news.kr/articles/ruby-…


Ruby의 객체 모델 및 Rails 메타프로그래밍 마스터하기: 유연하고 확장 가능하며 유지보수 가능한 시스템 구축 방법 Ruby의 객체 모델과 메타프로그래밍은 Rails 애플리케이션의 유연성, 확장성, 유지보수성을 극대화하는 핵심입니다. #metaprogramming ruby-news.kr/articles/maste…


Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025 #MetaProgramming #Java #JConf #JConfGt2025

guatejug's tweet image. Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025

#MetaProgramming #Java #JConf #JConfGt2025
guatejug's tweet image. Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025

#MetaProgramming #Java #JConf #JConfGt2025

저두만들고싶내용! 주재한쿡사람들도 #metaprogramming 많니사주시길을~~~😭😭😭


Save time on multi-column calcs in #DolphinDB! Use metaprogramming (e.g., cross() + sqlCol()) to auto-generate moving stats for multiple windows. #Metaprogramming #Efficiency


#scala #metaprogramming #typeclasses because, of course, I forgot

I haven't blogged in a while, but this needed to be written: kubuszok.com/2025/sanely-au…



@PyConMY welcomes Neha to reveal "The Zen of Metaprogramming"! She's a Ph.D. researcher in Precision Medicine @UniofNewcastle + former IT pro @TCS & @HCLTech + passionate about teaching coding! 💪 #Python #Metaprogramming #WomenInTech #PrecisionMedicine

pyconmy's tweet image. @PyConMY welcomes Neha to reveal "The Zen of Metaprogramming"!

She's a Ph.D. researcher in Precision Medicine @UniofNewcastle + former IT pro @TCS & @HCLTech + passionate about teaching coding! 💪
#Python #Metaprogramming #WomenInTech #PrecisionMedicine

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=cKvgMj… Pt 2: youtube.com/watch?v=5er4yL… Pt 3: youtube.com/watch?v=TJ8Tqv…

leanprover's tweet image. 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=cKvgMj…
Pt 2: youtube.com/watch?v=5er4yL…
Pt 3: youtube.com/watch?v=TJ8Tqv…

#c #metaprogramming An attempt at metaprogramming in C using `_Generic` and `typeof`. I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun. gist.github.com/ttldtor/759be9…

ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…
ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…
ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…

Ο μεταπρογραμματισμός επιτρέπει στον κώδικα να «ξαναγράφει» τον εαυτό του. Οι μακρο-τελεστές λειτουργούν ως μοτίβα που δημιουργούν νέα συντακτικά εργαλεία, μετατρέποντας τη γλώσσα σε εργαστήριο ιδεών. delta-pi-systems.eu/el/blog/metapr… #Metaprogramming #Macros #Programming


“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” ccs.neu.edu/home/ryanc/mac… #macros #metaprogramming #lisp


Στο The Art of the Metaobject Protocol οι Kiczales, des Rivieres & Bobrow δείχνουν πώς η Common Lisp CLOS μπορεί να αναδιαμορφωθεί εκ των έσω. Θεμελιώδες έργο για μετα-προγραμματισμό, όπου οι κανόνες του ίδιου του συστήματος γίνονται αντικείμενα προς έλεγχο #Lisp #Metaprogramming


Programs that write programs? Welcome to the fascinating world of metaprogramming. #FutureOfCode #Metaprogramming #CodeNerd

_codebeans's tweet image. Programs that write programs? 
Welcome to the fascinating world of metaprogramming. 

#FutureOfCode #Metaprogramming #CodeNerd

Picture a software organism — not a static bundle of functions, but a living protocol. One that rewrites its own DNA (source code) based on the feedback it receives. #aimetaprogramming #metaprogramming #ai #SoftwareDevelopment #SoftwareEngineering


Add a string constant column via metaprogramming? Use sqlColAlias and parseExpr! Check the script for implementation. #Metaprogramming #DataColumns #CodingTips

DolphinDB_Comm's tweet image. Add a string constant column via metaprogramming? 

Use sqlColAlias and parseExpr!
Check the script for implementation. 
#Metaprogramming #DataColumns #CodingTips

Hello people! Here I am sharing how we are applying #metaprogramming to build software with A.I. It would be cool to read you. guillermoespinolaorci.substack.com/p/ai-software-…


#c #metaprogramming An attempt at metaprogramming in C using `_Generic` and `typeof`. I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun. gist.github.com/ttldtor/759be9…

ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…
ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…
ttldtor's tweet image. #c #metaprogramming
An attempt at metaprogramming in C using `_Generic` and `typeof`.
I managed to successfully do some work with function "signatures." Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…

Building a quad tree for #MuckyVision sprite collisions got me thinking on pros/cons of #metaprogramming (minimal example below). Pros: succinct code, tree builds at compile time. Cons: Bloated executable, some runtime delay (copying tree to heap?). Maybe 'can'≠'should'?🤔

MuckyTaters's tweet image. Building a quad tree for #MuckyVision sprite collisions got me thinking on pros/cons of #metaprogramming (minimal example below). Pros: succinct code, tree builds at compile time. Cons: Bloated executable, some runtime delay (copying tree to heap?). Maybe 'can'≠'should'?🤔

Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025 #MetaProgramming #Java #JConf #JConfGt2025

guatejug's tweet image. Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025

#MetaProgramming #Java #JConf #JConfGt2025
guatejug's tweet image. Samuel Palacios - Meta-programming en Java: Cómo escribir código que genera código, en la JConf Guatemala 2025

#MetaProgramming #Java #JConf #JConfGt2025

Programs that write programs? Welcome to the fascinating world of metaprogramming. #FutureOfCode #Metaprogramming #CodeNerd

_codebeans's tweet image. Programs that write programs? 
Welcome to the fascinating world of metaprogramming. 

#FutureOfCode #Metaprogramming #CodeNerd

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=cKvgMj… Pt 2: youtube.com/watch?v=5er4yL… Pt 3: youtube.com/watch?v=TJ8Tqv…

leanprover's tweet image. 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=cKvgMj…
Pt 2: youtube.com/watch?v=5er4yL…
Pt 3: youtube.com/watch?v=TJ8Tqv…

@PyConMY welcomes Neha to reveal "The Zen of Metaprogramming"! She's a Ph.D. researcher in Precision Medicine @UniofNewcastle + former IT pro @TCS & @HCLTech + passionate about teaching coding! 💪 #Python #Metaprogramming #WomenInTech #PrecisionMedicine

pyconmy's tweet image. @PyConMY welcomes Neha to reveal "The Zen of Metaprogramming"!

She's a Ph.D. researcher in Precision Medicine @UniofNewcastle + former IT pro @TCS & @HCLTech + passionate about teaching coding! 💪
#Python #Metaprogramming #WomenInTech #PrecisionMedicine

Came out with a C++ metaprogramming technique where a macro differentiates between types and enum values. Sample output: "C" is a type "E::v1" is a numeric expression Works primarily with non-enum classes. Fascinating hack! #cplusplus #metaprogramming

galtza's tweet image. Came out with a C++ metaprogramming technique where a macro differentiates between types and enum values. Sample output:

"C" is a type
"E::v1" is a numeric expression

Works primarily with non-enum classes. Fascinating hack! #cplusplus #metaprogramming

AI agents building AI? Meta-level programming is here. Automation's automating itself. Buckle up! 🤯 #AI #MetaProgramming #FutureOfWork

itz_sayan_03's tweet image. AI agents building AI? Meta-level programming is here. Automation's automating itself. Buckle up! 🤯 #AI #MetaProgramming #FutureOfWork

While working on some #Scala3 #Metaprogramming, the harsh reality hit: IDEA fell short, unable to assist me further, sometimes even with basic completions. 😐 I've worked with @scalameta before, but it saved my life this time. Great job, guys! 👍

filemon_279's tweet image. While working on some #Scala3 #Metaprogramming, the harsh reality hit: IDEA fell short, unable to assist me further, sometimes even with basic completions. 😐 
I've worked with @scalameta before, but it saved my life this time. Great job, guys! 👍

A compile-time map, with `lookup` not using recursion! Give it a try: godbolt.org/z/MPzro3zMf! #cpp #cplusplus #metaprogramming #map #cxx

rshepherdcpp's tweet image. A compile-time map, with `lookup` not using recursion! Give it a try: godbolt.org/z/MPzro3zMf!
#cpp #cplusplus #metaprogramming #map #cxx

How did programmers program a #programming language to program a program to program programs? 🤔💻 #MetaProgramming #Codeception

helloaddevice's tweet image. How did programmers program a #programming language to program a program to program programs? 🤔💻 #MetaProgramming #Codeception

I am studying metaprogramming and I am practice. I created a new gem to generate colors in format hexadecimal. #ruby #metaprogramming #gem #colors #rubygems

OjedaAlef's tweet image. I am studying metaprogramming and I am practice. I created a new gem to generate colors in format hexadecimal.
#ruby #metaprogramming #gem #colors #rubygems

The newest release of my C++ metaprogramming library mlib is out: github.com/robertshepherd…! Check the newest features out! Check out the new compile time string features (string_parse.hpp)!🎉 #cpp #metaprogramming #cplusplus #c #programming #github

rshepherdcpp's tweet image. The newest release of my C++ metaprogramming library mlib is out: github.com/robertshepherd…! Check the newest features out! Check out the new compile time string features (string_parse.hpp)!🎉 #cpp #metaprogramming #cplusplus #c #programming #github
rshepherdcpp's tweet image. The newest release of my C++ metaprogramming library mlib is out: github.com/robertshepherd…! Check the newest features out! Check out the new compile time string features (string_parse.hpp)!🎉 #cpp #metaprogramming #cplusplus #c #programming #github

🧐Dynamic column fetching in #DolphinDB! Use metaprogramming with select to get multiple columns: select colNames()[idx1, idx2...] from table #DolphinDB #MetaProgramming #DataQuery

DolphinDB_Comm's tweet image. 🧐Dynamic column fetching in #DolphinDB! 

Use metaprogramming with select to get multiple columns:
select colNames()[idx1, idx2...] from table

#DolphinDB #MetaProgramming #DataQuery

Add a string constant column via metaprogramming? Use sqlColAlias and parseExpr! Check the script for implementation. #Metaprogramming #DataColumns #CodingTips

DolphinDB_Comm's tweet image. Add a string constant column via metaprogramming? 

Use sqlColAlias and parseExpr!
Check the script for implementation. 
#Metaprogramming #DataColumns #CodingTips

Loading...

Something went wrong.


Something went wrong.


United States Trends