Skip to content

Instantly share code, notes, and snippets.

View 0x1306e6d's full-sized avatar
👨‍💻
coding

Gihwan Kim 0x1306e6d

👨‍💻
coding
  • South Korea
View GitHub Profile
#if($field.modifierStatic)
static ##
#end
$field.type ##
#set($name = $StringUtil.sanitizeJavaIdentifier($helper.getPropertyName($field, $project)))
#if ($field.boolean && $field.primitive)
#if ($StringUtil.startsWithIgnoreCase($name, 'is'))
#set($name = $StringUtil.decapitalize($name))
#else
#set($name= $StringUtil.capitalizeWithJavaBeanConvention($name))
#set($paramName = $helper.getParamName($field, $project))
public ##
#if($field.modifierStatic)
static void ##
#else
$classname ##
#end
$StringUtil.sanitizeJavaIdentifier($helper.getPropertyName($field, $project))($field.type $paramName) {
#if ($field.name == $paramName)
#if (!$field.modifierStatic)
@0x1306e6d
0x1306e6d / rto.py
Created June 11, 2018 08:39
Radio Transmission Prediction
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import datetime
import matplotlib.pyplot as plt
import numpy as np
import tensorflow as tf
Hello, World!