- p86 上記の通り通り -> 上記の通り
- p88 「TypeScriptは language service」 -> TypeScriptは「language service」
- p100 サンプルコードの"TypeScript" -> JavaScript
- p212 自動的に岡蹴る -> 自動的に追いかける
- p227 リスト6.7のような雰囲気になります -> リスト6.32のような雰囲気になります
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
#!/bin/bash | |
# http://zeroset.mnim.org/2014/07/14/save-a-pdf-to-cmyk-with-inkscape/ | |
# usage | |
# inkscape_convert_to_cmyk.sh /path/to/input_rgb.pdf /path/to/output_cmyk.pdf | |
gs -dSAFER -dBATCH -dNOPAUSE -dNOCACHE \ | |
-sDEVICE=pdfwrite \ | |
-sColorConversionStrategy=CMYK \ | |
-dProcessColorModel=/DeviceCMYK \ | |
-sOutputFile=$2 \ | |
$1 |
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
{ | |
"aliases": { | |
"@app/controllers" : ["controllers", "mycontrollers"], | |
"@app/models" : ["mymodels"], | |
"@app/views" : ["themes/basic", "views", "views2"], | |
"@yii": ["vendor/yiisoft/yii2"] | |
} | |
} |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://www.netbeans.org/ns/project/1"> | |
<type>org.netbeans.modules.cnd.makeproject</type> | |
<configuration> | |
... something | |
<preferences xmlns="http://www.netbeans.org/ns/auxiliary-configuration-preferences/1"> | |
<module name="org-netbeans-modules-vagrant"> | |
<property name="vagrant-path" value="/path/to/CppApplication/vagrant/root/dir/"/> | |
</module> | |
<module name="org-netbeans-modules-projectimport-eclipse-core"/> |
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
<#assign licenseFirst = "/*"> | |
<#assign licensePrefix = " * "> | |
<#assign licenseLast = " */"> | |
<#include "${project.licensePath}"> | |
<#if package?? && package != ""> | |
package ${package}; | |
</#if> | |
/** |
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
{ | |
"cake": "..\/lib\/", | |
"build_path": { | |
"models": [ | |
".\/Model\/" | |
], | |
"behaviors": [ | |
".\/Model\/Behavior\/" | |
], | |
"datasources": [ |
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
<#if licenseFirst??> | |
${licenseFirst} | |
</#if> | |
${licensePrefix}${name} | |
${licensePrefix?replace(" +$", "", "r")} | |
${licensePrefix}@copyright Copyright (c) dotcake organization. (https://github.com/dotcake) | |
${licensePrefix}@license http://www.opensource.org/licenses/mit-license.php MIT License | |
<#if licenseLast??> | |
${licenseLast} | |
</#if> |
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> | |
<head> | |
<meta charset="utf-8"> | |
<title>A list of base boxes for Vagrant - Vagrantbox.es</title> | |
</head> | |
<body> | |
<div id="main"> | |
<table class="sortable"> | |
<thead> | |
<tr><th>Name</th><th>Provider</th><th>URL</th><th class="sorttable_numeric">Size</th></tr> |
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> | |
<head> | |
<title>Vagrant Boxes</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
</head> | |
<body> | |
<div> | |
<table> | |
<thead> | |
<tr><th>Name</th><th>Provider</th><th>URL</th><th>Size</th></tr> |
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
{ | |
"minimum-stability": "dev", | |
"config": { | |
"vendor-dir": "vendors" | |
}, | |
"repositories" : [ | |
{ | |
"type": "package", | |
"package": { | |
"name" : "cakephp/cakephp", |
NewerOlder