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
| <Signature xmlns="http://www.w3.org/2000/09/xmldsig#"> | |
| <SignedInfo> | |
| <CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments"/> | |
| <SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#dsa-sha1"/> | |
| <Reference URI="#object"> | |
| <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/> | |
| <DigestValue>7/XTsHaBSOnJ/jXD5v0zL6VKYsk=</DigestValue> | |
| </Reference> | |
| </SignedInfo> | |
| <SignatureValue> |
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
| using System.Security.Cryptography; | |
| namespace Sample | |
| { | |
| /// <summary> | |
| /// SignatureDescription impl for http://www.w3.org/2001/04/xmldsig-more#rsa-sha256 | |
| /// </summary> | |
| public class RSAPKCS1SHA256SignatureDescription : SignatureDescription | |
| { | |
| /// <summary> |
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
| __author__ = 'Sid' | |
| import requests | |
| from bs4 import BeautifulSoup | |
| import csv | |
| # search = "game of thrones" | |
| search = "person of interest" | |
| # search = "friends" | |
| # search = "rome" |
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 DraggableBox = new Class({ | |
| initialize: function(x, y, w, h) { | |
| this.width = w || 15; | |
| this.height = h || 15; | |
| if (y == null ) { | |
| this.center = new ClPoint(0, 0, x); | |
| } else { | |
| this.center = new ClPoint(x, y); | |
| } | |
| this.cvt(); |
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 pkcs7 -print_certs -in old.p7b -out new.crt | |
| # openssl pkcs7 -print_certs -in old.p7b -out new.cer |
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
| /** | |
| * returns: | |
| * normalized Vector3 refracted by passing from one medium to another in a realistic manner according to Snell's Law | |
| * | |
| * parameters: | |
| * RI1 - the refractive index of the first medium | |
| * RI2 - the refractive index of the second medium | |
| * surfNorm - the normal of the interface between the two mediums (for example the normal returned by a raycast) | |
| * incident - the incoming Vector3 to be refracted | |
| * |
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
| /* | |
| A port of the Fraksl Android App by Ella Jameson | |
| WASD to move, QE to rotate, [UP][DOWN] to zoom, P to take a picture in the sketch directory | |
| */ | |
| void mirror_screen() | |
| { | |
| loadPixels(); | |
| for(int row = 0; row < height; row++) | |
| { |
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
| ========================== | |
| How Software Companies Die | |
| ========================== | |
| - Orson Scott Card | |
| The environment that nurtures creative programmers kills management and | |
| marketing types - and vice versa. | |
| Programming is the Great Game. It consumes you, body and soul. When | |
| you're caught up in it, nothing else matters. When you emerge into |
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
| div { | |
| padding:1em; | |
| margin:1em; | |
| background:#dadada; | |
| } |
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
| ssh-keygen -t rsa -b 4096 -N '' -C "email@example.com" -f ~/.ssh/id_rsa | |
| ssh-keygen -t rsa -b 4096 -N '' -C "email@example.com" -f ~/.ssh/github_rsa | |
| ssh-keygen -t rsa -b 4096 -N '' -C "email@example.com" -f ~/.ssh/mozilla_rsa |