Skip to content

Instantly share code, notes, and snippets.

@mzilverberg
mzilverberg / Installing JIRA locally with MAMP PRO (4.1.1).md
Last active November 9, 2023 20:28
Installing JIRA locally with MAMP PRO (4.1.1)

Installing JIRA locally with MAMP PRO (4.1.1)

Steps taken beforehand

Installing MAMP PRO

  1. Install MAMP PRO
  • Via MAMP PRO > Ports (in the left bar), change the default ports to 80 for Apache, 81 for Nginx and 3306 for MySQL (this can be done easily by clicking the button Set ports to 80, 81, 443, 7443 and 3306)
  • (optional) Change PHP version via MAMP PRO > PHP (in the left bar)
  • (optional) Configure the php.ini settings via
@mzilverberg
mzilverberg / indent-outdent.scss
Last active August 3, 2016 08:39
A basic SCSS mixin for indenting and outdenting content
// Amount of grid columns
$columns = 12;
// Indenting blocks
/*
Parameters:
$side (string) 'left' or 'right' - use an empty string to indent in both directions (default)
$offset (number) amount of columns the content will be indented
*/
@mixin indent($side: "", $offset: 1) {