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
<template> | |
<div> | |
<textarea ref="body" class="form-input" @input="handleInput" @click="handleInput" v-model="content"></textarea> | |
<div>{{ position}}</div> | |
<button class="button" @click="insertWtf">Insert '<-WTF->'</button> | |
</div> | |
</template> | |
<script> | |
export default { |
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 Animal | |
{ | |
public static $name = "animal"; | |
// Return the class that is represented by "self::" | |
public function getSelfClass() | |
{ | |
return get_class(); |
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
<p><code><input class="form-input" id="tags" placeholder="Enter tags separated by comma." name="tags" type="text"</code></p> | |
<p><code> value="{{ $tags ?? old('tags') ?? '' }}"></code></p> |
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
https://www.youtube.com/embed/HH0zOJVOzxs?rel=0&autoplay=1;fs=0;autohide=0;hd=0; |
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
Show hidden characters
{ | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"downloader_precedence": | |
{ | |
"linux": | |
[ | |
"urllib", | |
"curl", | |
"wget" |
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
[ | |
{ "keys": ["super+d"], "command": "duplicate_line" }, | |
{ "keys": ["super+shift+d"], "command": "find_under_expand" }, | |
// PHP Companion | |
{ "keys": ["alt+e"], "command": "expand_fqcn" }, | |
{ "keys": ["shift+f6"], "command": "expand_fqcn", "args": {"leading_separator": true} }, | |
{ "keys": ["alt+i"], "command": "find_use" }, | |
{ "keys": ["f4"], "command": "import_namespace" }, | |
// { "keys": ["f3"], "command": "implement" }, |
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 | |
$finder = PhpCsFixer\Finder::create() | |
->notPath('bootstrap/cache') | |
->notPath('storage') | |
->notPath('vendor') | |
->in(__DIR__) | |
->name('*.php') | |
->notName('*.blade.php') | |
->ignoreDotFiles(true) | |
->ignoreVCS(true) |
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
<script src='https://english-testing-bot.net.ua/js/etbwidget.js'></script> | |
<script src='https://english-testing-bot.net.ua/js/widget.js'></script> |
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
bash <(curl -s https://gist.githubusercontent.com/stillfinder/d35cd54805105a4a8e4aed8b019afaae/raw/20ff2cbb5b87a6ad8edec443130a176f2ba4811b/uninstall_mysql_script.sh) |
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
brew update && brew install [email protected] | |
# or you can use 'brew install mysql' to install the latest version of MySql |
NewerOlder