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 InstagramPrivateController < ApplicationController | |
| def initialize(username, password, photo, caption) | |
| @username = username | |
| @password = password | |
| @photo = photo | |
| @caption = caption | |
| @cookiepath = Tempfile.new('cookies').path | |
| @user_agent = generate_user_agent() |
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 Service | |
| def self.instance | |
| @instance ||= self.new | |
| end | |
| def initialize | |
| end | |
| def perform_action | |
| puts 'aciton performing' |
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 ISBNCalculator | |
| def initialize(barcode) | |
| @barcode = barcode.to_s | |
| end | |
| def ISBN | |
| "#{@barcode}#{check_digit}" | |
| end | |
| private |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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 ImageUploader < CarrierWave::Uploader::Base | |
| include CarrierWave::MiniMagick | |
| version :blurred do | |
| process :blur | |
| end | |
| def blur(radius=16) | |
| manipulate! do |img| | |
| original_path = img.path |