Skip to content

Instantly share code, notes, and snippets.

@pmkay
pmkay / mailgun-config.md
Created September 24, 2018 00:59 — forked from mrabbani/mailgun-config.md
Laravel Mailgun Setup

Mailgun setup

  • install Guzzle HTTP library : composer require guzzlehttp/guzzle
  • [sign up to mailgun] (http://www.mailgun.com)
  • Go to Domains tab and click on domains
  • You will find the necessary data for .env setup
    • MAIL_DRIVER=mailgun
    • MAIL_HOST=smtp.mailgun.org
    • MAIL_PORT=587
    • MAIL_USERNAME=[email protected]
  • MAIL_PASSWORD=502fd951f7------------------------
@pmkay
pmkay / allow-cors.md
Created September 24, 2018 21:20
Alow cors for Fonts,
@pmkay
pmkay / WindowsSetup.md
Created September 25, 2018 18:00 — forked from valeryan/WindowsSetup.md
Local WSL Setup

Windows Development Environment Setup

This document outlines the steps I take to setup my environment on windows using WSL. This requires being on the windows 10 Creative update or greater with an Ubuntu 16 installed as WSL.

Windows Setup Prerequisites

  1. Install WSL.
  2. Install Terminus and setup to use bash for windows (optional).
  3. Install Acrylic DNS Proxy.
  4. Download WSL Startup Scripts.
  5. Install Xming (optional).
@pmkay
pmkay / Post.PHP
Created October 4, 2018 16:55
Creating a Pivot Table in Laravel Example
class Post
{
public function tags()
{
return $this->belongsToMany(Tag::class)->withTimestamps;
}
}
@pmkay
pmkay / .eslintrc.js
Last active November 23, 2018 21:41
Personal .eslintrc.js file
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
env: {
browser: true,
node: true,
es6: true,
@pmkay
pmkay / keep-fork-updated.md
Last active March 31, 2020 21:24 — forked from CristinaSolana/gist:1885435
how to keep a fork updated

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
@pmkay
pmkay / RouteServiceProvider.php
Last active January 6, 2023 09:21
Using multiple keys for route model binding in Laravel
<?php
public function boot()
{
Route::bind('course', function ($value) {
return Course::where('slug', $value)->orWhere(function ($query) use ($value) {
if (is_numeric($value)) {
$query->where('id', $value);
}
@pmkay
pmkay / gist:ca353df0b3254f7f2e337f035fe0457a
Last active July 14, 2019 01:16
Update Security Patches only for Ubuntu

List Security Updates

To display security updates only , sudo unattended-upgrade --dry-run -d

Or

apt-get -s dist-upgrade| grep "^Inst" | grep -i security

apt-get -s dist-upgrade | grep "^Inst"

@pmkay
pmkay / nuxt.config.js
Created September 24, 2019 14:20
Nuxt Axios Proxy Module (passing some data in server side when fetching api)
{
axios: {
prefix: '/api/',
proxy: true,
},
proxy: {
'/api': {
target: apiUrl,
pathRewrite: { '^/api/': '' },
headers: { 'X-API-KEY': apiKey },
@echo off
net session >nul 2>&1
if %errorLevel% == 0 (
@echo on
mountvol X: /s
copy %WINDIR%\System32\SecConfig.efi X:\EFI\Microsoft\Boot\SecConfig.efi /Y
bcdedit /create {0cb3b571-2f2e-4343-a879-d86a476d7215} /d "DebugTool" /application osloader
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} path "\EFI\Microsoft\Boot\SecConfig.efi"
bcdedit /set {bootmgr} bootsequence {0cb3b571-2f2e-4343-a879-d86a476d7215}
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} loadoptions DISABLE-LSA-ISO,DISABLE-VBS