Skip to content

Instantly share code, notes, and snippets.

View nspalo's full-sized avatar

Noel Palo nspalo

View GitHub Profile
@nspalo
nspalo / HandsAndFingersMeme.sql
Last active July 14, 2023 21:40
A Meme regarding Hands and Fingers translated to SQL LOL
/**
* A Meme regarding Hands and Fingers translated to SQL LOL
* - MySQL v7.4.13
*/
/**
* Create Database
*/
CREATE DATABASE IF NOT EXISTS `hands_fingers_meme`
CHARACTER SET `utf8mb4`
@nspalo
nspalo / deployment_guide.md
Created August 12, 2021 14:13 — forked from vicgonvt/deployment_guide.md
Deployment Guide for Ubuntu Server from Scratch with Laravel
@nspalo
nspalo / Info for PHPStorm.md
Created July 12, 2021 08:01 — forked from Pen-y-Fan/Info for PHPStorm.md
PHPStorm Tips, Tricks and setup

PHPStorm

PhpStorm Tips, ticks and standard setup

  1. Tips and Tracks for PHPStorm (PHPStorm Tips and Tricks.md)
  2. Standard setup for PHP projects (Standard.md)
@nspalo
nspalo / solid-principles.md
Last active May 5, 2023 21:20
SOLID Principles

SOLID PRINCIPLE

Clean, Reusable, Maintainable, Testable, and Extendable Code

  • S Single Responsibility Principle
  • O Open-Close Principle
  • L Liskov's Substitution Principle
  • I Interface Segregation Principle
  • D Dependency Inversion Principle

What is SOLID?

In object-oriented computer programming, SOLID is a mnemonic acronym for five design principles

@nspalo
nspalo / laravel-with-doctrine-set-up.md
Last active February 8, 2021 09:14
Laravel with Doctrine Set-up

Laravel 5.8 with Doctrine 1.4

Installation and configuration procedures for laravel and doctrine The following packages that will be installed:

  • laravel 5.8
  • laravel-doctrine orm 1.4
  • laravel-doctrine acl 1.0
  • laravel-doctrine migrations 1.1
  • laravel-doctrine extensions 1.0
  • laravel-doctrine extensions gedmo 2.4
@nspalo
nspalo / laravel-lumen-with-doctrine-set-up.md
Last active February 7, 2021 14:40
Laravel Lumen with Doctrine Set-Up

Laravel-Lumen 5.8 with Doctrine 1.4 Set-up

Installation procedure for web api development using laravel lumen with doctrine
The following packages that will be installed:

  • laravel-lumen 5.8
  • laravel-doctrine/orm 1.4
  • laravel-doctrine migrations 1.1
  • laravel-doctrine extensions 1.0
  • doctrine-extensions gedmo 2.4

Installation and Configuration Procedures: