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
| <style> | |
| #header-menu { | |
| margin-left: 310px; | |
| margin-bottom: 30px; | |
| } | |
| #header-menu a { | |
| text-decoration: none !important; | |
| font-size: 20px; | |
| color: black !important; | |
| } |
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
| #スクレイピングでのXPathの使い方について質問です。 Web::Scrap.. - 人力検索はてな | |
| #http://q.hatena.ne.jp/1333603060 | |
| #よしいずの雑記帳 Web::Scraperを使ったPerlプログラムの例 | |
| #http://yoshiiz.blog129.fc2.com/blog-entry-382.html | |
| use strict; | |
| use warnings; | |
| use Web::Scraper; | |
| use Data::Dumper; |
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr"> | |
| <head profile="http://gmpg.org/xfn/11"> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <title>Featured Content Slider Using jQuery - Web Developer Plus Demos</title> | |
| <link rel="stylesheet" type="text/css" href="style.css" /> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function(){ |
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"?> | |
| <rss version="2.0" | |
| xmlns:content="http://purl.org/rss/1.0/modules/content/" | |
| xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" | |
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"> | |
| <channel> | |
| <title>Example</title> | |
| <link>http://example.com/</link> | |
| <description>Example Site</description> |
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 test - chrome GM_addStyle content test | |
| // @namespace http://d.hatena.ne.jp/Cherenkov/ | |
| // @include * | |
| // @version 0.1 | |
| // @date 20120219 | |
| // ==/UserScript== | |
| GM_addStyle('*:before { content: "\\A" url("http://www.bing.com/s/wlflag.ico"); white-space: pre; }'); |
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
| <script>alert(1)</script> |
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
| <html> | |
| <head> | |
| <script> | |
| </script> | |
| </head> | |
| <body> | |
| b | |
| <iframe src="c.html" name="c" width="200" height="150"> | |
| </body> | |
| </html> |
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
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| $(function() { | |
| var list = []; | |
| $('#btn').click(function() { | |
| list = []; |
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 'webrick' | |
| require 'webrick/httpproxy' | |
| require 'optparse' | |
| include WEBrick | |
| #WEBrick::HTTPProxyServer で無理矢理リクエストヘッダを書き換えるプロクシサーバ - PARAGRAPHS | |
| #http://d.hatena.ne.jp/tily/20090511/p1 | |
| # | |
| #使い方:ruby my_proxy.rb -r "X-Forwarded-For:58.30.0.0" |