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
The page at localhost:3000 says: | |
first_time=true; profile=afidwogiowjero; |
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 File.expand_path('../boot', __FILE__) | |
# Pick the frameworks you want: | |
require "active_model/railtie" | |
require "active_record/railtie" | |
require "action_controller/railtie" | |
require "action_mailer/railtie" | |
require "action_view/railtie" | |
require "sprockets/railtie" | |
# require "rails/test_unit/railtie" |
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 JobsHelper | |
def markdownify(content) | |
pipeline_context = {gfm:true, asset_root: "https://a248.e.akamai.net/assets.github.com/images/icons"} | |
pipeline = HTML::Pipeline.new [ | |
HTML::Pipeline::MarkdownFilter, | |
HTML::Pipeline::SanitizationFilter, | |
HTML::Pipeline::EmojiFilter | |
], pipeline_context | |
pipeline.call(content)[:output].to_s.html_safe | |
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 "httparty" | |
class Plugrush | |
include HTTParty | |
default_options.update(verify: false) | |
base_uri "https://www.plugrush.com/api" | |
def initialize(email, api_key) | |
@credentials = "?user=#{email}&api_key=#{api_key}" | |
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
[ 2014-12-17 15:46:14.3912 21021/7f3250b16700 agents/HelperAgent/RequestHandler.h:2306 ]: [Client 20] Cannot checkout session because a spawning error occurred. The identifier of the error is 87d40d88. Please see earlier logs for details about the error. | |
App 21217 stdout: | |
App 21217 stdout: | |
[ 2014-12-17 15:47:21.1270 21021/7f3252e90700 Pool2/Implementation.cpp:287 ]: Could not spawn process for application /home/deploy/datalove/current: An error occured while starting up the preloader. | |
Error ID: ac490e7f | |
Error details saved to: /tmp/passenger-error-cfwWWo.html | |
Message from application: <p>It looks like Bundler could not find a gem. Maybe you didn't install all the gems that this application needs. To install your gems, please run:</p> | |
<pre class="commands">bundle install</pre> |
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
<h3>Lets do a reservation </h3> | |
<% unless current_user.blank? %> | |
<%= form_for @reservation, :url => make_a_booking_path, :html => { :class => 'form-horizontal' } do |f| %> | |
<% if @reservation.errors.any? %> | |
<div id="errorExplanation"> | |
<h2><%= pluralize(@reservation.errors.count, "error") %> prohibited this reservation from being saved:</h2> | |
<ul> | |
<% @reservation.errors.full_messages.each do |message| %> | |
<li><%= message %></li> |
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 'open-uri' | |
url = "http://www.domain.com/embed/44bc40f3bc04f65b7a35" | |
video_page = open(url).read | |
video = video_page[/'http(.*?)mp4(.*?)'/] | |
puts download_url = video.tr("'",'') | |
new_file_path = "/Users/name/Projects/loader/your_video.mp4" | |
open(new_file_path, "wb") do |file| | |
file.print open(download_url).read | |
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
<iframe src="http://www.pornhub.com/embed/44bc40f3bc04f65b7a35" frameborder="0" height="481" width="608" scrolling="no"></iframe>|http://i1.cdn2a.image.pornhub.phncdn.com/m=eaf88daaaa/videos/201010/27/267/original/0.jpg|http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/1.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/2.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/3.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/4.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/5.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/6.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/7.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/8.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/9.jpg;http://thumb0.cdn1b.image.pornhub.phncdn.com/videos//201010/27/267/320x240/ |
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
user nginx; | |
worker_processes {{ workers }}; | |
error_log {{ deploy_to }}/shared/log/nginx_error.log; | |
events | |
{ | |
worker_connections 1024; | |
{% if passenger != true %} | |
accept_mutex off; | |
{% endif %} |
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
user nginx; | |
worker_processes {{ workers }}; | |
error_log {{ deploy_to }}/shared/log/nginx_error.log; | |
events | |
{ | |
worker_connections 1024; | |
{% if passenger != true %} | |
accept_mutex off; | |
{% endif %} |