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
| { | |
| "extends": [ | |
| "@commitlint/config-conventional" | |
| ], | |
| "parserOpts": { | |
| "headerPattern": "/^(\\w*)\\((\\w*)\\): (\\w*)\\s(.*)$/", | |
| "headerCorrespondence": [ | |
| "type", | |
| "scope", | |
| "ticket", |
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
| { | |
| "brackets-file-tree-exclude.excludeList": [ | |
| "/.git/", | |
| "/bower_components/", | |
| "/node_modules/" | |
| ], | |
| "interactive-linter.javascript": [ | |
| "eslint" | |
| ] | |
| } |
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
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 2 | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true | |
| end_of_line = 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
| { | |
| "root": true, | |
| "parser": "@typescript-eslint/parser", | |
| "plugins": ["react", "react-native", "import"], | |
| "extends": [ | |
| "eslint:recommended", | |
| "plugin:import/recommended", | |
| "plugin:react-native/all", | |
| "plugin:prettier/recommended" | |
| ], |
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 | |
| while inotifywait -e modify application/views/html/**/*; do make templates; done |
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
| 'use strict'; | |
| var domain = 'http://example.com', | |
| sm = { | |
| data: {}, | |
| meta: { | |
| keywords: document.querySelector('meta[name=keywords]').content, | |
| description: document.querySelector('meta[name=description]').content, | |
| length: 0 | |
| } |
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
| splitdiff() { sed '/<<<<<<</,/=======/d;/>>>>>>>/d' $1 > $1.REMOTE; sed '/<<<<<<</d;/=======/,/>>>>>>>/d' $1 > $1.LOCAL; echo $1; } | |
| automerge() { mv $1 $1.BASE;git checkout BASE $1; meld --auto-merge $1.LOCAL $1 $1.REMOTE; echo $1; } | |
| closemerge() { git add $1; rm $1.BASE $1.LOCAL $1.REMOTE; echo $1; } | |
| mergetool() { splitdiff $1 && automerge $1 && closemerge $1; } |
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
| <div style="width:550px"> | |
| <form method="POST"> | |
| <textarea name="text" style="width:100%" rows="20"><?=($_POST['text'])?$_POST['text']:''?></textarea> | |
| <input type="submit"/> | |
| <pre> | |
| <?php | |
| function keywords1($text){ | |
| $text = preg_replace('/[\!-@\[-\x60\x7b\x7e]/',' ',mb_strtolower($text,'UTF-8')); | |
| $text = preg_replace('/\s+/',' ',$text); |
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
| <div style="width:550px"> | |
| <form method="POST"> | |
| <textarea name="text" style="width:100%" rows="20" placeholder="Сокращает текст до легко распозноваемого и читаемого." onclick="this.value="<?=(@$_POST['text'])?$_POST['text']:'ddd'?>"><?=(@$_POST['text'])?$_POST['text']:''?></textarea> | |
| <input type="submit"/> | |
| </form> | |
| </div> | |
| <pre> | |
| <?php | |
| $sokr = 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
| <scheme name="Brackets" version="142" parent_scheme="Default"> | |
| <option name="LINE_SPACING" value="1.0" /> | |
| <font> | |
| <option name="EDITOR_FONT_NAME" value="Source Code Pro" /> | |
| <option name="EDITOR_FONT_SIZE" value="12" /> | |
| </font> | |
| <font> | |
| <option name="EDITOR_FONT_NAME" value="Monospaced" /> | |
| <option name="EDITOR_FONT_SIZE" value="12" /> | |
| </font> |