devcarbon-com
devcarbon-com
I'm a bit baffled as to what the compiler is optimizing that would cause this. it fails even with a very basic test case, ```cpp digitalWriteFast(1, 0); digitalReadFast(1); ``` I...
### Summary of Changes I got a little carried away while replacing evil-surround and replaced evil altogether :P Draft. Initial testing looks promising. Still need to update the doc strings...
The goal of this code is to simplify the process of navigating quickly to a specific, or approximate target, by leveraging the structure provided by indentation. Some quick thoughts: -...
Use case: quickly tinkering in literate programming. A common case being a literate emacs config.
C example: ```c void GPIO_reservations(void) { /* highlighted-area */ RESERVE_GPIO(SDA, GPIO_PORT_0, GPIO_PIN_6, PID_I2C_SDA); /* highlighted-area */ RESERVE_GPIO(SCL, GPIO_PORT_0, GPIO_PIN_7, PID_I2C_SCL); RESERVE_GPIO(UART_RX, GPIO_PORT_0, GPIO_PIN_8, PID_UART2_RX); RESERVE_GPIO(UART_TX, GPIO_PORT_0, GPIO_PIN_9, PID_UART2_TX); } ```...
> Hi @countvajhula, I'm planning to quickly write up issues I've noticed with the latest symex update. If you would rather wait until I have more time to do a...
> @countvajhula I decided to go ahead and add this as a draft issue, since that way it can be discussed as we go along instead of waiting till I...
> @countvajhula Aha, I've found your "mode-mode" at last! Here I think is huge potential for this idea I really like [corkey](https://github.com/corgi-emacs/corkey)'s idea of signals, which decouple conceptual operations (e.g....
See: https://clojure.org/guides/destructuring#_keyword_arguments
Hi Bodmer, Here is a working-draft memory arena sprite feature that I ended up using for one of my clients projects. I'm sure there is a lot of design considerations...