Download slt.py python script (supports multiple build) from this repository.
python slt.py <"sublime_text file path">
diff --git a/node_modules/scrypt/index.js b/node_modules/scrypt/index.js | |
index 7b13a79..1e40d76 100644 | |
--- a/node_modules/scrypt/index.js | |
+++ b/node_modules/scrypt/index.js | |
@@ -1,6 +1,6 @@ | |
"use strict"; | |
-var scryptNative = require("./build/Release/scrypt") | |
+var scryptNative = require("./build/Release/scrypt.node") | |
, Crypto = require("crypto") |
Download slt.py python script (supports multiple build) from this repository.
python slt.py <"sublime_text file path">
window.Clipboard = (function(window, document, navigator) { | |
var textArea, | |
copy; | |
function isOS() { | |
return navigator.userAgent.match(/ipad|iphone/i); | |
} | |
function createTextArea(text) { | |
textArea = document.createElement('textArea'); |
require 'sidekiq/api' | |
# 1. Clear retry set | |
Sidekiq::RetrySet.new.clear | |
# 2. Clear scheduled jobs | |
Sidekiq::ScheduledSet.new.clear |
function partition(arr, left, right, pivot) { | |
var temp = arr[pivot]; | |
arr[pivot] = arr[right]; | |
arr[right] = temp; | |
var track = left; | |
for (var i = left; i < right; i++) { | |
if (arr[i]<arr[right]) { | |
var t = arr[i]; | |
arr[i] = arr[track]; | |
arr[track] = t; |