- 大崎
- なし
- 品川
- 田町
- なし
浜松町
| import functools | |
| def kamekoopa(f): | |
| @functools.wraps(f) | |
| def call(*args, **argd): | |
| return f(*args, **argd) | |
| return call | |
| @kamekoopa |
| (function () { | |
| 'use strict'; | |
| var arr = Array.prototype; | |
| function getCommentLinks() { | |
| var result = []; | |
| var elems = document.getElementsByClassName('issue-link'); | |
| return Array.prototype.filter.call(elems, function (e) { | |
| return e.getAttribute('href').includes('#issuecomment-'); |
| import java.io.IOException; | |
| import java.rmi.activation.ActivationException; | |
| class Hoge { | |
| static interface Function<T, E extends Throwable> { | |
| public void apply(T hoge) throws E; | |
| } | |
| Delivered-To: [email protected] | |
| Received: by 10.64.68.51 with SMTP id s19csp1509269iet; | |
| Tue, 14 Jul 2015 20:43:14 -0700 (PDT) | |
| X-Received: by 10.68.229.40 with SMTP id sn8mr3621822pbc.59.1436931793830; | |
| Tue, 14 Jul 2015 20:43:13 -0700 (PDT) | |
| Return-Path: <[email protected]> | |
| Received: from mail-pd0-f175.google.com (mail-pd0-f175.google.com. [209.85.192.175]) | |
| by mx.google.com with ESMTPS id iz2si5135497pbb.100.2015.07.14.20.43.13 | |
| for <[email protected]> |
| #-*- coding:utf-8 -*- | |
| def not_builtin_name(n): | |
| return not n.startswith('__') and not n.endswith('__') | |
| def itermethods(cls): |
| interface Collection<T> { | |
| public Iterator<T> iterator(); | |
| } | |
| interface Ordered<T> extends Collection<T> { | |
| } | |
| interface List<T> extends Ordered<T> { | |
| } |
| import XMonad | |
| import XMonad.Hooks.DynamicLog | |
| import XMonad.Hooks.ManageDocks | |
| import XMonad.Util.Run(spawnPipe) | |
| import XMonad.Util.EZConfig(additionalKeys, additionalKeysP) | |
| import System.IO | |
| -- import System | |
| import qualified XMonad.StackSet as W | |
| import qualified System.Cmd as C | |
| import XMonad.Hooks.SetWMName |
| import java.io.File; | |
| import javax.xml.parsers.SAXParserFactory; | |
| import javax.xml.parsers.SAXParser; | |
| import org.xml.sax.Attributes; | |
| import org.xml.sax.helpers.DefaultHandler; | |
| public class Hokke | |
| { |
| #!/usr/bin/env python3 | |
| import sys | |
| import os | |
| def main(args, f): | |
| if args: | |
| print(' '.join([f(x) for x in args])) | |
| return |
浜松町