This file contains 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
{"decimalsDict": {"1": null, "2": "twenty", "3": "thirty", "4": "fourty", "5": "fifty", "6": "sixty", "7": "seventy", "8": "eighty", "9": "ninety"}, "teensDict": {"16": "sixteen", "17": "seventeen", "18": "eighteen", "19": "nineteen", "10": "ten", "11": "eleven", "12": "twelve", "13": "thirteen", "14": "fourteen", "15": "fifteen"}, "unitsDict": {"1": "one", "2": "two", "3": "three", "4": "four", "5": "five", "6": "six", "7": "seven", "8": "eight", "9": "nine"}} |
This file contains 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
-module (pike). | |
-export ([match/2, test/0]). | |
% Erlang version of R. Pike's beautiful regex matcher (modified). | |
% Modification lies in changing behaviour of `matchStar`, so even | |
% regexs like /.*b/ can be handled. | |
% For more information please see | |
% http://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html | |
% P.S.: special thanks to @dewitt for his tests. |
This file contains 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
-module (ch13). | |
-compile(export_all). | |
timer() -> | |
% io:format("Hi from ~p~n", [self()]), | |
receive | |
_ | |
-> io:format("Bye!~n"), | |
exit('Bye') | |
after |
This file contains 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
#recursive lexicographic permutations | |
def perm(str) | |
res = [] | |
if str.length <= 1 | |
return res << str | |
else | |
t = [] | |
str.each_char do |chr| | |
t += perm(str.delete(chr)) |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<title>Calendar</title> | |
<link rel="stylesheet" href="styles.css"> | |
<meta charset="UTF-8"> | |
</head> | |
<body> | |
<section> | |
<div>пн</div> |
This file contains 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
javascript: | |
(function () { | |
var v = "1.8.0"; | |
if (window.jQuery === undefined/* || window.jQuery.fn.jquery < v*/) { | |
var done = false; | |
script = document.createElement("script"); | |
script.src="http://code.jquery.com/jquery-1.9.1.min.js"; | |
script.onload = script.onreadystatechange = function(){ | |
if (!done && (!this.readyState || this.readyState == "loaded" |
This file contains 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
#include <iostream> | |
#include <vector> | |
#include "mpi.h" | |
int id; | |
const int n = 3, MSG = 99; | |
int a[n][n] = {{1, 2, 3}, | |
{4, 5, 6}, | |
{7, 8, 9}}, | |
b[n][n] = {{1, 2, 3}, |
This file contains 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.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace gurren_laggan | |
{ | |
class Program | |
{ | |
public delegate void ChangedEventHandler(object sender, EventArgs e); |
NewerOlder