Skip to content

Instantly share code, notes, and snippets.

View Gr3gorywolf's full-sized avatar
🏠
Working from home

Gregory Cabral De Los Santos Gr3gorywolf

🏠
Working from home
View GitHub Profile
@NodusCursorius
NodusCursorius / discordgams.csv
Last active September 28, 2019 15:18
Discard Gams
4K Textures DLC gwent/gwent.exe
7 Days to Die 7daystodie_eac.exe
60 Seconds! 60seconds.exe
100% Orange Juice 100 orange juice/100orange.exe
140 140/140.exe
911 Operator 911 operator/911.exe
A Hat in Time win64/hatintimegame.exe
A New Beginning - Final Cut anb.exe
A Story About My Uncle win32/asamu-win32-shipping.exe
AER Memories of Old aer/aer.exe
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use File;
class MakeViewCommand extends Command
{
/**
@jamestalmage
jamestalmage / forward.md
Last active April 9, 2024 17:21
Using Firebase to Authenticate to Google Drive

Note: There is a lot of information here, but if I have provided a link, it is probably something you should click on and read. OAuth is a complex enough subject on it's own, and hacking these two services together only adds to it.

Even so, I have found Firebase's API to be simpler than almost any other OAuth solution I have explored. When all is said and done, the important bits of code related to authentication is actually less than 10 lines. If you have ever tried to implement your own OAuth flow before, you know how amazing that is.

In the end, it may be worth using Firebase for authentication, even if that's the ONLY thing you use it for.