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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head profile="http://selenium-ide.openqa.org/profiles/test-case"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link rel="selenium.base" href="https://www.kissmetrics.com/" /> | |
<title>kiss metric 2</title> | |
</head> | |
<body> | |
<table cellpadding="1" cellspacing="1" border="1"> |
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
$ openssl req -new -key private.key -out marrily.com.csr | |
You are about to be asked to enter information that will be incorporated | |
into your certificate request. | |
What you are about to enter is what is called a Distinguished Name or a DN. | |
There are quite a few fields but you can leave some blank | |
For some fields there will be a default value, | |
If you enter '.', the field will be left blank. | |
----- | |
Country Name (2 letter code) [AU]:US |
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
openssl genrsa -out private.key 2048 | |
Generating RSA private key, 2048 bit long modulus | |
..............................+++ | |
.+++ | |
e is 65537 (0x10001) |
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
server { | |
listen 80; | |
server_name marrily.com; | |
root /var/www/current/public; | |
passenger_enabled on; | |
rails_env production; | |
gzip on; | |
gzip_http_version 1.1; | |
gzip_vary on; |
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
// ==UserScript== | |
// @name Paypal Sandbox autorefresh | |
// @description Automatically refresh paypal sandbox pages | |
// @include https://paypalmanager.sandbox.paypal.com/* | |
// @include https://developer.paypal.com/* | |
// @include https://sandbox.paypal.com/* | |
// @include https://www.sandbox.paypal.com/* | |
// @include http://developer.paypal.com/* | |
// @author Alex Le (http://marrily.com) | |
// ==/UserScript== |
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
# lib/paypal.rb | |
require 'net/http' | |
module Paypal | |
# paypal_cert: the content of the paypal certificate | |
# business_key: content of the private key | |
# business_cert: content of the public cert | |
# business_certid: the ID of the public cert, provided by PayPal on the web |
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
var x1 = function( z, m ) { // image url, callback | |
var o = new Image(); | |
o.onload = function() { | |
var s = "", | |
c = d.createElement("canvas"), | |
t = c.getContext("2d"), | |
w = o.width, | |
h = o.height; | |
c.width = c.style.width = w; | |
c.height = c.style.height = h; |
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
require 'digest/md5' | |
def gfm(text) | |
# Extract pre blocks | |
extractions = {} | |
text.gsub!(%r{<pre>.*?</pre>}m) do |match| | |
md5 = Digest::MD5.hexdigest(match) | |
extractions[md5] = match | |
"{gfm-extraction-#{md5}}" | |
end |
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
var f,proxy,d=document; | |
var addCss = function(s) { | |
var c = d.createElement('style'); | |
c.type = 'text/css'; | |
if (c.styleSheet) | |
c.styleSheet.cssText = s; | |
else | |
c.appendChild(d.createTextNode(s)); | |
d.getElementsByTagName('HEAD')[0].appendChild(c); |
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
def string2pngs( string, output ) | |
puts "original string length #{string.length}" | |
limit = 8192 #8192 # IE9 max for getImageData | |
images_count = (string.length * 1.0 / limit ).ceil | |
files = [] | |
for i in 0 ... images_count | |
filename = output.split('.') |