Rob
Rob
I have a model with a type hash constant: ```crystal class Model < Granite::ORM::Base extend Query::BuilderMethods VALID_TYPES = { :one => 1, :two => 2 } end ``` Where the...
https://github.com/crystal-lang/shards/issues/562 I have breeze installed at the most recent tagged version, v0.2.0. The shard.yml specifies an old version of lucky, and breeze runs `shards build` as a postinstall script. Running...
Rendering a tree comes with a bunch of subtle edge cases that can be solved here in a keimeno interface class: - When does a line start with `┌`, `└`...
So that commands which display tabular data can be easily created. Eg `docker stats`
This code will cause the process to go unresponsive and hang on an M1: ```crystal require "fswatch" FSWatch.watch "." do |event| puts "got event for #{event.path}" end ``` I'm not...
``` Unhandled exception in spawn(name: mosquito.runners.queue_list.4351311088): Hostname lookup for fly-podb-redis.upstash.io failed: No address found (Socket::Addrinfo::Error) from /Users/robert/.asdf/installs/crystal/1.11.2/src/socket/addrinfo.cr:132:7 in 'initialize' from /Users/robert/.asdf/installs/crystal/1.11.2/src/socket/tcp_socket.cr:29:3 in 'initialize' from /Users/robert/.asdf/installs/crystal/1.11.2/src/socket/tcp_socket.cr:29:3 in 'new' from lib/redis/src/connection.cr:30:7 in...
Often, especially in development, I'm having to fiddle with the periodic interval just to get the job to run _more frequently_. I wonder if there should be a method to...