I hereby claim:
- I am rajadain on github.
- I am rajadain (https://keybase.io/rajadain) on keybase.
- I have a public key whose fingerprint is 325A F5CB CCBC 481F E244 1E3A B4E7 1755 48AD 5DBE
To claim this, I am signing this object:
def graycode(n): | |
a = [0]*n | |
for i in range(0,pow(2,n)): | |
b = 'X' | |
for j in range(0,n): | |
if ((i % pow(2,j+1)) - pow(2,j) == 0): | |
a[j] = pow(1 - a[j], 2) | |
b = j | |
break | |
print i, "".join((map(str,a)))[::-1], b |
<?php | |
for ($i = 97; $i < 122; $i++) { | |
for ($j = 0; $j < 100; $j++) { | |
$usn = chr($i) . strval($j); | |
$url="http://api.twitter.com/1/users/show.json?screen_name=".$usn; | |
$json = file_get_contents($url,0,null,null); | |
if ($http_response_header[0] == "HTTP/1.1 404 Not Found ") | |
echo "<p style='color:red'>$usn is available.</p>"; | |
else | |
echo "<p style='color:grey'>$usn is not available.</p> "; |
I hereby claim:
To claim this, I am signing this object:
<key name="Colors" modified="2015-12-10 22:46:43" build="151210"> | |
<value name="Count" type="dword" data="00000001"/> | |
<key name="Palette1" modified="2015-12-10 22:46:43" build="151210"> | |
<value name="Name" type="string" data="Material Theme"/> | |
<value name="ColorTable00" type="dword" data="004d4335"/> | |
<value name="ColorTable01" type="dword" data="006b60eb"/> | |
<value name="ColorTable02" type="dword" data="008de8c3"/> | |
<value name="ColorTable03" type="dword" data="0095ebf7"/> | |
<value name="ColorTable04" type="dword" data="00c4cb80"/> | |
<value name="ColorTable05" type="dword" data="009024ff"/> |
// ==UserScript== | |
// @name Unstable Warner | |
// @namespace http://tampermonkey.net/ | |
// @version 0.5 | |
// @description Warn before merging unstable pull requests on GitHub | |
// @author Terence Tuhinanshu @rajadain | |
// @match https://github.com/**/pull/* | |
// @grant none | |
// ==/UserScript== |
@-moz-document domain("github.com"), domain("gist.github.com"), domain("render.githubusercontent.com") { | |
/* Hasklig https://github.com/i-tu/Hasklig */ | |
/* Fira Code https://github.com/tonsky/FiraCode */ | |
/* Ligaturizer https://github.com/ToxicFrog/Ligaturizer */ | |
.branch-name, | |
.blob-num, | |
.blob-code-inner, | |
.CodeMirror pre, | |
.commit .sha, | |
.commit-desc pre, |
Many, perhaps most, programming languages have type systems that feel like haggling with a petty merchant. Haskell provides a type system that more closely resembles a quiet, pleasant conversation with a colleague than an argument in the bazaar.
$ ./convert.sh ppt_colorbar.png
+ gm convert ppt_colorbar.png txt:-
[1, 2, 3] ++ undefined
:
-- 11-exercise-phone.hs | |
module ExercisePhone where | |
import Data.Char | |
import Data.List | |
import Data.Maybe | |
type Key = Char | |
type Presses = Int |