- List by calling
chrome://about/ - Following is a direct dump from the 'about' page for reference
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
| worker_processes 2; | |
| error_log /var/log/nginx/error.log; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| use epoll; | |
| } |
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
| /* Licensed to the Apache Software Foundation (ASF) under one or more | |
| * contributor license agreements. See the NOTICE file distributed with | |
| * this work for additional information regarding copyright ownership. | |
| * The ASF licenses this file to You under the Apache License, Version 2.0 | |
| * (the "License"); you may not use this file except in compliance with | |
| * the License. You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
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
| #!/bin/bash | |
| ########################################################### | |
| # このスクリプトの特徴 | |
| # | |
| # 受信・通過については基本的に破棄し、ホワイトリストで許可するものを指定する。 | |
| # 送信については基本的に許可する。ただし、サーバが踏み台になり外部のサーバに迷惑をかける可能性があるので、 | |
| # 心配な場合は、送信も受信同様に基本破棄・ホワイトリストで許可するように書き換えると良い。 | |
| ########################################################### |
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
| ./configure \ | |
| --prefix=/usr/local/php-7.0.0 \ | |
| --build=x86_64-linux-gnu \ | |
| --host=x86_64-linux-gnu \ | |
| --enable-bcmath \ | |
| --enable-calendar \ | |
| --enable-ctype \ | |
| --enable-dba \ | |
| --enable-exif \ | |
| --enable-fpm \ |
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
| [Service] | |
| ProtectHome=false |
If anyone's looking for a solution for licensing Sublime Text!
Here goes an easy tutorial on how to register, Sublime Text Version 3.2.2, Build 3211
- Go to https://hexed.it/
- Click on "Open file" and select "sublime_text.exe" executable file. [This 'sublime_text.exe' file should be located at C:\Program Files\Sublime Text 3]
- Go to "Search" and in "Search for" field, search for "97 94 0D" and click "Search now" button.
- One result will appear below, click on it.
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
| #include <Arduino.h> | |
| #include <BLEDevice.h> | |
| BLEClient *pClient; | |
| BLEScan *pBLEScan; | |
| #define SCAN_TIME 10 // seconds | |
| bool connected = false; |
OlderNewer