The FAQ maintained by Github covers most stumbling blocks, some other tips and tricks supplied here.
Add _site to .gitignore. The generated site should not be uploaded to Github since its gets generated by github.
The FAQ maintained by Github covers most stumbling blocks, some other tips and tricks supplied here.
Add _site to .gitignore. The generated site should not be uploaded to Github since its gets generated by github.
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0"> | |
| </head> | |
| <body> | |
| <pre id="out"></pre> | |
| </body> | |
| <script> | |
| function checkSizes(){ |
| // ==UserScript== | |
| // @name jQuery | |
| // @namespace jQuery | |
| // @include http://ajax.googleapis.com/* | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js | |
| // @require http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js | |
| // @resource jQueryUICSS http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/redmond/jquery-ui.css | |
| // ==/UserScript== | |
| var newCSS = GM_getResourceText ("jQueryUICSS"); |
| // Source: https://groups.google.com/forum/#!topic/angular/hVrkvaHGOfc | |
| // jsFiddle: http://jsfiddle.net/pkozlowski_opensource/PxdSP/14/ | |
| // author: Pawel Kozlowski | |
| var myApp = angular.module('myApp', []); | |
| //service style, probably the simplest one | |
| myApp.service('helloWorldFromService', function() { | |
| this.sayHello = function() { | |
| return "Hello, World!" |
| #!/usr/bin/perl | |
| # Twitterで特定ユーザのツイートを取得し、タブ区切りテキスト形式で出力する | |
| # | |
| # Usage: ./user_timeline.pl [-u USER_ID] [-s SINCE_ID] [-m MAX_ID] | |
| # | |
| # Options: | |
| # -u USER_ID, --user=USER_ID | |
| # USER_ID(数値またはscreen name)で指定したユーザのツイートを取得する | |
| # 省略時は、OAuthで認証した場合は自分自身のツイートを取得する |
| 平文でパスワード保存されていた?と推測する奴は頭がおかしいのでエンジニアやめろ。 | |
| ---- | |
| まず事実関係 | |
| MUFGは、ID登録及び、ログインの際に、パスワード規定文字数を超えて「入力することができませんでした」と主張している。 | |
| http://www.cr.mufg.jp/corporate/info/pdf/2012/121120_01.pdf | |
| リニューアル前の直近のログインフォームでは、password入力のinput要素に各提携先に応じたmaxlengthが設定されていて、 |
Automator のシェルスクリプトアクションで使えるサンプル集です。「アプリケーション」や「サービス」を作成するときにどうぞ。