- 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 hidden or 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
// ==UserScript== | |
// @name http://gazoreply.jp/ | |
// @description replace gazoreply.jp copy image url | |
// @include http://gazoreply.jp/* | |
// @exclude http://gazoreply.jp/situation/* | |
// ==/UserScript== | |
window.addEventListener('load', function(){ | |
var imgURL = document.getElementById("main-photo-img").getAttribute('src'); | |
var clipboardButtonElement = document.getElementById("copy-clipboard-btn"); |
This file contains hidden or 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
javascript:(function(){document.styleSheets[1].addRule('#cookieShower','background-image:url("https://dl.dropboxusercontent.com/u/34494006/cookie_clicker/cookieShower3.png") !important');document.styleSheets[1].addRule('#bigCookie','background-image:url("https://dl.dropboxusercontent.com/u/34494006/cookie_clicker/nakachan.png")');document.styleSheets[1].addRule('.cookieParticle','background-image:url("https://dl.dropboxusercontent.com/u/34494006/cookie_clicker/small_steels.png")');})(); |
This file contains hidden or 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
// ==UserScript== | |
// @name IgnoreDiffUnityFilesOnGitHub | |
// @namespace http://ymrl.net/ | |
// @include *://github.com/*/*/pull/*/files | |
// @include *://github.com/*/*/commit/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js | |
// ==/UserScript== | |
(function () { | |
var ignore = ["\\.unity", "\\.prefab", "\\.meta", "\\.dae"]; |
This file contains hidden or 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
#!/usr/bin/env ruby | |
# coding: utf-8 | |
require 'google_drive' | |
require 'highline/import' | |
require 'active_support/core_ext' | |
require 'pry' | |
def ask_authentication |
高レベルの話をするなら、あなたは Ember アプリケーションをネストした route の連続として設計し、それらはネストしたアプリケーションの状態(state)と一致します。このガイドではまず高レベルのコンセプトについて解説し、それから実例を見てみることにします。
ユーザはあなたのアプリケーションを、「何を見るか」の選択をすることで閲覧します。例えばあなたがブロクを持っているとして、あなたのユーザは最初に投稿もしくは "About" ページを選ぶでしょう。一般的に、あなたは最初の選択についてのデフォルトをもちたいはずです(このケースではおそらく投稿でしょう)。
ひとたびユーザが最初の選択をしたなら、通常彼らはそれで終わりません。コンテキストの中にある投稿群では、ユーザは最終的に個々の投稿やそれらのコメントを見るでしょう。個々の投稿の中では、彼らはコメントあるいはトラックバックのリストの閲覧を選択できます。
This file contains hidden or 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
require 'webmock' | |
require 'sinatra/base' | |
WebMock::API.stub_request(:any, /www\.example\.com/).to_rack(Class.new(Sinatra::Base) { | |
post "/foo" do | |
"FOO" | |
end | |
}) | |
require 'httpclient' |
This file contains hidden or 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
require 'rspec' | |
class Dummy | |
attr_reader :arg | |
def initialize(arg) | |
@arg = arg | |
end | |
end | |
describe 'raise' do |