- CARTA HOLDINGS(旧VOYAGE GROUP)
- 技術広報が新卒研修<Open AIハッカソン>をスパイしてみた - (2023/04/11)
- @t_wadaに学ぶテスト駆動開発【CARTA 23新卒研修】 - (2023/04/19)
- 【新卒研修】監修者@t_wadaと読む!プログラマが知るべき97のこと読書会 - (2024/04/09)
- Classi
- 当たり前にリリースしていく ~ 新卒研修編 - (2021/05/20)
- リモートワークのための質問力向上研修を実施しました - (2021/12/07)
- CyberZ
- 良いコードとは何か - エンジニア新卒研修 スライド公開 - (2021/04/27)
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
/** | |
* refs. https://github.com/jeremydaly/lambda-api/issues/53#issuecomment-450578262 | |
*/ | |
import { api } from "./src/app"; | |
import { | |
APIGatewayProxyEventV2, | |
APIGatewayEventRequestContextV2, | |
APIGatewayProxyEventHeaders, | |
Context, |
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 cdk = require('@aws-cdk/core'); | |
import * as cognito from '@aws-cdk/aws-cognito' | |
import { SignInType, UserPoolAttribute } from '@aws-cdk/aws-cognito'; | |
export class SailingdayStack extends cdk.Stack { | |
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) { | |
super(scope, id, props); | |
const userPool = new cognito.UserPool(this, id + 'Pool', { | |
signInType: SignInType.EMAIL, |
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
AWSTemplateFormatVersion: "2010-09-09" | |
Description: Athena Stack | |
Resources: | |
GlueDatabase: | |
Type: AWS::Glue::Database | |
Properties: | |
CatalogId: !Ref 'AWS::AccountId' | |
DatabaseInput: | |
Description: for athena | |
Name: gcchaan_database |
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
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"parameters": { |
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
export function event(triggerSource = '', userAttributes = null) { | |
return { | |
triggerSource: triggerSource, | |
request: { | |
userAttributes: userAttributes, | |
validationData: null | |
}, | |
response: { | |
autoConfirmUser: false, | |
autoVerifyEmail: false, |
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
#!/bin/bash | |
# https://gist.github.com/gcchaan/ad8fd83a68467503ec3e6392ebbd519a | |
set -ef -o pipefail | |
function message(){ | |
echo 🍣 "$1" | |
} | |
function help(){ |
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
function setHoliday() { | |
var startTime = momentjs.moment().add('months', 2).date(1); | |
var endTime; | |
var end = momentjs.moment(); | |
var daysInMonth = end.daysInMonth(); | |
endTime = end.add('months', 2).date(daysInMonth); | |
var holidayCalendar = CalendarApp.getCalendarById( | |
'ja.japanese#holiday@group.v.calendar.google.com'); | |
var mstHoliday = holidayCalendar.getEvents(new Date(startTime), new Date(endTime)); |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>SEO効果測定</title> | |
<script src="../jquery-2.0.3.min.js"></script> | |
<script> | |
$(document).ready(function(){ | |
function getRound(num,m){ | |
num *= Math.pow(10,m); |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>SVGプレビュワー</title> | |
<script src="jquery-2.0.3.min.js"></script> | |
<script> | |
$(function(){ | |
$('textarea').bind('keypress blur change',function(){ | |
$('path').attr("d",$(this).val()); |
NewerOlder