Skip to content

Instantly share code, notes, and snippets.

View pointlessone's full-sized avatar
🍍
Pineapple a day keeps a pinedoctor away

Alexander Mankuta pointlessone

🍍
Pineapple a day keeps a pinedoctor away
View GitHub Profile
@pointlessone
pointlessone / bench.rb
Last active October 9, 2024 18:16 — forked from fractaledmind/bench.rb
Ruby benchmark script to test which way is faster to merge two arrays: Array + Array or Array << Entry
require 'benchmark'
def array_plus_array_element(array)
result = []
array.each do |i|
result = result + [i]
end
result
end
@pointlessone
pointlessone / Rakefile
Last active December 10, 2015 07:48 — forked from anonymous/.rvmrc
HPMoR epub e-book builder task It requires Nokogiri and gepub gems.
require 'rubygems'
require 'nokogiri'
require 'open-uri'
require 'fileutils'
require 'gepub'
desc "Fetch the book from hpmor.com"
task :fetch do
unless File.exists? 'book-source/images/cover.jpg'