#metaprogramming نتائج البحث

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

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


یکی از این جادو های کاربردی #Metaprogramming این هست که اگر یک Instance از یک Object داریم که یک Parrent Class داره چطور فقط و فقط متوجه بشیم که چه Attr هایی مخصوص به اون Child Class هست و Attr های Parrent رو نادیده بگیریم. و جواب این سوال رو میتونید داخل عکس پیدا کنید /1

imanhpr_media's tweet image. یکی از این جادو های کاربردی #Metaprogramming این هست که اگر یک Instance از یک Object داریم که یک Parrent Class داره چطور فقط و فقط متوجه بشیم که چه Attr هایی مخصوص به اون Child Class هست و Attr های Parrent رو نادیده بگیریم.
و جواب این سوال رو میتونید داخل عکس پیدا کنید
/1

#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…

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

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'?🤔

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

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

✨ 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

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

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! 💪 

➡️…

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

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

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! 👍

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!

metaprogramming drugs present an opportunity to disrupt vicious cycles and solve the core YOU problem. let’s engineer positive feedback loops between genes and actions. #epigenetics #metaprogramming


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


CHALLENGE: Implement a compile-time variadic constexpr function that performs a perfect forwarding memoization cache for any callable, using only <type_traits> and <tuple>. No third-party libraries. #cpp #metaprogramming #constexpr #C #programming #cplusplus


🚀 Yeni Medium Yazım: Meta Programming Nedir? Kod yazmak hepimizin işi. Ama ya kodun kendi kendini yazması mümkün mü? İşte bu noktada Meta Programming devreye giriyor. medium.com/@halilbarim/me… #JavaScript #MetaProgramming #WebDevelopment #ProgrammingConcepts #SoftwareEngineering


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-…


How did they program a language to program programs? 🤯💻 It’s recursive, meta-programming at its finest. This concept powers some of the most innovative tech today, shaping how we code and create systems! 🔄🚀 #Programming #TechInnovation #MetaProgramming


Today I dove into macros in Rust 🦀 Learned both macro_rules! (declarative) and procedural macros — attribute, derive, and function-like macros. Mind = Blown 🤯 Rust’s metaprogramming game is strong! #TIL #MetaProgramming #RustLang #TIL #Cohort3.0 #Solana

TusharS91319723's tweet image. Today I dove into macros in Rust 🦀
Learned both macro_rules! (declarative) and procedural macros — attribute, derive, and function-like macros.
Mind = Blown 🤯
Rust’s metaprogramming game is strong!

#TIL #MetaProgramming #RustLang #TIL #Cohort3.0 #Solana

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&apos;s automating itself. Buckle up! 🤯 #AI #MetaProgramming #FutureOfWork

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

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

🧐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

🐍 Kate Gregory – C++ genius elevating code quality, teaching advanced metaprogramming & modern C++. Her talks make templates understandable and powerful. #Cpp #Metaprogramming #Level26


🚀 Just dropped a new blog on Metaprogramming in JavaScript with Proxy & Reflect! Learn how to intercept operations, create powerful abstractions, and write cleaner, more dynamic code. 🔍 Peek inside: sahilkhan.site/blogs/proxy-re… #JavaScript #WebDev #Metaprogramming #Proxy #Reflect

sahilkhan_dev's tweet image. 🚀 Just dropped a new blog on Metaprogramming in JavaScript with Proxy &amp;amp; Reflect!
Learn how to intercept operations, create powerful abstractions, and write cleaner, more dynamic code.
🔍 Peek inside:
 sahilkhan.site/blogs/proxy-re…
#JavaScript #WebDev #Metaprogramming #Proxy #Reflect

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&apos;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…

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

Is this the legendary C meta programming way? #metaprogramming

MassineMouha's tweet image. Is this the legendary C meta programming way?

#metaprogramming

Working through concepts like reflection & proxies — aiming for a deeper understanding of how JS really works. #javascript #metaprogramming #buildinpublic

Manmeetkaur2300's tweet image. Working through concepts like reflection &amp;amp; proxies — aiming for a deeper understanding of how JS really works. 
#javascript #metaprogramming #buildinpublic

#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 &quot;signatures.&quot; 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 &quot;signatures.&quot; 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 &quot;signatures.&quot; Otherwise, it was just a bit of fun.

gist.github.com/ttldtor/759be9…

یکی از این جادو های کاربردی #Metaprogramming این هست که اگر یک Instance از یک Object داریم که یک Parrent Class داره چطور فقط و فقط متوجه بشیم که چه Attr هایی مخصوص به اون Child Class هست و Attr های Parrent رو نادیده بگیریم. و جواب این سوال رو میتونید داخل عکس پیدا کنید /1

imanhpr_media's tweet image. یکی از این جادو های کاربردی #Metaprogramming این هست که اگر یک Instance از یک Object داریم که یک Parrent Class داره چطور فقط و فقط متوجه بشیم که چه Attr هایی مخصوص به اون Child Class هست و Attr های Parrent رو نادیده بگیریم.
و جواب این سوال رو میتونید داخل عکس پیدا کنید
/1

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

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&apos;s automating itself. Buckle up! 🤯 #AI #MetaProgramming #FutureOfWork

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 &apos;N&apos; 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 &apos;N&apos; 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 &apos;N&apos; 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 &apos;N&apos; Go!⚡

Typesafe and IDE assisted.

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

#Scala #Metaprogramming #OpenAPI

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 &apos;can&apos;≠&apos;should&apos;?🤔

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

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:

&quot;C&quot; is a type
&quot;E::v1&quot; is a numeric expression

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

🧐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

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

Today I dove into macros in Rust 🦀 Learned both macro_rules! (declarative) and procedural macros — attribute, derive, and function-like macros. Mind = Blown 🤯 Rust’s metaprogramming game is strong! #TIL #MetaProgramming #RustLang #TIL #Cohort3.0 #Solana

TusharS91319723's tweet image. Today I dove into macros in Rust 🦀
Learned both macro_rules! (declarative) and procedural macros — attribute, derive, and function-like macros.
Mind = Blown 🤯
Rust’s metaprogramming game is strong!

#TIL #MetaProgramming #RustLang #TIL #Cohort3.0 #Solana

Loading...

Something went wrong.


Something went wrong.


United States Trends