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
| syntax enable | |
| set number | |
| set ruler | |
| set list | |
| set listchars=tab:>-,trail:-,nbsp:%,extends:>,precedes:< | |
| set incsearch | |
| set hlsearch | |
| set nowrap | |
| set showmatch |
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
| # ==== Emojis ==== | |
| # 🐛 :bug: バグ修正 | |
| # 👍 :+1: 機能改善 | |
| # ✨ :sparkles: 部分的な機能追加 | |
| # 🎉 :tada: 盛大に祝うべき大きな機能追加 | |
| # ♻️ :recycle: リファクタリング | |
| # 🚿 :shower: 不要な機能・使われなくなった機能の削除 | |
| # 💚 :green_heart: テストやCIの修正・改善 |
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 'open-uri' | |
| require 'json' | |
| response = open('http://www.idolfes.com/2016/json/timetable/time.json') | |
| data = JSON.parse(response.read) | |
| artists = {} | |
| data.each do |day, stages| | |
| stages.each do |stage, items| | |
| items.each do |item| |
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
| import logging | |
| from logging.handlers import RotatingFileHandler | |
| from flask import Flask | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def foo(): | |
| app.logger.warning('A warning occurred (%d apples)', 42) |
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
| set main-view = id:width=12 date author commit-title:graph=yes,refs=yes | |
| set vertical-split = yes | |
| set split-view-height = 80% | |
| # 差分の前後の表示行数(diff-context)を指定 | |
| set diff-context = 6 | |
| set blame-view = date:local author:full id line-number:true,interval=1 text | |
| set main-view = line-number:true,interval=10 date:local author:full id commit-title:true,graph=true,refs=true | |
| set refs-view = date:local author:full id ref:true commit-title:true | |
| set status-view = file-name status:long |
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
| import jsforce from 'jsforce'; | |
| var conn = new jsforce.Connection({'loginUrl': 'salesForceURL'}); | |
| conn.login('username', 'password+securityToken', function(error, userInfo) { | |
| if (error) { | |
| return console.log(error); | |
| } | |
| conn.sobject('Account').find({}).execute(function(error, records) { | |
| if (error) { | |
| return console.log(error); |
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
| function is(type, obj) { | |
| var clas = Object.prototype.toString.call(obj).slice(8, -1); | |
| return obj !== undefined && obj !== null && clas === type; | |
| } |
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 node | |
| var FeedParser = require('feedparser'); | |
| var request = require('request'); | |
| var feed = 'https://news.google.com/news?output=rss&q='; | |
| var query = encodeURI('山岳遭難'); | |
| var req = request(feed + query); | |
| var feedparser = new FeedParser({}); |
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 node | |
| var mongoose = require('bluebird').promisifyAll(require('mongoose')); | |
| var uriUtil = require('mongodb-uri'); | |
| var mongodbUri = process.env.MONGOLAB_URI || 'mongodb://localhost/emt-dev'; | |
| var mongooseUri = uriUtil.formatMongoose(mongodbUri); | |
| import Company from '../server/api/company/company.model' | |
| import News from '../server/api/news/news.model'; | |
| import _ from 'lodash'; |
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
| machine: | |
| node: | |
| version: v5.1.0 | |
| dependencies: | |
| pre: | |
| - npm install -g bower | |
| - npm install | |
| - bower install | |
| - node_modules/protractor/bin/webdriver-manager update |