Windows専用ニコニコ動画非公式専用ブラウザのnFinder2のお気に入りをOPMLとしてエクスポートします。
ruby 2.0.0 or greater.
Windows専用ニコニコ動画非公式専用ブラウザのnFinder2のお気に入りをOPMLとしてエクスポートします。
ruby 2.0.0 or greater.
| $ rubocop | |
| Inspecting 1 file | |
| C | |
| Offenses: | |
| ideone_bMhhHk.rb:2:1: C: Use snake_case for source file names. | |
| # -*- encoding: utf-8 -*- | |
| ^ | |
| ideone_bMhhHk.rb:5:3: C: Replace class var @@id_cnt with a class instance var. |
| #!/bin/sh | |
| echo "Setting $1 bounds to 720p" | |
| # 720p is 1280x720. | |
| # Bounds is startX, startY, endX, endY. Adjust size from starting position to account for this | |
| osascript -e "tell application \"$1\" to set the bounds of the first window to {0, 0, 1280, 720}" | |
| # activate the app, to bring it to the front | |
| osascript -e "tell application \"$1\" to activate" |
| <?xml version="1.0"?> | |
| <packages> | |
| <package id="googlechrome" /> | |
| <package id="firefox" /> | |
| <package id="curl" /> | |
| <package id="git" /> | |
| <package id="dropbox" /> | |
| <package id="flashplayerplugin" /> | |
| <package id="itunes" /> | |
| <package id="googledrive" /> |
| # | |
| # This is the main Apache HTTP server configuration file. It contains the | |
| # configuration directives that give the server its instructions. | |
| # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. | |
| # In particular, see | |
| # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> | |
| # for a discussion of each configuration directive. | |
| # | |
| # Do NOT simply read the instructions in here without understanding | |
| # what they do. They're here only as hints or reminders. If you are unsure |
| # Virtual Hosts | |
| # | |
| # Required modules: mod_log_config | |
| # If you want to maintain multiple domains/hostnames on your | |
| # machine you can setup VirtualHost containers for them. Most configurations | |
| # use only name-based virtual hosts so the server doesn't need to worry about | |
| # IP addresses. This is indicated by the asterisks in the directives below. | |
| # | |
| # Please see the documentation at |
| <?php | |
| $_SERVER['DOCUMENT_ROOT'] = str_replace($_SERVER['SCRIPT_NAME'], '', $_SERVER['SCRIPT_FILENAME']); |
| [PHP] | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; About php.ini ; | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; PHP's initialization file, generally called php.ini, is responsible for | |
| ; configuring many of the aspects of PHP's behavior. | |
| ; PHP attempts to find and load this configuration from a number of locations. | |
| ; The following is a summary of its search order: |