This file contains 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
{ | |
"liveSassCompile.settings.formats":[ | |
{ | |
"format": "expanded", | |
"extensionName": ".css", | |
"savePath": "~/../" | |
} | |
], | |
"liveSassCompile.settings.excludeList": [ | |
"**/node_modules/**", |
This file contains 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
{ | |
"protocol": "sftp", | |
"host": "aeXXX.secure.ne.jp", | |
"username": "aeXXXXXXX_username", | |
"password": "P@ssW0rd", | |
"ignore": [".editorconfig"], | |
"remotePath": "/html", | |
"port" : 10397 | |
} |
This file contains 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
Encoding.default_external = "UTF-8" | |
http_path = "/" | |
css_dir = "/wp-content/themes/THEME_NAME/css/" | |
sass_dir = "/wp-content/themes/THEME_NAME/scss/" | |
images_dir = "/wp-content/themes/THEME_NAME/images/" | |
javascripts_dir = "/wp-content/themes/THEME_NAME/js/" | |
fonts_dir = "/wp-content/themes/THEME_NAME/fonts/" | |
output_style = :expanded # :expanded or :nested or :compact or :compressed |
This file contains 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
# .htaccessの上の方に追加 | |
# TOPページへのPOSTアクセスを拒否 | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{REQUEST_URI} ^/$ | |
RewriteCond %{REQUEST_METHOD} ^POST | |
RewriteRule .* - [F] | |
</IfModule> |
This file contains 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
<?php | |
$PATH_TARGET = "/PATH/TO/TARGET/"; | |
$PATH_SAVE = "/PATH/TO/SAVE/"; | |
// zip name | |
$file_name = "backup.zip"; | |
$command = " | |
cd ". $PATH_TARGET ." | |
zip -qr ". $PATH_SAVE . $file_name ." . "; |
This file contains 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/local/bin/perl | |
print "Content-type: text/plain\n\n"; | |
print "Hello !\n"; |
This file contains 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> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>日本の都道府県一覧</title> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> | |
<script src="http://code.jquery.com/jquery-3.1.1.min.js"></script> | |
<script> | |
jQuery(function ($) { |
This file contains 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
参考URL: http://stackoverflow.com/questions/2660201/what-parameters-should-i-use-in-a-google-maps-url-to-go-to-a-lat-lon | |
http://maps.google.com/maps/place/<name>/@<lat>,<long>,15z |
This file contains 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
<?php | |
class business_calendar { | |
const WEEK = 7; // 1 week is 7 days | |
// holiday_of_week flag index | |
const IDX_SUNDAY = 0; | |
const IDX_MONDAY = 1; | |
const IDX_TUESDAY = 2; | |
const IDX_WEDNESDAY = 3; | |
const IDX_THURSDAY = 4; |
This file contains 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
# http://www.cpi.ad.jp/evangelist/maekawa/column01/001.html | |
cd ~ | |
mkdir bin | |
cd bin/ | |
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
cd ~ | |
echo alias wp 'php-7.0 ~/bin/wp-cli.phar' > .cshrc | |
source .cshrc | |
wp --info | |
cd ~/html |
NewerOlder