Skip to content

Instantly share code, notes, and snippets.

View ockie1729's full-sized avatar

OKIMOTO Yusuke ockie1729

View GitHub Profile
@ockie1729
ockie1729 / .classpath
Created September 24, 2016 09:37
BombertoonのEclipse用設定ファイル
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src">
<attributes>
<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="コピー - bomber/native/windows"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="コピー - bomber/native/windows"/>
@ockie1729
ockie1729 / make_code_with_many_local_variables.py
Created March 31, 2021 15:50
指定された個数のローカル変数定義を含むJavaコードを生成
#!/usr/bin/env python3
# coding: utf-8
import argparse
# 指定された個数のローカル変数の定義を含むJavaコードを生成
CODE_TEMPLATE = '''
package main;