Skip to content

Instantly share code, notes, and snippets.

View pfurini's full-sized avatar

Paolo Furini pfurini

View GitHub Profile
@pfurini
pfurini / create-plesk-ext
Last active June 4, 2019 08:14
Script to create a Plesk (>17) extension skeleton using my ext-skeleton fork and composer
#!/usr/bin/env bash
#############################################################
# Create a new plesk extension using a modern skeleton
# (composer is required on the PATH)
#
# Usage: create-plesk-ext <EXTENSION_NAME>
#############################################################
composer create-project --repository '{ "type": "vcs", "url": "https://github.com/Nexbit/ext-skeleton" }' \
@pfurini
pfurini / CompositeLookupDelegate.java
Last active June 30, 2017 14:43
CUBA framework: CompositeLookupDelegate class and associated Builder to eliminate boilerplate code for composite screens
/*
* Copyright (c) 2017 Nexbit di Paolo Furini
*
* MIT License
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
set -e
use node 6.9.5
layout node
import {inlineView, bindable} from 'aurelia-framework';
@inlineView('<template><div ref="element"></div><div ref="src" style="display: none"><slot></slot></div></template>')
export class MyElement {
element;
src;
_observer;
attached() {
if (!this.src) return;
@pfurini
pfurini / breezeUtils.ts
Last active May 31, 2016 08:25
A Breeze.js entity manager factory
/**
* Created by Paolo Furini on 01/11/2015.
*/
///<reference path="../../typings/project.d.ts"/>
interface ResolvedEntityPath {
entities: breeze.IStructuralType[];
propertyPath: string;
}
var thinky = require('thinky')();
var type = thinky.type;
var errors = thinky.Errors;
var EntryCategory = thinky.createModel('EntryCategory', {
id: type.string()
});
EntryCategory.pre('save', function(next) {
// some testing
next(new errors.ValidationError('test error'));