I hereby claim:
- I am yum45f on github.
- I am yum45f (https://keybase.io/yum45f) on keybase.
- I have a public key ASB5jtduuMiBPSB4fgmsibwXbEJOvWNZBg3O4T8i1FgSxAo
To claim this, I am signing this object:
did:3:kjzl6cwe1jw145zn2vptdyvyz817hk6qgl0eye680d7i3tv8wa10a9tv25t463b |
I hereby claim:
To claim this, I am signing this object:
# ==================== Emojis ==================== | |
# 🎉 :tada: 初めてのコミット(Initial Commit) | |
# 🔖 :bookmark: バージョンタグ(Version Tag) | |
# ✨ :sparkles: 新機能(New Feature) | |
# 🐛 :bug: バグ修正(Bagfix) | |
# ♻️ :recycle: リファクタリング(Refactoring) | |
# 📚 :books: ドキュメント(Documentation) | |
# 🎨 :art: デザインUI/UX(Accessibility) | |
# 🐎 :horse: パフォーマンス(Performance) | |
# 🔧 :wrench: ツール(Tooling) |
$ pip install borscht |
class ContactForm | |
include ActiveModel::Model | |
include ActiveModel::Attributes | |
#include ActiveModel::Callbacks | |
attr_accessor :name, :email, :subject, :body, :agreement_privacy_policy | |
define_model_callbacks :save | |
validates :name, presence: true | |
validates :email, presence: true |
using UnityEngine; | |
using System.Collections; | |
public class GamePlayerProperty : MonoBehaviour { | |
//ここで変数系はまとめて定義&初期化の時に自動でセットされる値を設定。 | |
public float PlayerSpeed { get; set; } = 10; | |
public string PlayerName { get; set; } = "Hoge Hoge Man"; | |
public float Score { get; set; } = 0; | |
// なお、上の式は以下のと同意。(省略形で、バージョン古いと未対応... 確か C# 6.0 から大丈夫。) | |
// 省略形で書かなくてもよいけどもう見たらわかるし長々と書くよりは上の方が読みやすいような気が。 |
# Initialize assignment of $ function | |
jQuery.noConflict() | |
# Assign the revised number | |
$j = jQuery | |
$j -> | |
$j(".datetimepicker").datetimepicker() |
$ -> | |
$(".datetimepicker").datetimepicker() |
require 'rubygems' | |
require 'bundler' | |
require 'bundler/setup' | |
Bundler.require | |
require 'sinatra' | |
require 'omniauth' | |
require 'omniauth-google-oauth2' | |
#動きは推測だけど。。。 |
{ | |
"provider" => "google_oauth2", | |
"uid" => "100000000000000000000", | |
"info" => { | |
"name" => "John Smith", | |
"email" => "[email protected]", | |
"first_name" => "John", | |
"last_name" => "Smith", | |
"image" => "https://lh4.googleusercontent.com/photo.jpg", | |
"urls" => { |