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 NumberOfBikes { | |
public function __construct() { | |
$this->bikesCount = 0; | |
} | |
public function iHaveABike() { | |
$this->bikesCount += 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
{ | |
"editor.fontSize": 14, | |
"editor.fontLigatures":true, | |
"editor.cursorStyle": "line", | |
"editor.wordWrap": "on", | |
"editor.fontFamily": "Operator Mono Book", | |
"editor.tabCompletion": true, | |
"editor.lineHeight": 30, | |
"editor.cursorBlinking": "phase", | |
"editor.showFoldingControls": "always", |
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
const readline = require('readline'); | |
const unions = []; | |
const rl = readline.createInterface({ | |
input: process.stdin, | |
output: process.stdout | |
}); | |
let number = undefined, i = 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
<?php | |
namespace App\Models\Blogs; | |
use App\Models\BaseModel; | |
use App\Models\Blogs\Traits\Attribute\BlogAttribute; | |
use App\Models\Blogs\Traits\Relationship\BlogRelationship; | |
use App\Models\ModelTrait; | |
use Illuminate\Database\Eloquent\SoftDeletes; |
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 | |
namespace App\Models\Blogs\Traits\Attribute; | |
/** | |
* Class BlogAttribute. | |
*/ | |
trait BlogAttribute | |
{ | |
/** |
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 | |
namespace App\Models; | |
trait ModelTrait | |
{ | |
/** | |
* @return string | |
*/ | |
public function getEditButtonAttribute($permission, $route) |
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 | |
namespace App\Models\Blogs\Traits\Attribute; | |
/** | |
* Class BlogAttribute. | |
*/ | |
trait BlogAttribute | |
{ | |
/** |
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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "Slime", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.fontSize": 13, | |
"editor.fontLigatures":true, | |
"editor.cursorStyle": "block", | |
"editor.wordWrap": "on", | |
"editor.fontFamily": "Fira Code", |
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
//install dropbox | |
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf - | |
~/.dropbox-dist/dropboxd |
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
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName server.in | |
ServerAlias server.in | |
<Directory /var/www/html/project/public> | |
Options Indexes FollowSymLinks | |
AllowOverride All | |
Require all granted | |
</Directory> | |
DocumentRoot /var/www/html/project/public/ |
NewerOlder