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
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" | |
"regexp" | |
"strings" | |
"sync" | |
"time" |
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
package main | |
import ( | |
"fmt" | |
"sort" | |
"time" | |
"math/rand" | |
) | |
const ( |
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
INSERT INTO Merge SELECT | |
a.SemanticID, | |
MIN(b.SemanticID) | |
FROM SubtitleSemantic a | |
JOIN SubtitleSemantic b ON | |
a.SemanticID < b.SemanticID | |
AND a.SubtitleID = b.SubtitleID | |
AND a.Line = b.Line | |
AND b.CharID = :second | |
WHERE a.CharID = :first |
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
package com.bypass; | |
import com.bodymedia.common.applets.CommandException; | |
import com.bodymedia.common.applets.device.util.LibraryException; | |
import com.bodymedia.device.serial.SerialPort3; | |
import com.bodymedia.device.usb.Usb; | |
import com.bodymedia.common.applets.logger.Logger; | |
import java.io.FileWriter; | |
import java.io.IOException; |
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
package main | |
import ( | |
"os" | |
"fmt" | |
"time" | |
"net/http" | |
"errhandler" | |
"encoding/json" | |
"code.google.com/p/goauth2/oauth" |
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
\documentclass[twocolumn,10pt]{article} | |
\usepackage[top=0.5cm, bottom=0.5cm, left=0.5cm, right=0.5cm]{geometry} | |
\usepackage{amssymb, amsmath, amstext} | |
\usepackage{datetime} | |
\usepackage{listings} | |
\usepackage[pdftex]{graphicx} | |
\usepackage{subfigure} | |
\usepackage{siunitx} | |
\usepackage{enumitem} | |
\setlist{nosep} |
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
// This is the structure of the binary nbt file | |
TAG_Compound('Level') { | |
TAG_Compound('nested compound test') { | |
TAG_Compound('egg') { | |
TAG_String('name'): 'Eggbert' | |
TAG_Float('value'): 0.5 | |
} | |
TAG_Compound('ham') { | |
TAG_String('name'): 'Hampus' | |
TAG_Float('value'): 0.75 |
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
package main | |
import ( | |
"os" | |
"fmt" | |
"math" | |
"strconv" | |
"strings" | |
"errhandler" | |
"text/template" |
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
package ImageSet | |
import ( | |
"image" | |
"image/color" | |
"testing" | |
) | |
const ( | |
DIM = 128 |
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
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
const ( | |
DateFormat = "2006-01-02: Jan 02" | |
) |