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 | |
require 'mechanize' | |
class Mechanize::Page | |
def embed_body | |
self.embed_style | |
self.embed_script | |
self.embed_images |
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 | |
# coding : utf-8 | |
require 'mechanize' | |
class Mechanize::Page | |
def embed_body | |
self.embed_images | |
self.embed_style | |
self.embed_script |
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
<?php | |
echo time(); |
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 | |
# coding : utf-8 | |
require 'mechanize' | |
class Mechanize::Page | |
def embed_body | |
self.embed_images | |
self.embed_style | |
self.embed_script |
This file has been truncated, but you can view the full file.
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
0000000 1f 8b 08 08 6e d2 63 4d 00 03 43 6f 6e 63 75 72 | |
0000010 72 65 6e 74 20 52 44 50 20 50 61 74 63 68 65 72 | |
0000020 2e 65 78 65 00 ec bc 09 3c 95 6d bb 3e bc 54 9a | |
0000030 4b 65 68 36 66 9e 67 21 24 52 a4 41 42 c6 cc f3 | |
0000040 4c e6 21 43 49 99 52 84 24 99 1a 91 4a 29 a1 88 | |
0000050 26 29 0d d2 80 0a 51 c9 3c cb f1 5d 6b 59 bd fb | |
0000060 d9 ef 7e f7 f8 df df fe ef df ef fb 56 cf f9 bb | |
0000070 d6 ba dd c3 75 1c e7 71 1e d7 75 dd eb 5e 8f ae | |
0000080 71 22 65 36 85 42 99 43 02 a0 50 6e 53 66 5e 6a | |
0000090 94 7f ff 15 4e 62 29 c7 9d a5 94 1b 0b ea b9 6e |
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
#coding:utf-8 | |
# @author https://github.com/takuya | |
# | |
# Copyright (C) 2012-2013 takuya. All rights reserved. | |
# | |
# This program is free software; you can redistribute it and/or modify it under | |
# the terms of the GNU General Public License as published by the Free Software | |
# Foundation; either version 2 of the License, or (at your option) any later | |
# version. | |
# |
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
require 'mechanize' | |
# トップページ | |
m = Mechanize.new | |
m.follow_meta_refresh = true | |
m.get "http://www.jibunbank.co.jp/" |
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 bash | |
if ! $( type -P groff >/dev/null); then | |
echo groff is not found. | |
echo please install groff | |
exit 1; | |
fi | |
name=$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
<?php | |
//paypal | |
class Invoice { | |
public $client_id; | |
public $secret; | |
public $access_token; | |
public $paths; | |
public function __construct(){ | |
$this->initalize(); |