Skip to content

Instantly share code, notes, and snippets.

View sahilbabu's full-sized avatar
🎯
I may be slow to respond.

Mudassar Ali sahilbabu

🎯
I may be slow to respond.
View GitHub Profile
@sahilbabu
sahilbabu / OccasionalBookingInviteManagerTrait
Last active August 10, 2020 17:27
nanny_nina_exercise_01 (For Better optimization need DB schema and application frontend structure)
<?php
namespace App\Traits;
use App\Models\Booking\Occasional\OccasionalBooking;
use App\Models\Location\Area;
use App\Models\User\UserBookingBlacklist;
use App\Notifications\Booking\Occasional\OccasionalBookingEmptyInvites;
use App\Traits\DistanceTrait;
use App\User;
@sahilbabu
sahilbabu / meta-tags.md
Created July 1, 2019 20:54 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@sahilbabu
sahilbabu / skip-to-check-out.php
Created October 4, 2018 13:12 — forked from micc83/skip-to-check-out.php
Skip cart and redirect to direct checkout on WooCommerce
<?php
/**
* Skip cart and redirect to direct checkout
*
* @package WooCommerce
* @version 1.0.0
* @author Alessandro Benoit
*/
// Skip the cart and redirect to check out url when clicking on Add to cart
@sahilbabu
sahilbabu / nginx.conf
Created May 21, 2018 12:00
nginx Configuration
server {
listen 15.19.51.166:80;
server_name vesta.jagga.com;
root /home/admin/web/vesta.jagga.com/public_html;
index index.php index.html index.htm;
access_log /var/log/nginx/domains/vesta.jagga.com.log combined;
access_log /var/log/nginx/domains/vesta.jagga.com.bytes bytes;
error_log /var/log/nginx/domains/vesta.jagga.com.error.log error;
location / {