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
source 'https://rubygems.org' | |
gem 'activerecord', '~> 3.2.18' | |
gem 'sqlite3', '= 1.3.5' | |
gem 'rspec' |
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
class JustLogEnv | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
Rails.logger.info env.inspect | |
@app.call(env) | |
end | |
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 'aws-sdk' | |
require 'bcdatabase' | |
config = Bcdatabase.load[:secrets, :paperclip_s3] | |
AWS.config(config) | |
BUCKET = AWS::S3.new.buckets[config['bucket']] | |
require 'find' | |
Find.find('public/system/') { |f| |
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 'sshkit' | |
require 'sshkit/coordinator' | |
require 'sshkit/host' | |
require 'sshkit/dsl' | |
SSHKit::Backend::Netssh.configure do |backend| | |
backend.pty = true | |
end | |
def echo_vulnerability(host, issue) |
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
var updateApk = function(apkUrl) { | |
var downloader = require("com.mykingdom.downloader").createAsyncDownloader({ | |
filesToDownload: [{url : apkUrl}], | |
outputDirectory: Ti.Filesystem.getFile("file:///mnt/sdcard/download"), | |
enableNotification: true, notificationId: 1, notificationTitle: "Downloading new APK" // Optional | |
}); | |
downloader.addEventListener("error", function(event){ | |
alert(event.error + " : While downloading file at (index 0 based) = " + event.currentIndex); | |
}); | |
downloader.addEventListener("onload", function(event){ |
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
source "https://rubygems.org" | |
gem "activerecord", "= 4.2.0" | |
gem "actionview", "= 4.2.0" | |
gem "sqlite3" |
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
source 'https://rubygems.org' | |
gem "activerecord", "~> 4.2" | |
gem "sqlite3" | |
gem "rspec" |
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
begin | |
require 'bundler/inline' | |
rescue LoadError => e | |
$stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
raise e | |
end | |
gemfile(true) do | |
source 'https://rubygems.org' | |
gem 'rails', github: 'rails/rails' |
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
# Dequeueing ActiveJob tasks in the context of your Rails application? | |
# An alternative is to run a standalone ActiveJob process. | |
# But making it dequeue and send devise emails isn't so simple. | |
# Devise is designed to be integrated into a Rails application, not a standalone ActiveJob process. | |
# Before we address configuring the standalone ActiveJob process, | |
# there's some code that needs to go into your Rails app. | |
# Put this in each model in your Rails application: | |
# |
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
/* Adapted from https://cmatskas.com/export-your-stored-passwords-from-chrome/ | |
* 1. Go to chrome://settings-frame/passwords | |
* 2. Paste the following into the JS console: | |
*/ | |
var decryptedRow=""; | |
var pm = PasswordManager.getInstance(); | |
var model = pm.savedPasswordsList_.dataModel; | |
var pl = pm.savedPasswordsList_; | |
for(i=0;i<model.length;i++){ |
OlderNewer