この資料は以下のイベントの登壇用の殴り書きです
https://hack-at-delta.connpass.com/event/350588/
今までの資料を引用して話すので、この資料はアウトラインです。
この資料は以下のイベントの登壇用の殴り書きです
https://hack-at-delta.connpass.com/event/350588/
今までの資料を引用して話すので、この資料はアウトラインです。
DidYouMean::SPELL_CHECKERS.merge deprecate warnings anymore.database.yml with aliases and secrets.yml with aliases.| ;; Assign typescript-mode to .tsx files | |
| (add-to-list 'auto-mode-alist '("\\.tsx\\'" . typescript-mode)) | |
| (require 'mmm-mode) | |
| (setq mmm-global-mode t) | |
| (setq mmm-submode-decoration-level 0) ;; Turn off background highlight | |
| ;; Add css mode for CSS in JS blocks | |
| (mmm-add-classes | |
| '((mmm-styled-mode |
これは私が支援先に提供した、1 on 1 に関するノウハウや、思いを述べたドキュメントを元にしています。企業の枠を超えて共有したいことが多いので、ここに貼ります。
| from time import time | |
| import sys | |
| import boto3 | |
| client = boto3.client('cloudfront') | |
| # Uncomment this to pass a URL to the script | |
| #def get_id(url): | |
| # print("get_id args: {0}".format(url)) | |
| # # url: asdf.cloudfront.net | |
| # # return: E2134123ASDF |
import "./formik-demo.css";
import React from "react";
import { render } from "react-dom";
import { Formik, Field } from "formik";
import Yup from "yup";
import classNames from "classnames";
// Input feedback
| const path = require('path'); | |
| const https = require('https'); | |
| const zlib = require('zlib'); | |
| const downloadContent = (url, callback) => { | |
| https.get(url, (res) => { | |
| let response; | |
| let body = ''; | |
| if (res.headers['content-encoding'] === 'gzip') { |
| module xxx | |
| class Application < Rails::Application | |
| #(中略) | |
| config.middleware.swap ActiveRecord::ConnectionAdapters::ConnectionManagement, | |
| 'ActiveRecord::ConnectionAdapters::ReconnectOnErrorManagement' | |
| end | |
| end |
| #!/usr/bin/env ruby | |
| # this script will delete ECR images that are older than N days | |
| require 'date' | |
| require 'json' | |
| # customize this script | |
| repo = 'snapdocs' | |
| delete_if_older_than = 60 # days |