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 spock.lang.Specification | |
import spock.lang.Unroll | |
/** | |
* Created by IntelliJ IDEA. | |
* User: kyon | |
* Date: 12/06/24 | |
* Time: 14:53 | |
* To change this template use File | Settings | File Templates. | |
*/ | |
class VendingSpec extends Specification { |
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 getJsonData(){ | |
$.ajax({ | |
url: "http://localhost/php/gist/temp.php", // リクエストURL | |
dataType: "json", // JSON形式 | |
cache: true, // キャッシュする | |
type: "POST", // POST指定 | |
success: function(data) { // 通信成功時の無名関数 | |
$("#targetElement").children().remove(); | |
$("#targetElement"). |
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
package info.indare.hogehoge.fuga | |
import info.indare.hogehoge.Pugya | |
class Fuga extends Pugya{ | |
def moto(){ | |
println this.getClass().getName() | |
} | |
} |
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
Capybara.app = 'https://at2.admin.fortunemusic.jp' | |
Capybara.app_host = 'https://at2.admin.fortunemusic.jp' | |
Capybara.run_server = false | |
Capybara.register_driver :poltergeist do |app| | |
options = { | |
debug: false, | |
js_errors: false, | |
inspector: true, | |
timeout: 20, |
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
# This is Git's per-user configuration file. | |
[core] | |
# Please adapt and uncomment the following lines: | |
user = 'fugafuga' | |
email = [email protected] | |
excludesfile = /Users/fugafuga/.gitignore | |
autocrlf = input | |
editor = "/Applications/Emacs.app/Contents/MacOS/Emacs" | |
[user] | |
name = Fugafuga Hogeo |
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
<?php | |
namespace src; | |
use InvalidArgumentException; | |
use ReflectionObject; | |
abstract class Enum | |
{ | |
private $scalar; |
OlderNewer