This file contains hidden or 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
| namespace :dump do | |
| task db: :environment do | |
| if !Rails.env.development? | |
| raise "This task is only available in development environment" | |
| end | |
| puts "Removing potential existing backups..." | |
| if File.directory?("/tmp/backups") | |
| FileUtils.rm_rf("/tmp/backups") | |
| end |
This file contains hidden or 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
| ActiveRecord::Base.connection.execute(<<-SQL) | |
| UPDATE projects | |
| SET comments_count = ( | |
| SELECT COUNT(*) | |
| FROM comments | |
| WHERE comments.commentable_id = projects.id | |
| AND comments.commentable_type = 'Project' | |
| ) | |
| SQL |
This file contains hidden or 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
| // TODO: Make typescript happy here. | |
| type JSONValue = | |
| | string | |
| | number | |
| | boolean | |
| | { [x: string]: JSONValue } | |
| | Array<JSONValue>; | |
| interface JSONObject { | |
| [x: string]: JSONValue; |
This file contains hidden or 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
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| end | |
| solved = {} | |
| expressions = {} | |
| data.each do |line| |
This file contains hidden or 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
| if ARGV.empty? | |
| data = [1, 2, -3, 3, -2, 0, 4] | |
| else | |
| data = File | |
| .readlines(ARGV[0], chomp: true) | |
| .map(&:to_i) | |
| end | |
| def mix(data) | |
| # iterate over all the elements and |
This file contains hidden or 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
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| else | |
| data = File.readlines(ARGV.first, chomp: true) | |
| end | |
| def blueprints(data) | |
| data.map do |line| | |
| match = /Blueprint (?<id>\d+): Each ore robot costs (?<ore_robot_ore>\d+) ore. Each clay robot costs (?<clay_robot_ore>\d+) ore. Each obsidian robot costs (?<obsidian_robot_ore>\d+) ore and (?<obsidian_robot_clay>\d+) clay. Each geode robot costs (?<geode_robot_ore>\d+) ore and (?<geode_robot_obsidian>\d+) obsidian./.match(line) |
This file contains hidden or 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
| class Piece | |
| attr_reader :shape, :kind | |
| ORDER = [ | |
| :dash, | |
| :plus, | |
| :jay, | |
| :line, | |
| :square |
This file contains hidden or 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
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| end | |
| VALVES = {} | |
| GRAPH = {} |
This file contains hidden or 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 'set' | |
| # require 'byebug' | |
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| end | |
| ADJ = {} |
This file contains hidden or 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 'set' | |
| if ARGV.empty? | |
| data = DATA.readlines(chomp: true) | |
| y = 10 | |
| MAX = 20 | |
| else | |
| data = File.readlines(ARGV[0], chomp: true) | |
| y = 2000000 | |
| MAX = 4000000 |