- 有休…
- 病休…
- 育休…
- 年収(月給、賞与など)…
- 残業代…
- 早朝/深夜手当…
- 休出手当…
- 住宅補助…
This file contains hidden or 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
In [6]: case class State[S](run: S => S) | |
Out[6]: defined class State | |
In [7]: case class Gen[A](sample: State[A]) | |
Out[7]: defined class Gen | |
In [8]: Gen(State[Int](a => a)) | |
Something unexpected went wrong =(scala.reflect.internal.Types$TypeError: value <none> is not a member of Object{implicit lazy val derive$macro$71(): pprint.PPrint[$sess.cmd7.wrapper.cmd6.wrapper.Gen[Int]]; implicit lazy val derive$macro$74(): pprint.PPrint[cmd6Wrapper.this.cmd5.wrapper.State[Int]]; def derive$macro$84(): pprint.PPrint[$sess.cmd7.wrapper.cmd6.wrapper.Gen[Int]]} | |
scala.tools.nsc.typechecker.Contexts$ThrowingReporter.handleError(Contexts.scala:1402) | |
scala.tools.nsc.typechecker.Contexts$ContextReporter.issue(Contexts.scala:1254) |
This file contains hidden or 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
@Controller | |
public class SearchController { | |
@Autowired | |
private SearchService searchService; | |
@RequestMapping("/search") | |
public String search( | |
@ModelAttribute("searchForm") | |
SearchForm searchForm, | |
Model model) { |
This file contains hidden or 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
// ガントチャートを2ヶ月前開始で表示 | |
// Shows gannt view starting 2 months ago | |
$(document).ready(function(){ | |
// configurable | |
var monthsAgo = 2; | |
var monthsRange = 6; | |
// ----- | |
var now = new Date(); | |
var thisMonth = now.getMonth() + 1; | |
var thisYear = now.getFullYear(); |
This file contains hidden or 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
<templateSet group="Stream"> | |
<template name=".toList" value=".collect(java.util.stream.Collectors.toList())" description="Stream#collect(toList())" toReformat="true" toShortenFQNames="true" useStaticImport="true"> | |
<context> | |
<option name="JAVA_CODE" value="true" /> | |
<option name="JAVA_STATEMENT" value="false" /> | |
<option name="JAVA_EXPRESSION" value="false" /> | |
<option name="JAVA_DECLARATION" value="false" /> | |
<option name="JAVA_COMMENT" value="false" /> | |
<option name="JAVA_STRING" value="false" /> | |
<option name="COMPLETION" value="false" /> |
This file contains hidden or 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
dico_leque | |
gab_km | |
giantneco | |
golden_lucky | |
halcat0x15a | |
mzp | |
NaOHaq | |
notogawa | |
nsyee | |
omanuke |
This file contains hidden or 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
<html> | |
<head> | |
<title>函数プログラミングのつどい2011/2012、函数型なんたらのつどい2014の人数遷移</title> | |
<script type="text/javascript" src="https://www.google.com/jsapi?autoload={'modules':[{'name':'visualization','version':'1.1','packages':['sankey']}]}"></script> | |
<script type="text/javascript"> | |
google.setOnLoadCallback(drawChart); | |
function drawChart() { | |
var data = new google.visualization.DataTable(); | |
data.addColumn('string', 'From'); | |
data.addColumn('string', 'To'); |
This file contains hidden or 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 java.util.OptionalInt; | |
import java.util.stream.IntStream; | |
public class FilterDoesNotConsumeWholeStream { | |
public static void main(String... args) { | |
final OptionalInt first = IntStream.range(1, 10).map(i -> { | |
if (i > 5) { | |
throw new IllegalStateException(); | |
} |
This file contains hidden or 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
final int m = 1; | |
List<Integer> answer = range(9, 0).except(m).permutations(7).first(new Predicate<List<Integer>>() { | |
@Override | |
public boolean evaluate(final List<Integer> perm) { | |
int s = perm.get(0); | |
int e = perm.get(1); | |
int n = perm.get(2); | |
int d = perm.get(3); | |
int o = perm.get(4); | |
int r = perm.get(5); |
This file contains hidden or 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.exoego; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
import net.exoego.queen.Sequence; | |
import net.exoego.util.function.Func1; | |
import net.exoego.util.function.Func2; | |
import net.exoego.util.function.Funcs; |