Skip to content

Instantly share code, notes, and snippets.

View psgganesh's full-sized avatar
🤖
Currently exploring: DS and ML

Shankar Ganesh psgganesh

🤖
Currently exploring: DS and ML
View GitHub Profile
@psgganesh
psgganesh / music-transcript.vtt
Last active March 22, 2020 04:14
music-transcript.vtt
WEBVTT
Kind: captions
Language: kn
1
00:00:23.104 --> 00:00:25.074
அவா முன்னலா நிகிரன்
2
00:00:25.080 --> 00:00:27.074
@psgganesh
psgganesh / transcript.vtt
Last active March 28, 2020 04:59
transcript.vtt
WEBVTT
Kind: captions
Language: san
1
00:00:05.358 --> 00:00:08.277
सहस्र'शीर्षा पुरु'षः |
2
00:00:09.159 --> 00:00:13.044
@psgganesh
psgganesh / Installation.md
Created November 12, 2019 04:31
Vaniloapp installation

Vaniloapp installation

Create a new project (optional):

composer create-project --prefer-dist laravel/laravel vaniloapp "5.8.*"
cd vaniloapp

Install the vanilo package:

@psgganesh
psgganesh / books.md
Created July 19, 2019 06:16 — forked from ApoTheOne/books.md
Books for software engineers

Books for software engineers

  • Clean Code: A Handbook of Agile Software Craftsmanship
  • The Clean Coder: A Code of Conduct for Professional Programmers
  • The Pragmatic Programmer: From Journeyman to Master
  • The Phoenix Project: A Novel about IT, DevOps, and Helping your Business Win
  • Design Patterns: Elements of Reusable Object-Oriented Software
  • The Imposter's Handbook: A Primer for Self-Taught Programmers
  • Refactoring: Improving the Design of Existing Code
@psgganesh
psgganesh / Verifying my Blockstack ID is secured
Last active June 23, 2019 06:20
Verifying my Blockstack ID is secured
Verifying my Blockstack ID is secured with the address 12Cp9rsfKCeWf1mVvU3wVBkVWaHn2RaMUD https://explorer.blockstack.org/address/12Cp9rsfKCeWf1mVvU3wVBkVWaHn2RaMUD
@psgganesh
psgganesh / .env.travis
Created May 25, 2019 04:22 — forked from gilbitron/.env.travis
Laravel 5 Travis CI config
APP_ENV=testing
APP_KEY=SomeRandomString
DB_CONNECTION=testing
DB_TEST_USERNAME=root
DB_TEST_PASSWORD=
CACHE_DRIVER=array
SESSION_DRIVER=array
QUEUE_DRIVER=sync
@psgganesh
psgganesh / laravel_facades.md
Created February 27, 2019 02:04 — forked from poing/laravel_facades.md
Laravel Facades

Understanding Facades in Laravel

What's a Facade?

The Laravel explination, shown below is confusing.

Facades provide a "static" interface to classes that are available in the application's service container. Laravel ships with many facades which provide access to almost all of Laravel's features. Laravel facades serve as "static proxies" to underlying classes in the service container, providing the benefit of a terse, expressive syntax while maintaining more testability and flexibility than traditional static methods.

Many examples use Cache::get('key') to demonstrate how a Facade works. Comparing the following code to the utility that a Facade provides.

@psgganesh
psgganesh / ConfigServiceProvider.php
Created October 10, 2018 03:56 — forked from chuckrincon/ConfigServiceProvider.php
Load all your lumen config files painless.
<?php
namespace App\Providers;
use Illuminate\Support\Facades\App;
use Illuminate\Support\ServiceProvider;
use Illuminate\Contracts\Filesystem\FileNotFoundException;
class ConfigServiceProvider extends ServiceProvider
{
@psgganesh
psgganesh / learning-resources.md
Created September 5, 2018 15:08 — forked from imaginate/learning-resources.md
Resources for learning about technical topics like computer science, programming, web development, algorithms, and more.

Grow Your Mind!

  • Computer Science: Offers in-depth resources for learning and improving your skills with computer science, programming, algorithms, data structures, and more.
  • Operating Systems: Covers operating systems and their tools.
  • Web Development: Offers abundant resources for topics like browsers, CSS, DOM, HTML, JavaScript, Node.js, PHP, and Python. It contains many different manuals, tools, libraries, shortcuts, and more.

Computer Science

CS Education

@psgganesh
psgganesh / custom-vs-code-fonts.md
Last active March 17, 2025 01:28
Custom fonts for vs code!