- 有休
- 初年度10日(経験・スキルに応じて増加支給の場合あり)
- 病休
- 基本有給で対応。
- 育休
- 直近で必要性がないため、まだ制度化していない。ただし、現状の制度内でも休業+育児休業給付で対応可能。
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 ; | |
class ArrayTools { | |
public static function shuffle<T>(arr : Array<T>) : Array<T> { | |
var i : Int = arr.length; | |
while (i > 0) { | |
var j = Std.random(i); | |
var tmp = arr[--i]; | |
arr[i] = arr[j]; | |
arr[j] = tmp; |
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
<# | |
// Ui.tt - Qt ui file compilation tool for T4 Template - | |
// This tool compiles all Qt ui files that exists in the same directory. | |
// ---------------------------------------------------------------------------- | |
// Copyright 2013 terurou (terurou at gmail.com) | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining | |
// a copy of this software and associated documentation files (the | |
// "Software"), to deal in the Software without restriction, including | |
// without limitation the rights to use, copy, modify, merge, publish, |
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 ; | |
class ArrayTools { | |
public static function shuffle<T>(arr : Array<T>) : Array<T> { | |
var i = arr.length; | |
while (i > 0) { | |
var j = Std.random(i); | |
var tmp = arr[--i]; | |
arr[i] = arr[j]; | |
arr[j] = tmp; |
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
class Main { | |
static function main() { | |
var speakers = shuffle([ | |
"aster_ism", | |
"sqm8", | |
"けきょ", | |
"niccolli", | |
"y_taka_23", | |
"mzp", | |
"maeda_", |
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
class Main { | |
static function main() { | |
var speakers = shuffle([ | |
"@terurou", | |
"@mzp", | |
"@kyon_mm", | |
"@bleis", | |
"@otf", | |
"@htid46", | |
"@zakky_dev", |
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
abstract Function(Dynamic) | |
from Action0 to Action0 | |
from Action1 to Action1 | |
from Action2 to Action2 | |
from Action3 to Action3 | |
from Action4 to Action4 | |
from Action5 to Action5 | |
from Action6 to Action6 | |
from Action7 to Action7 | |
from Action8 to Action8 |
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 sys.io.Process; | |
import haxe.io.Eor; | |
class SampleMacro { | |
public static macro function run(): Void { | |
var process = new Process("node compiler.js"); | |
try { | |
process.stdout.readLine(); | |
process.close(); | |
} catch (e: Eof) { |
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
abstract Tuple2<T1, T2>(Array<Dynamic>) { | |
public var value1(get, never): T1; | |
public var value2(get, never): T2; | |
public inline function new(a: T1, b: T2) { | |
this = [a, b]; | |
} | |
inline function get_value1(): T1 { | |
return this[0]; |
OlderNewer