Skip to content

Instantly share code, notes, and snippets.

ERROR 2018-05-23 16:06:24.192 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:24.192 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:26.311 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:26.311 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:33.412 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:33.413 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:37.146 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:37.146 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:37.386 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
ERROR 2018-05-23 16:06:37.386 ( sql/tagtable.cpp @ 395 ) Unknown Tag record key: 1004
DEBUG 2018-05-23 16:12:56.825 ( gui/shortcutkeys.cpp @ 246 ) Unable to open file for reading or file does not exist.
ERROR 2018-05-23 16:12:56.826 ( exits/exitmanager.cpp @ 55 ) "Script filename is blank. Disabling exit " "ExitPoint_LoadNote"
ERROR 2018-05-23 16:12:56.826 ( exits/exitmanager.cpp @ 67 ) "Script file doesn't exist or cannot be read. Disabling exit " "ExitPoint_LoadNote"
ERROR 2018-05-23 16:12:56.826 ( exits/exitmanager.cpp @ 55 ) "Script filename is blank. Disabling exit " "ExitPoint_SaveNote"
ERROR 2018-05-23 16:12:56.826 ( exits/exitmanager.cpp @ 67 ) "Script file doesn't exist or cannot be read. Disabling exit " "ExitPoint_SaveNote"
ERROR 2018-05-23 16:12:56.826 ( exits/exitmanager.cpp @ 55 ) "Script filename is blank. Disabling exit " "ExitPoint_ImportKeep"
ERROR 2018-05-23 16:12:56.826 ( exits/exitmanager.cpp @ 67 ) "Script file doesn't exist or cannot be read. Disabling exit " "ExitPoint_ImportKeep"
ERROR 2018-05-23 16:12:56.826 ( exits/exitmanager.cpp @ 55 ) "Script filename is bl
@jpgreth
jpgreth / html-comment-via-layout-xml-in-magento2.xml
Created February 6, 2018 12:58 — forked from Quinten/html-comment-via-layout-xml-in-magento2.xml
Sometimes you just need an empty container in Magento 2. But when a container is empty (contains no blocks) it is not rendered. This way you can add a html comment inside the container.
<block class="Magento\Framework\View\Element\Text" name="comment.placeholder">
<arguments>
<argument name="text" xsi:type="string"><![CDATA[<!-- -->]]></argument>
</arguments>
</block>
@jpgreth
jpgreth / darktable-workflow.md
Created July 3, 2017 07:58 — forked from eimajtrebor/darktable-workflow.md
My Darktable Workflow

My Darktable Workflow

Basic workflow

  • Copy a film roll (a directory of RAW images) into a directory on the machine running Darktable.
  • Import the film roll into Darktable.
  • Review the images using lighttable mode and remove any images that are beyond repair.
  • Take a snapshot of the image so we can do a before and after comparison.
  • Adjust the white balance.
  • Exposure compensation and recovery.
@jpgreth
jpgreth / ModelController.php
Created February 21, 2017 12:55 — forked from oliverthiele/ModelController.php
Debugging errors like "An error occurred while trying to call Vendor\ExtKey\Controller\ModelController->showAction() " in extbase extensions
/**
* A special action which is called if the originally intended action could
* not be called, for example if the arguments were not valid.
*
* The default implementation sets a flash message, request errors and forwards back
* to the originating action. This is suitable for most actions dealing with form input.
*
* We clear the page cache by default on an error as well, as we need to make sure the
* data is re-evaluated when the user changes something.
*
@jpgreth
jpgreth / web-servers.md
Created February 6, 2017 16:34 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@jpgreth
jpgreth / gogs
Created February 2, 2017 09:12 — forked from infostreams/gogs
Debian startup (init.d) script for gogs.io
#! /bin/sh
### BEGIN INIT INFO
# Provides: gogs
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Git repository manager Gogs
# Description: Starts and stops the self-hosted git repository manager Gogs
### END INIT INFO
@jpgreth
jpgreth / README-Template.md
Created September 28, 2016 09:54 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisities

Requirements for deployment

  • ssh (generate key and put on server)
  • rsync must be available on both machines (deployment host and target host)
  • PHP cli binary must be available on both machines (deployment host and target host)
  • composer must be available on deployment host

Needed info for each target system:

  • deploy directory
@jpgreth
jpgreth / ExistsValidator.php
Created July 7, 2016 13:31 — forked from bwaidelich/ExistsValidator.php
TYPO3 Flow – Unique & Exists Validators
<?php
namespace My\Package\Validation;
use TYPO3\Flow\Persistence\RepositoryInterface;
class ExistsValidator extends \TYPO3\Flow\Validation\Validator\AbstractValidator {
/**
* @var array
*/