- Raiden **** (trop dur)
- Raiden Fighters Jet **** (1990 trop joli, bien dur)
- PROGEAR (2001, CAVE, trop dur)
- ESP Galuda
- ESP Galuda 2
- Blazing Star (Neo Geo, pas trop harcode)
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
# This script is greatly inspired by Pry Everywhere by Luca Pette | |
# http://lucapette.com/pry/pry-everywhere/ | |
# Use TextMate as default editor | |
Pry.config.editor = "mate -w" | |
# My pry is polite | |
Pry.hooks = { | |
:after_session => proc { | |
puts "\nGoodbye." if Pry.active_sessions == 1 |
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
/* | |
http://www.google.fr/reader/* | |
*/ | |
a[href*=feedburner], | |
a[href*=feedsportal], | |
img[src*=feedsportal] { | |
display:none !important; | |
} |
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
127.0.0.1 da.feedportal.com | |
127.0.0.1 rss.feedportal.com | |
127.0.0.1 com.clubic.feedsportal.com |
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
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
# x264 presets guide : https://forum.handbrake.fr/viewtopic.php?f=6&t=19426 | |
X264 = "b-adapt=2:rc-lookahead=50:me=umh:bframes=5:ref=6:direct=auto:trellis=2:subq=10:psy-rd=1.0,0.10:analyse=all" | |
FORMAT = "--optimize --format mp4" | |
QUALITY = "--ab 64 --mixdown mono --quality 23 -e x264 -x '#{X264}'" | |
SIZE = "--width 1280 --height 720" | |
ARGV.each do |param| |
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 init_checkout_selection_table(id) { | |
var table = $(id); | |
var clicked_td = null; | |
// Clicking on the input box changes the row to active | |
// Add this behaviour + simulate the first click | |
// Use triggerHandler to only execute the function (the input is already clicked) | |
table.find('input').on('click', function(event) { | |
table.find('.active').removeClass('active'); | |
clicked_td = $(this).closest('td'); |
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
.ribbon | |
overflow: hidden | |
// top left corner | |
position: absolute | |
right: -3.5em | |
top: 2.5em | |
// 45° clockwise rotation | |
+rotate(45deg) | |
+box-shadow(0 0 1em #888) | |
+background-image(linear-gradient(left, #050, #080, #090, #080, #050)) |
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
ENV["RAILS_ENV"] = "test" | |
require 'rubygems' | |
require 'spork' | |
#uncomment the following line to use spork with the debugger | |
#require 'spork/ext/ruby-debug' | |
Spork.prefork do | |
require File.expand_path('../../config/environment', __FILE__) | |
require 'rails/test_help' |
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
# A sample Guardfile | |
# More info at https://github.com/guard/guard#readme | |
guard 'livereload' do | |
watch(%r{app/.+\.(erb|haml)}) | |
watch(%r{app/helpers/.+\.rb}) | |
watch(%r{(public/|app/assets).+\.(css|js|html)}) | |
watch(%r{(app/assets/.+\.css)\.s[ac]ss}) { |m| m[1] } | |
watch(%r{(app/assets/.+\.js)\.coffee}) { |m| m[1] } | |
watch(%r{config/locales/.+\.yml}) |
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
$('#my_form').submit (event) -> | |
event.preventDefault() | |
$.ajax | |
url: $(@).attr("action") | |
data: new FormData(@) | |
type: "POST" | |
cache: false | |
contentType: false | |
processData: false |