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
<script> | |
(function(){ | |
var schema= | |
{ | |
"@context": "http://schema.org", | |
"@type": "BlogPosting", | |
"mainEntityOfPage": { | |
"@type": "WebPage", | |
"@id": {{Page URL}} | |
}, |
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
Show hidden characters
// API******************************* | |
// ********************************** | |
// EndPoint: `/available-batches/{batchId}` | |
// RequestMethod: GET | |
// PayLoad: month={month}&year={year} | |
// ********************************** | |
// Response************************** | |
// ********************************** |
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
CREATE TABLE TIMEDIMENSION( | |
SKDATE varchar(20) not null, | |
Date varchar(20) not null , | |
CalendarDay int not null, | |
CalendarMonth int not null, | |
CalendarYear int not null, | |
CalendarQuarter int not null, | |
DayNameLong nvarchar(10) not null, | |
DayNameShort nvarchar(10) not null, | |
DayNumberOfWeek int not null, |
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
<?php | |
// Gist for Stack OverFlow answer: https://stackoverflow.com/a/67467388/7610978 | |
//THE API IS ACCESSED HERE USING *Service Account*, you may use other authentication ways as per requirements. | |
// For more clear reference to the parameters along with a description, this is really helpful: https://developers.google.com/drive/api/v3/reference/permissions#methods | |
namespace App\Http\Controllers; | |
use Google_Client; | |
use Google_Service_Drive; |