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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <definitions xmlns:typens="urn:Magento" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" | |
| xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" | |
| name="Magento" targetNamespace="urn:Magento"> | |
| <types> | |
| <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Magento"> | |
| <import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/" /> | |
| <complexType name="FixedArray"> | |
| <complexContent> | |
| <restriction base="soapenc:Array"> |
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 'fruity' | |
| compare do | |
| rubylovely { | |
| a3 = [["a", "b"], ["a","c"], ["b","c"], ["b", "a"], ["c","b"],["b", "a"]] | |
| a3.each {|x| a3.delete(x.reverse) if a3.include? x.reverse} | |
| } | |
| padde { | |
| a3 = [["a", "b"], ["a","c"], ["b","c"], ["b", "a"], ["c","b"],["b", "a"]] |
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
| <div id="image" class="image textbox "> | |
| <div class=""> | |
| <img src="img.jpg" alt="" original-title=""> | |
| </div> | |
| </div> |
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
| delimitMate Report | |
| ================== | |
| * Options: ( ) default, (g) global, (b) buffer | |
| ( ) delimitMate_apostrophes = '' | |
| ( ) delimitMate_autoclose = 1 | |
| ( ) delimitMate_balance_matchpairs = 0 | |
| ( ) delimitMate_eol_marker = '' | |
| ( ) delimitMate_excluded_ft = '' |
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
| module Enumerable | |
| class Position | |
| def initialize ary | |
| @pos = 1 | |
| @max = ary.size | |
| @cache = Hash.new | |
| @warn_other = false | |
| end | |
| def advance |
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
| class Array | |
| class Position | |
| def initialize ary | |
| @pos = 1 | |
| @max = ary.size | |
| @cache = Hash.new | |
| end | |
| def advance | |
| @pos += 1 |
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
| class Array | |
| class Position | |
| attr_accessor :idx, :max | |
| def initialize arr | |
| self.max = arr.size | |
| end | |
| def pos | |
| idx + 1 |
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
| class Array | |
| class EachDSL | |
| attr_accessor :idx, :max | |
| def initialize arr | |
| self.max = arr.size | |
| end | |
| def pos | |
| idx + 1 |
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
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <title>Test</title> | |
| {% seo %} | |
| {% inline_editor %} | |
| </head> | |
| <body> | |
| <nav id="main_menu"> |
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 ruby | |
| require 'securerandom' | |
| require 'fileutils' | |
| require 'coderay' | |
| require 'coderay_bash' | |
| require 'trollop' | |
| opts = Trollop::options do | |
| opt :language, "The language used to highlight the input", short: '-l', type: :string, default: nil |