Skip to content

Instantly share code, notes, and snippets.

View 44uk's full-sized avatar
♨️
ズイ₍₍(ง˘ω˘)ว⁾⁾ズイ

Yoshiyuki IEYAMA 44uk

♨️
ズイ₍₍(ง˘ω˘)ว⁾⁾ズイ
View GitHub Profile
@yagitch
yagitch / techbookfest7-manual
Last active September 29, 2019 03:09
技術書典6売り子マニュアル
これはyagitch.com独自のマニュアルを汎用的な部分のみにまとめ直したものです
更新履歴
2019/4/11 初版作成
2019/9/21 技術書典7のために修正
持ち物
* 連絡用携帯電話(サークル入場者はQRコードを表示できるようにすること)
* 昼食
* 飲み物(蓋付きのもの)
@dgarcia360
dgarcia360 / config-bison.rst
Last active July 27, 2019 08:43
catapult-server@0.2.0.2 configurable properties cheatsheet
##########################
config-database.properties
##########################
.. csv-table::
:header: "Property" ,"Type" ,"Description" ,"Default"
:delim: ;
**database**; ; ;
databaseUri; string; Database uri.; mongodb://127.0.0.1:27017
@okohs
okohs / whitelist.md
Last active September 7, 2019 22:57
20180122_定時前に帰宅できた企業

はじめに

書き方

該当する各社の対応欄に企業名を書いてください。備考があれば適宜カッコ書きしてください。

目的

  • 定時前に帰宅させてくれるホワイトな会社のりすとを気軽に作りたい
  • 定時前に帰宅させてくれるホワイトな会社がホワイトアピールできる場があれば良いな

@dai0304
dai0304 / gist:6db4cfb88a9494d93b69a57d08c14142
Last active August 23, 2020 01:34
首狩り族からの手紙
日付: 2017年10月25日 17:08
件名: Steve Maddenでございます。
ミヤモト様
お世話になっております。
IT業界に特化したヘッドハンター、Steve Maddenと申します。
度々のご連絡、大変失礼いたします。

問題1. 選択肢の中からRubyの予約語ではないものを2つ選択してください。

  • A.super
  • B.begin
  • C.try
  • D.goto

問題2. 以下のコードを実行した出力として正しいものを1つ選択してください。

def foo (a, *b)
 p a
@taichi
taichi / code_review_basics.md
Last active March 5, 2024 08:29
チームでコードを書き始めた後、「どうやらレビューってやつをした方が良いらしい」くらいの若手に向けた資料です。

コードレビューの基本


一番大事な事

ソースコードはプロジェクトの共同所有物である

  • 誰かだけが触れるコードを無くす
@mizchi
mizchi / 「フロントエンドデベロッパー面接時の質問事項」への解答.md
Last active February 15, 2024 21:29
「フロントエンドデベロッパー面接時の質問事項」への解答
@altherlex
altherlex / description_component.rb
Last active February 13, 2017 20:23
Simple_form in show
#config/initializers/simple_form/description_component.rb
module SimpleForm
module Components
# Needs to be enabled in order to do automatic lookups
module Description
# Name of the component method
def desc(wrapper_options = nil)
object.send(attribute_name) if @builder.instance_variable_get('@lookup_action') == :show
end
end
@yalab
yalab / bootstrap-bower-template.rb
Last active December 22, 2015 12:29
Rails template for use bower-rails and bootstrap3.
options = @options.dup
options['skip_bundle'] = true
@options = options
gsub_file 'Gemfile', 'jquery-rails', 'bower-rails'
file 'Bowerfile', <<-CODE
asset 'jquery'
asset 'jquery-ujs'
asset 'bootstrap', '>= 3.0.0'
CODE