Skip to content

Instantly share code, notes, and snippets.

View bvipul's full-sized avatar
🎯
Focusing

Vipul Basapati bvipul

🎯
Focusing
  • GlobalSignIn Pvt. Ltd.
  • Ahmedabad, India
  • X @bvipul9523
View GitHub Profile
@bvipul
bvipul / settings.json
Created October 30, 2018 09:41
VSCode Settings
{
"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",
<?php
class NumberOfBikes {
public function __construct() {
$this->bikesCount = 0;
}
public function iHaveABike() {
$this->bikesCount += 1;
@bvipul
bvipul / virtualHost.conf
Last active December 24, 2020 13:20
For Adding virtual hosts file for Laravel projects
<VirtualHost *:80>
ServerAdmin admin@server.in
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/