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
# coding: utf-8 | |
"""Word value calculator. | |
Calculates word value as per http://9gag.com/gag/2506371 | |
""" | |
from string import lowercase | |
LETTER_VALUES = {letter: index for index, letter in enumerate(lowercase, 1)} | |
def word_value(word): |
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
object With { | |
def apply[T <: { def enter(): T; def exit(): Unit}](obj:T)(block: (T) => Unit) { | |
obj.enter() | |
block(obj) | |
obj.exit() | |
} | |
} | |
class SomeClass { | |
def enter() = { println("enter"); this } |
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
import React from 'react'; | |
const STYLE = { | |
display: 'inline-block', | |
overflow: 'hidden', | |
whiteSpace: 'nowrap', | |
}; | |
const MIN_TEXT_LENGHT = 6; | |
const MIN_LABEL_WIDTH = 40; |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> | |
<dict> | |
<key>background</key> |
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
//* 30.12.2005 *// | |
unbindall | |
//Settings | |
bind mwheelup "" | |
bind mwheeldown "" | |
clear | |
//* personal | |
set zoom_fov 65 |
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
id | name | shortName | country | |
---|---|---|---|---|
albi | Albi | Albi | FR | |
americas | Circuit of the Americas | Texas | US | |
anrstorp | Anderstorp | Anderstorp | SE | |
catalunya | Circuit de Barcelona-Catalunya | Catalunya | ES | |
belfast | Belfast | Belfast | GB | |
berne | Berne | Berne | CH | |
brno | Automotodrom Brno | Brno | CZ | |
clermont-ferrand | Clermont-Ferrand | Clermont-Ferrand | FR | |
daytona | Daytona | Daytona | US |
We can't make this file beautiful and searchable because it's too large.
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
name race win | |
Aalt Toersen 1967-3 0 | |
Aalt Toersen 1967-4 0 | |
Aalt Toersen 1968-4 0 | |
Aalt Toersen 1969-1 1 | |
Aalt Toersen 1969-2 1 | |
Aalt Toersen 1969-3 1 | |
Aalt Toersen 1969-5 0 | |
Aalt Toersen 1969-6 0 | |
Aalt Toersen 1969-7 0 |
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
year | sequence | rider | country | position | points | bike | |
---|---|---|---|---|---|---|---|
1993 | 1 | Schwantz, Kevin | US | 1 | 25 | Suzuki | |
1993 | 1 | Rainey, Wayne | US | 2 | 20 | Yamaha | |
1993 | 1 | Chandler, Doug | US | 3 | 16 | Cagiva | |
1993 | 1 | Beattie, Daryl | AU | 4 | 13 | Honda | |
1993 | 1 | Barros, Alex | BR | 5 | 11 | Suzuki | |
1993 | 1 | Criville, Alex | ES | 6 | 10 | Honda | |
1993 | 1 | Ito, Shinichi | JP | 7 | 9 | Honda | |
1993 | 1 | Cadalora, Luca | IT | 8 | 8 | Yamaha | |
1993 | 1 | Mladin, Matt | AU | 9 | 7 | Cagiva |
OlderNewer