Skip to content

Instantly share code, notes, and snippets.

View shimadama's full-sized avatar
:octocat:

shimadama shimadama

:octocat:
View GitHub Profile
@goldeneggg
goldeneggg / Dockerfile
Last active January 30, 2021 13:17
Rails 6 API Development and GitHub Actions CI with Docker (Dockerfile)
ARG ARG_RUBY_VERSION
FROM ruby:${ARG_RUBY_VERSION}-alpine3.11
# hadolint ignore=DL3008,DL3018
RUN apk update && \
apk add --update --no-cache \
build-base \
bash \
curl \
@kenmori
kenmori / TypeScriptPractice.md
Last active April 22, 2025 15:49
TypeScript 練習問題集
問Y-1
クラス(モジュール)にはancestorsという、そのクラスの親を一覧するメソッドがあります。以下のインスタンスについて、その所属するクラスのancestorsを表示してください。
・String 例: "aaa"
・Array 例: [1, 2, 3]
・自作のクラス
また、これらに共通するクラス/モジュールを表示してください
@masarakki
masarakki / ex-dwango.md
Last active November 26, 2024 23:45
株式会社ドワンゴを退職しました

株式会社ドワンゴを退職しました

2011年3月15日に就職してから今日で8年と3ヶ月半・・・月にして99ヶ月・・・日数にして実に3033日 と・・・計算している間にも23秒が過ぎてしまったわけですが、株式会社ドワンゴを退職しました。 7月からはクックパッドで働きます。

ドワンゴでやってきたこと

@yano3nora
yano3nora / django.md
Last active November 29, 2021 09:50
[django: Django note] Django - The web framework for perfectionists with deadlines. #django #python

OVERVIEW

djangoproject.com
django/django - github.com
Django documentation - docs.djangoproject.com

Django at a glance - docs.djangoproject.com - 概要、ここ見とけばだいたいわかる
Contents - docs.djangoproject.com
API Reference - docs.djangoproject.com

Python のデファクトスタンダードな WEB アプリフレームワーク。Laravel や Rails などと比較されるリッチめなフレームワークで Youtube, Dropbox, Instagram などが代表例。MVC ではなく MVT - Model / Template / View というデザインになっていて View がプレゼンテーション層 ( どんな風に提供するか? ) を決めるコントローラ的役割 を担い、Template がいわゆるビューテンプレートという考え方。

@voluntas
voluntas / loadtest.rst
Last active April 4, 2025 05:26
負荷試験コトハジメ
@kosamari
kosamari / how_i_got_into_google.md
Last active November 1, 2023 02:16
Google に入るまでの話

Googleに入るまでの話 (Developer Relations)

コンテキスト: https://togetter.com/li/1331865

前提条件

部署

グーグルジャパンではなくてUSの本社での採用の話。私が受けたのはSoftware EngineerではなくてDeveloper Advocate。Engineering組織の下についているのでコーディング面接有り。ただし評価項目がSWEとは異なる。

英語

@goldeneggg
goldeneggg / bench_uniq_reject.rb
Last active June 28, 2020 06:16
[ruby] 一覧から重複削除してnilを除去、の実装方法別パフォーマンス比較
require 'benchmark/ips'
require 'benchmark/memory'
require 'set'
CLASSES = [
Class.new {
@arr = ['1', '2', '33', '444', nil, '5555', nil, '444', '66666', 'abcde', '777777', nil, 'XXXX', '33', 'zzzzzzzzzz']
def self.label
@udzura
udzura / yawaraka-docker.md
Last active June 16, 2022 23:34
やわらかDocker