This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'async' | |
module Task | |
module_function | |
def async(*method_names) | |
Async do | |
method_names.map do |job| | |
Async do | |
job.to_proc.call(self) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require 'matrix' | |
class TicTacToe | |
BOARD_SIZE = 3 | |
MARKS = {x: -1, o: 1}.freeze | |
private_constant :MARKS | |
ROW_MOVES = %i[top middle bottom].freeze | |
private_constant :ROW_MOVES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Undigits | |
refine Array do | |
def undigits(base = 10) | |
reverse.reduce(0) do |acc, digit| | |
acc * base + digit | |
end | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# When Math.sqrt(2).fdiv(2) is just too zippy. | |
require 'bigdecimal' | |
require 'bigdecimal/util' | |
def i_ish(precision:) | |
sqrt_2 = 2.to_d.sqrt precision | |
sqrt_i = Complex sqrt_2 / 2, sqrt_2 / 2 | |
sqrt_i * sqrt_i | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative 'enum' | |
enum :Color do | |
value :Red # 0 | |
value :Green # 1 | |
value :Blue, 5 # overwritten to 5 | |
value :Yellow # 6 (5 + 1) | |
def red? | |
self == Color::Red |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require 'sequel' | |
require 'stringio' | |
require 'zlib' | |
module Notes | |
PATH = 'Library/Group Containers/group.com.apple.notes/NoteStore.sqlite' | |
DB = Sequel.sqlite File.join Dir.home, PATH | |
TRAILING_DIVIDOR = "\u001A\u0010\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require 'fiber' | |
class Enum | |
class Yielder | |
def initialize(&block) | |
raise LocalJumpError, 'no block given' unless block_given? | |
@block = block |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# A standard Hash with default proc, which in this case sets the value to the key. | |
default_value_to_key = Hash.new { |hash, key| hash[key] = key } | |
default_value_to_key[:nope] | |
#=> :nope | |
## | |
# This is the same as the above proc with a Hash literal. | |
another_value_to_key = {} | |
another_value_to_key.default_proc = ->(hash, key) { hash[key] = key } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
changes = {IRB::Color::BLUE => IRB::Color::YELLOW} | |
IRB::Color.const_get(:TOKEN_SEQ_EXPRS).tap do |token_seq_exprs| | |
changes.each do |old_color, new_color| | |
token_seq_exprs.filter_map do |type, ((color, _), _)| | |
color == old_color && type | |
end.each do |matching_type| | |
token_seq_exprs.dig(matching_type, 0)[0] = new_color | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
require 'async' | |
require 'async/barrier' | |
require 'async/http/client' | |
require 'async/http/endpoint' | |
require 'async/logger' | |
require 'optionparser' |