homebrewでインストール
$ brew updatePG::ConnectionBad at /
could not connect to server: Connection refused
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5432?
| // ==UserScript== | |
| // @name http://gazoreply.jp/ | |
| // @description replace gazoreply.jp copy image url | |
| // @include http://gazoreply.jp/* | |
| // @exclude http://gazoreply.jp/situation/* | |
| // ==/UserScript== | |
| window.addEventListener('load', function(){ | |
| var imgURL = document.getElementById("main-photo-img").getAttribute('src'); | |
| var clipboardButtonElement = document.getElementById("copy-clipboard-btn"); |
| やわらかRubyはCC BY 4.0 で提供します。 | |
| 詳細: https://creativecommons.org/licenses/by/4.0/deed.ja | |
| This work is licensed under a Creative Commons Attribution 4.0 International License. | |
| See also: https://creativecommons.org/licenses/by/4.0/deed |
従来の CVCS (集中バージョン管理システム)のリビジョン番号は連番。 SVN はサーバーにデプロイした時点でリビジョン番号1と設定される。
| url: | |
| 'https://username:[email protected]/username/foo-bar-baz.git' | |
Olivier Lacan, Tony Winn
Nobuyoshi Nakada showed a beautifully simple way to start a web server within the present working directory by only using Ruby. ruby -run -e httpd . -p 5000
ruby.ruby -run -e httpd . -p 5000. That will start the server using WEBrick, which comes with(?) the Ruby Standard Library, and you can see the server running at localhost:5000 in your brouser(?), if you have an index.html file in that directory, it will show up in your browser.