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
-- | |
-- RSA Key Generator | |
-- By 1lann | |
-- | |
-- Refer to license: http://pastebin.com/9gWSyqQt | |
-- | |
-- | |
-- Start of third-party libraries/helpers | |
-- |
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
package compress | |
import ( | |
"bytes" | |
"compress/lzw" | |
"io/ioutil" | |
) | |
func compress(input []byte) ([]byte, error) { | |
output := &bytes.Buffer{} |
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
Process: SpringBoard [67309] | |
Path: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/CoreServices/SpringBoard.app/SpringBoard | |
Identifier: SpringBoard | |
Version: 1.0 (50) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd_sim [67295] | |
Responsible: launchd_sim [67295] | |
User ID: 501 | |
Date/Time: 2015-05-31 21:11:00.575 +0800 |
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
local vertexStart = {"RRLR", "RR", "", "L", "LRL", "LRLRL"} | |
local vertexRows = {6, 8, 11, 10, 8, 6} | |
local allVerticies = {} | |
for start = 1, #vertexStart do | |
local startTurn = "L" | |
if start == 3 then | |
startTurn = "S" | |
elseif start > 2 then |
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
double myRound(double num, int decimalPlaces) { | |
int rounded = num * power10Of(decimalPlaces); | |
return (double)rounded / power10Of(decimalPlaces); | |
} |
NewerOlder