Skip to content

Instantly share code, notes, and snippets.

@minimedj
minimedj / gist:38cda8e1a10f36c083a71d8728b54fc8
Last active December 19, 2017 14:35
DataGrid crash.... Here is video that leads to the crash: https://monosnap.com/file/4qxKIVKLrhZ6mxYa59viGHnmB9H2BC
Date/Time: 2017-12-19 15:29:34 +0100
OS Version: Mac OS X 10.12.6 (Build 16G1036)
Architecture: x86_64h
Report Version: 25
Data Source: Stackshots
Command: datagrip
Path: /Users/USER/Library/Application Support/JetBrains/*/DataGrip.app/Contents/MacOS/datagrip
Version: 2017.3.2 (DB-173.3942.44)
@minimedj
minimedj / functions_custom-cols.php
Created January 30, 2021 18:53 — forked from morgyface/functions_custom-cols.php
WordPress | Advanced Custom Fields | Create custom columns within admin for a custom post type using ACF
<?php
// Change the columns for the releases list screen
function change_columns( $cols ) {
$cols = array(
'cb' => '<input type="checkbox" />',
'featimg' => 'Featured Image',
'excerpt' => 'Excerpt?',
'title' => 'Title',
'artist' => 'Artist',
'catno' => 'Cat#',
@minimedj
minimedj / uwgi-medium-post.ini
Created March 3, 2021 15:07 — forked from sumitsk20/uwgi-medium-post.ini
uwsgi configuration with most commonly sused options for highly scalable website (medium blog post)
[uwsgi]
# telling user to execute file
uid = bunny
# telling group to execute file
gid = webapps
# name of project you during "django-admin startproject <name>"
project_name = updateMe
@minimedj
minimedj / Guide.md
Created October 6, 2021 11:19 — forked from symdesign/Guide.md

Install LAMP

Configure PHP/MySQL for Froxlor

Change the MySQL root password

use mysql;
update user set authentication_string=PASSWORD("PASSWORD!") where User='root';
flush privileges;