- align_double_arrow
- no_blank_lines_after_return
- no_empty_comment
- no_useless_else
- phpdoc_add_missing_param_annotation
- phpdoc_align
- phpdoc_order
- align_phpdoc
- binary_operator_spaces
- blank_line_after_namespace
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
goodwork.local { | |
root * /var/www/public | |
php_fastcgi php:9000 | |
encode gzip | |
file_server | |
log { | |
output file /var/log/access.log | |
} | |
tls internal |
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
<?php | |
return PhpCsFixer\Config::create() | |
->setRules(array( | |
'@PSR2' => true, | |
'array_syntax' => array('syntax' => 'short'), | |
'combine_consecutive_unsets' => true, | |
'method_separation' => true, | |
'no_multiline_whitespace_before_semicolons' => true, | |
'single_quote' => true, |
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
aaronthomas.vscode-snazzy-operator | |
alefragnani.project-manager | |
andrew-codes.cypress-snippets | |
bmewburn.vscode-intelephense-client | |
bradlc.vscode-tailwindcss | |
calebporzio.better-phpunit | |
chenxsan.vscode-standardjs | |
christian-kohler.path-intellisense | |
CoenraadS.bracket-pair-colorizer | |
Dart-Code.dart-code |
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
{ | |
"telemetry.enableTelemetry": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.activityBar.visible": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"workbench.statusBar.visible": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabCompletion": "on", |
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
preset: none | |
risky: true | |
enabled: | |
- align_double_arrow | |
- no_blank_lines_after_return | |
- no_empty_comment | |
- no_useless_else | |
- phpdoc_add_missing_param_annotation |
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
package main | |
import ( | |
"context" | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"strings" |
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
docker-machine error | |
type: can't remove machine or set machine, gives following error | |
Error checking TLS connection: invalid character '<' looking for beginning of value | |
solution: | |
remove all machine created by docker machine | |
`docker-machine rm -f $(docker-machine ls -q)` |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Mariana</string> | |
<key>author</key> | |
<string>Sublime HQ Pty Ltd, Dmitri Voronianski</string> | |
<key>settings</key> | |
<array> |
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
> Design Fundamentals - 5 parts of design | |
https://www.youtube.com/playlist?list=PLpQQipWcxwt8vVzFpoJS5TtCh8Ktke9TH | |
> Gestalt principles | |
https://www.smashingmagazine.com/2014/03/design-principles-visual-perception-and-the-principles-of-gestalt/ | |
> Fundamentals | |
https://medium.freecodecamp.org/before-you-can-master-design-you-must-first-master-the-fundamentals-1981a2af1fda | |
> Gestalt principles of perception |
NewerOlder