Skip to content

Instantly share code, notes, and snippets.

View sahidursuman's full-sized avatar

Sahidur Rahman Suman sahidursuman

View GitHub Profile
require 'rubygems'
require 'sinatra'
require 'redis'
# To use, simply start your Redis server and boot this
# example app with:
# ruby example_note_keeping_app.rb
#
# Point your browser to http://localhost:4567 and enjoy!
#
@sahidursuman
sahidursuman / serializer_benchmarks.rb
Created August 12, 2023 23:46 — forked from aishfenton/serializer_benchmarks.rb
Performance comparison of different ruby serializer methods
# sudo gem install bson
# sudo gem install bson_ext
# sudo gem install yajl-ruby
# sudo gem install json
# sudo gem install msgpack
require 'rubygems'
require 'benchmark'
require 'yaml'
require 'bson'
@sahidursuman
sahidursuman / How to use Images as Radio buttons.md
Created July 31, 2019 20:32 — forked from rcotrina94/How to use Images as Radio buttons.md
How to use images for radio buttons (input-radio).
@sahidursuman
sahidursuman / google-seo-scraper.js
Created July 29, 2019 11:36 — forked from carlsednaoui/google-seo-scraper.js
Google All In Title Scraper
// This is a small program written in Node. I did NOT know anything about Node until coding this.
// The goal was to mimic this guy right here, without using a framework: https://github.com/carlsednaoui/google-allintitle-scraper
// You'll need a file named keywords.txt
// It will return a file names results.txt
var fs = require('fs'),
http = require('http');
var query = "http://www.google.com/search?q=allintitle:",
class Array
def to_csv(csv_filename="hash.csv")
require 'csv'
CSV.open(csv_filename, "wb") do |csv|
csv << first.keys # adds the attributes name on the first line
self.each do |hash|
csv << hash.values
end
end
end
@sahidursuman
sahidursuman / ruby_object_quick_initialization.rb
Created June 3, 2019 14:28 — forked from pmarreck/ruby_object_quick_initialization.rb
Easy Ruby auto-object-initialization with a params hash
# Some code that lets you quickly erect objects and their attributes with a params hash
class InvalidAutoInitializeParamError < StandardError; end
class Object
class << self
alias new_without_auto_initialize new
def new_with_auto_initialize(*args,&block)
a1 = args.first
@sahidursuman
sahidursuman / prawn2s3.rb
Created May 29, 2019 18:24 — forked from avogel3/prawn2s3.rb
Uploading Prawn Generated PDFs to S3 in Rails using Paperclip
# Ran into an issue recently where I wanted to use our custom prawn class to generate a PDF, then upload it to Amazon S3 using paperclip.
# Let 'OurCustomPdf' be our prawn class.
# Let the variable '@user' be our our model, has_many :documents
# Let 'Document' be our paperclip model, belongs_to :user
pdf = OurCustomPdf.new(@user, "pdf")
upload = @user.documents.new
upload.attachment = StringIO.new(pdf.render)
upload.save!
@sahidursuman
sahidursuman / sidekiq.config
Created May 14, 2019 14:12 — forked from maxdbn/sidekiq.config
Gracefully restarting Sidekiq on Elasticbeanstalk, only after it's done with the running jobs. Tested on: 64bit Amazon Linux 2016.09 v2.3.0 running Ruby 2.3 (Puma). Thanks to ssaunier for the original gist! https://gist.github.com/ssaunier/44bbebb9c0fa01953860
# Sidekiq interaction and startup script
commands:
create_post_dir:
command: "mkdir -p /opt/elasticbeanstalk/hooks/appdeploy/post"
ignoreErrors: true
files:
"/opt/elasticbeanstalk/hooks/appdeploy/post/50_restart_sidekiq.sh":
mode: "000755"
owner: root
group: root
#!/usr/bin/env ruby
require "prawn/table"
require "prawn"
require 'pp'
require 'barby'
require 'barby/outputter/png_outputter'
require "barby/barcode/qr_code"
require 'rubygems'
require 'prawn'
require 'barby'
require 'barby/barcode/qr_code'
require 'barby/outputter/prawn_outputter'
Prawn::Document.generate("barcode.pdf") do |pdf|
pdf.bounding_box([0, pdf.cursor], :width => 100, :height => 100) do
Barby::QrCode.new("hello", :level => :h).annotate_pdf(pdf)
end