This file contains 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
Enumerating objects: 16, done. | |
Counting objects: 100% (16/16), done. | |
Delta compression using up to 10 threads | |
Compressing objects: 100% (12/12), done. | |
Writing objects: 100% (13/13), 1.30 KiB | 1.30 MiB/s, done. | |
Total 13 (delta 8), reused 0 (delta 0), pack-reused 0 | |
remote: Compressing source files... done. | |
remote: Building source: | |
remote: | |
remote: -----> Building on the Heroku-20 stack |
This file contains 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
$ -> | |
TalkTree.setupComponents = -> | |
Vue.component('article-row', {props: ['article', 'selected_article_id', 'joined'], template: '#article_row'}) | |
if $('.js-component-group').length == 0 | |
return | |
if ('.js-component-group').length > 0 | |
TalkTree.componentGroup = new Vue( | |
el: '.js-component-group' | |
data: |
This file contains 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
function myFunction() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var calendar = CalendarApp.getDefaultCalendar(); | |
var from = new Date(); | |
// 今から60分後にかぶる予定をさがす | |
var to = new Date(from.getTime() + (1000 * 60 * 60)); | |
// このURLを自分のものに直してね | |
var link = "https://www.remotty.net/rooms/1/bot/message.json?(twitter用の奴と同じクエリ)"; | |
var events = calendar.getEvents( from , to ); | |
if (events.length > 0){ |
This file contains 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
keyword = "乾杯" | |
musician = "長渕剛" | |
big = "大きな" | |
your = "君" | |
now = "今" | |
day = "日" | |
hope = "たい" | |
row = "ろう" | |
['作詞:', '作曲:'].map{|w| w + musician} |
This file contains 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
keyword = '乾杯' | |
musician = '長渕剛' | |
"作詞:#{musician} | |
作曲:#{musician}" | |
"かたい絆に 思いをよせて | |
語り尽くせぬ 青春の日々 | |
#{['傷つき', '喜び'].map{|w| anytime(w)}} | |
肩をたたきあった あの日" |
This file contains 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
// スコアの送信 | |
void PostRanking (int score) | |
{ | |
#if UNITY_ANDROID | |
AndroidJavaClass plugin = new AndroidJavaClass ("jp.basicinc.gamefeat.ranking.android.sdk.controller.GFRankingController"); | |
AndroidJavaClass unityPlayer = new AndroidJavaClass ("com.unity3d.player.UnityPlayer"); | |
AndroidJavaObject activity = unityPlayer.GetStatic<AndroidJavaObject> ("currentActivity"); | |
AndroidJavaObject ranking = plugin.CallStatic<AndroidJavaObject> ("getIncetance", activity); | |
ranking.Call ("sendScore", new string[] {"[ゲームモードID]"}, new string[] { score.ToString()}); | |
#endif |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<scheme name="PatorashRailscast" version="124" parent_scheme="Default"> | |
<option name="LINE_SPACING" value="1.0" /> | |
<option name="EDITOR_FONT_SIZE" value="14" /> | |
<option name="EDITOR_FONT_NAME" value="Menlo" /> | |
<colors> | |
<option name="CARET_COLOR" value="ffffff" /> | |
<option name="CARET_ROW_COLOR" value="333435" /> | |
<option name="CONSOLE_BACKGROUND_KEY" value="2b2b2b" /> | |
<option name="GUTTER_BACKGROUND" value="2b2b2b" /> |
This file contains 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
source 'https://rubygems.org' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.0.0.beta1' | |
gem 'i18n_generators' | |
gem 'simple_form' | |
gem 'devise', git: 'https://github.com/plataformatec/devise.git', branch: 'rails4' | |
gem 'protected_attributes' | |
gem 'kaminari' |
This file contains 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
・好きなメソッドは? | |
・好きなアニメは? | |
・好きな言語は? | |
・好きなガンダムシリーズは? | |
・githubアカウントは? | |
・あなたの習得している中で一番FizzBuzzを短くかける言語は? | |
・英語しゃべれる? | |
・最近気になるテクノロジーは? | |
・最近行った勉強会は? | |
・最近登壇した勉強会は? |
This file contains 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
package jp.kickhost.eventnavi; | |
import java.util.ArrayList; | |
import jp.kickhost.localsearch.model.Event; | |
import android.app.Fragment; | |
import android.os.Bundle; | |
import android.text.format.Time; | |
import android.util.Log; | |
import android.view.InflateException; |
NewerOlder