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
| $base-color: #f2eff0 | |
| $main-color: #333333 | |
| $accent-color: #1e965c | |
| $base-text-color: darken($base-color, 50%) |
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
| { | |
| "japanese_template": { | |
| "template": "*ja", | |
| "settings": { | |
| "analysis": { | |
| "filter": { | |
| "romaji": { | |
| "type": "kuromoji_readingform", | |
| "use_romaji": true | |
| } |
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 Redmine Submit Guard | |
| // @namespace https://github.com/kawanaka2141 | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js | |
| // @match http://*/redmine/projects/*/issues/new | |
| // @match http://*/redmine/issues/* | |
| // ==/UserScript== | |
| (function(){ | |
| $('input').keypress(function(ev){ |
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
| test: | |
| adapter: mysql2 | |
| database: my_app_test | |
| username: root | |
| encoding: utf8 | |
| cucumber: | |
| adapter: mysql2 | |
| database: my_app_test | |
| username: root | |
| encoding: utf8 |
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
| var FadeTransitionRegion = Backbone.Marionette.Region.extend({ | |
| show: function(view){ | |
| this.ensureEl(); | |
| view.render(); | |
| this.close(function() { | |
| if (this.currentView && this.currentView !== view) { return; } | |
| this.currentView = view; |
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 python3 | |
| # -*- coding: utf-8 -*- | |
| """a stock order via SBI Securities. | |
| "order_sbisec.py" is released under the MIT License | |
| Copyright (c) 2017 Akihiro Yamamoto | |
| __author__ = "Akihiro Yamamoto <ak1211@mail.ak1211.com>" | |
| __version__ = "0.5.2" | |
| __date__ = "Oct 2017" |
OlderNewer