- DMM.com(旧DMM.comラボ含む)
- DMM.comラボ16新卒エンジニア研修 - (2016/08/24)
- DMM.comの新卒技術研修がスタートしました! - (2019/04/25)
- GMOインターネット
- 「Web 基礎」という講義をしました - (2019/05/17)
- GMOペパボ
- 2013 年の新卒研修メニュー
- ペパボ新卒エンジニアの研修を開始している - (2013/05)
- 第二新卒研修をしていた - (2014/08)
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
# ==================== Emojis & Prefix ==================== | |
# ✨ feat: 新しい機能 | |
# 🐛 fix: バグの修正 | |
# 📚 docs: ドキュメントのみの変更 | |
# 🖋 style: 空白、フォーマット、セミコロン追加など | |
# ♻️ refactor: 仕様に影響がないコード改善(リファクタ) | |
# 🐎 perf: パフォーマンス向上関連 | |
# 🚨 test: テスト関連 |
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
const _fullLengthCode = 65248; | |
extension StringExtension on String { | |
String toHalfWidthNumber() { | |
final regex = RegExp(r'^[0-9]+$'); | |
final string = runes.map<String>((rune) { | |
final char = String.fromCharCode(rune); | |
return regex.hasMatch(char) | |
? String.fromCharCode(rune - _fullLengthCode) | |
: char; |
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
*.chopper.dart linguist-generated=true | |
*.freezed.dart linguist-generated=true | |
*.g.dart linguist-generated=true | |
*.gen.dart linguist-generated=true | |
*.gr.dart linguist-generated=true |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>カレーのレシピ</title> | |
</head> | |
<body> | |
<article> | |
<h1>カレーのレシピ</h1> | |
<p> |
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
class JapanesePhoneNumberFormatter extends TextInputFormatter { | |
@override | |
TextEditingValue formatEditUpdate( | |
TextEditingValue oldValue, TextEditingValue newValue) { | |
final oldValueLength = oldValue.text.length; | |
final newValueLength = newValue.text.length; | |
final isStartZero = newValue.text.startsWith('0'); | |
if (newValueLength > 0 && newValueLength > oldValueLength) { | |
final maxLengthIncludeHyphen = isStartZero ? 13 : 12; |
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
var mediaJSON = { "categories" : [ { "name" : "Movies", | |
"videos" : [ | |
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
"subtitle" : "By Blender Foundation", | |
"thumb" : "images/BigBuckBunny.jpg", | |
"title" : "Big Buck Bunny" | |
}, | |
{ "description" : "The first Blender Open Movie from 2006", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |