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
const string placeholderPattern = @" | |
\[ | |
\[ | |
([^\]]+) # Description of whatever is in here | |
\] | |
\[ | |
([^\]]+) # Description of whatever is in here | |
\] | |
\]"; |
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
isPrime = (n) -> | |
return true if n is 2 or n is 3 | |
return false if n % 2 is 0 | |
for i in [3..Math.sqrt n] | |
return false if n % i is 0 | |
true | |
primesUnder100 = (n for n in [1..100] when isPrime n) |
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
private static bool BinarySearch(int[] sortedHaystack, int needle) | |
{ | |
int leftBoundary = 0; | |
int rightBoundary = sortedHaystack.Length - 1; | |
while (leftBoundary <= rightBoundary) | |
{ | |
int pivotIndex = (int)(((long)leftBoundary + rightBoundary) / 2); | |
int pivotValue = sortedHaystack[pivotIndex]; |
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
public string DecryptQueryString(string inputText, string key, string salt) | |
{ | |
byte[] encryptedData = Convert.FromBase64String(inputText); | |
var secretKey = new PasswordDeriveBytes(Encoding.ASCII.GetBytes(key), Encoding.ASCII.GetBytes(salt)); | |
using (var rijndaelCipher = new RijndaelManaged()) | |
using (var decryptor = rijndaelCipher.CreateDecryptor(secretKey.GetBytes(32), secretKey.GetBytes(16))) | |
using (var memoryStream = new MemoryStream(encryptedData)) | |
using (var cryptoStream = new CryptoStream(memoryStream, decryptor, CryptoStreamMode.Read)) | |
{ |
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; | |
using System.IO; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Web.Mvc; | |
namespace DemoApp | |
{ | |
public class ExternalJavaScriptFileAttribute : ActionFilterAttribute | |
{ |
NewerOlder