View HTML 5 Start File
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>HTML5 Template</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
</body> |
View PHP Delete File
<?php | |
/** | |
* Deleting file | |
* @param string $fullpath Filename with its full path | |
* @return array key => result | |
*/ | |
function deleteFile( $fullpath ) { | |
if (file_exists($fullpath)) { | |
$hasBeenDeleted = unlink($fullpath); |
View Sublime text base16 Markup Theme
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- Generated by: TmTheme-Editor --> | |
<!-- ============================================ --> | |
<!-- app: http://tmtheme-editor.herokuapp.com --> | |
<!-- code: https://github.com/aziz/tmTheme-Editor --> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>base16 Markup</string> |
View assign-vars-from-controller.sublime-macro
[ | |
{ | |
"command": "escape" | |
}, | |
{ | |
"command": "expand_selection", | |
"args": {"to": "word"} | |
}, | |
{ | |
"args": null, |
View add-curly-braces.sublime-macro
[ | |
{ | |
"args": | |
{ | |
"to": "eol" | |
}, | |
"command": "move_to" | |
}, | |
{ | |
"args": |
View EOL-coma.sublime-macro
[ | |
{ | |
"args": | |
{ | |
"to": "eol" | |
}, | |
"command": "move_to" | |
}, | |
{ | |
"args": |
View EOL-semicolumn.sublime-macro
[ | |
{ | |
"args": | |
{ | |
"to": "eol" | |
}, | |
"command": "move_to" | |
}, | |
{ | |
"args": |
View .php_cs
<?php | |
$header = <<<EOF | |
This file is part of the PHP CS utility. | |
(c) Fabien Potencier <fabien@symfony.com> | |
This source file is subject to the MIT license that is bundled | |
with this source code in the file LICENSE. | |
EOF; |
View index.html
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Vue Tags</title> | |
<link rel="stylesheet" type="text/css" href="css/vendor/bootstrap.min.css"> | |
<link rel="stylesheet" type="text/css" href="css/flat-ui-pro.min.css"> | |
<script src="vue-js.min.js"></script> | |
</head> | |
<body> |
View .php_cs
<?php | |
$finder = Symfony\Component\Finder\Finder::create() | |
->notPath('bootstrap/cache') | |
->notPath('storage') | |
->notPath('vendor') | |
->in(__DIR__) | |
->name('*.php') | |
->ignoreDotFiles(true) | |
->ignoreVCS(true); |
OlderNewer