Skip to content

Instantly share code, notes, and snippets.

Standard BPE eBPE
'th' '\r\n'
'the ' ', '
'an' 'd '
'in' 'Th'
'ou' 've'
'er' 'y '
'ed ' '; '
'ar' 'f '
'hi' ',\r\n'
Promotion # Token created
338 "Mr. Fogg"
357 "Phileas Fogg"
360 "Passepartout"
635 "ir Franc" (Sir Francis)
781 "It was"
900 '" asked' (contains a quote character)
package main
import (
"time"
"net/http"
"net/smtp"
"fmt"
)
func sendMail(body string) error{
@Narsil
Narsil / gist:4023812
Created November 6, 2012 10:01
Project euler
// Tested on http://writecodeonline.com/php/
$triangle = array(
array(
3
),array(
7, 4
),array(
2, 4, 6
),array(
8, 5, 9, 3