Skip Navigation
  • There is?

  • It should be easy to edit the existing code to add support for i18n, but there's probably no way to make in generic (except for macros).

  • Yeah, that was basically it.

  • There's no purpose really. It was more of "wonder if I can" and also nice way to learn custom literals.

  • C++ @programming.dev

    Index arrays with ordinals instead of integers with custom literals

  • PostgreSQL @programming.dev

    The performance cost of pl/pgsql exception block in Postgres

    dev.to /serpent7776/the-performance-cost-of-plpgsql-exception-block-in-postgres-4h22
  • commandline @programming.dev

    histat - a simple history stats

    github.com /serpent7776/bits/tree/master/histat
  • ifn't

    Jump
  • I can actually define this in TCL:

     tcl
        
    % proc ifn't {cond cmds} {if {!$cond} {uplevel $cmds}}
    % ifn't false {puts 12}
    12
    % ifn't true {puts 12}
    %