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
import Data.Monoid | |
data Muse = HanayoKoizumi | RinHoshizora | MakiNishikino | |
| UmiSonoda | KotoriMinami | HonokaKosaka | |
| EliAyase | NicoYazawa | NozomiTojo | |
deriving (Eq, Ord, Enum, Show) | |
next :: Muse -> Muse | |
next HanayoKoizumi = RinHoshizora | |
next RinHoshizora = MakiNishikino |
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
#!/usr/bin/env jython | |
# -*- coding: utf-8 -*- | |
class Fuga(object): | |
def __init__(self, color, weight): | |
self.color = color | |
self.weight = weight | |
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 net.elliptium; | |
import java.util.ArrayList; | |
import java.util.Collection; | |
import java.util.List; | |
import com.google.common.base.Function; | |
import com.google.common.base.Predicate; | |
import com.google.common.collect.Collections2; |
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
<%@ page language="java" import="twitter4j.*,java.util.List" contentType="text/html; charset=UTF-8" session="false" %> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html;charset=UTF-8"> | |
</head> | |
<style> | |
.username { | |
font-size: 12pt; | |
} | |
.description{ |