Skip to content

Instantly share code, notes, and snippets.

View erayerdin's full-sized avatar

Eray Erdin (&mut self) erayerdin

View GitHub Profile
@erayerdin
erayerdin / analysis_options.yaml
Created December 13, 2022 06:46 — forked from rydmike/analysis_options.yaml
RydMike lints v2.0.0 - Personal preferences and my starting point for my Dart & Flutter linter rules setup
# RydMike LINTER Preferences v2.0.0
#
# Get this file here: https://gist.github.com/rydmike/fdb53ddd933c37d20e6f3188a936cd4c
#
# We include and activate all lint rules, later below we disable the not used or desired ones.
# You can find a list of all lint rules to put in your all_lint_rules.yaml file here:
# https://dart-lang.github.io/linter/lints/options/options.html
#
# For a full comparison of all lint rules settings in rule styles listed below, please see this
# sheet: https://docs.google.com/spreadsheets/d/1Nc1gFjmCOMubWZD7f2E4fLhWN7LYaOE__tsA7bf2NjA
@erayerdin
erayerdin / postgres-setup.md
Created March 5, 2020 00:01 — forked from jackvial/postgres-setup.md
Laravel Postgres Setup

Postgres Setup

Step 1: Install PostgreSQL

Here are the installation steps on Ubuntu (this installation will also work on any Debian-based distribution):

  1. Open a terminal window.
  2. Issue the command sudo apt-get install postgresql.
  3. Type the sudo password necessary to give you admin rights and hit Enter.
  4. Allow apt to pick up any necessary dependencies.