6mm MDF > 6.5mms speed / 35% power / 30% corner power
3mm MDF > 16mms speed / 30% power / 25% corner power
6mm MDF > 8ms speed / 40% power / 35% corner power
3mm Plywood > 20mms speed / 30% power / 25% corner power
1.5mm Acrylic > 20mms speed / 40% power / 35% corner power
3mm Acrylic > 15mms speed / 40% power / 35% corner power
5mm Acrylic > 5mms speed / 50% power / 45% corner power
Thin Card > 150mms speed / 20% power / 15% corner power
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- GZip static file content. Overrides the server default which only compresses static files over 2700 bytes --> | |
<httpCompression directory="%SystemDrive%\websites\_compressed" minFileSizeForComp="1024"> | |
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" /> | |
<staticTypes> | |
<add mimeType="text/*" enabled="true" /> | |
<add mimeType="message/*" enabled="true" /> | |
<add mimeType="application/javascript" enabled="true" /> | |
<add mimeType="application/json" enabled="true" /> | |
<add mimeType="*/*" enabled="false" /> | |
</staticTypes> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
propertyEditors: [ | |
{ | |
alias: "ButtonStylePicker", | |
name: "Button Style Picker", | |
editor: { | |
view: "dropdown" | |
}, | |
isParameterEditor: true, | |
defaultConfig: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# OLED Library for Raspberry Pi | |
# | |
# Author : Matt Brailsford/Robert Coward/Paul Carpenter (based on driver by Matt Hawkins/) | |
# Site : http://www.raspberrypi-spy.co.uk | |
# http://www.pcserviceslectronics.co.uk | |
# http://www.circuitbeard.co.uk | |
# | |
# Date : 06/03/2015 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using System.Web.Mvc; | |
using System.Web.WebPages; | |
namespace UmbracoCms.Web | |
{ | |
public static class HtmlHelperExtensions | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module("umbraco").config(["$provide", function ($provide) { | |
$provide.decorator("entityResource", function ($delegate, $q) { | |
var getByIdsFn = $delegate.getByIds; | |
$delegate.getByIds = function (ids, type) { | |
var result = getByIdsFn.apply(null, arguments); | |
var loadRegionInfo = function(data, idx, def) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Xml; | |
using Microsoft.Web.XmlTransform; | |
using Umbraco.Core.IO; | |
using Umbraco.Core.Logging; | |
using umbraco.interfaces; | |
namespace Our.Umbraco.Packaging | |
{ | |
public class ConfigTransformations : IPackageAction |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var vatService = DependencyContainer.Instance.Resolve<IVatGroupService>(); | |
var vatGroups = vatService.GetAll(storeId); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var config = Model.Content.GetPropertyValue<uTwitModel>(twitterOAuthPropertyAlias, true); | |
var config = Model.Content.AncestorOrSelf(1).GetPropertyValue<uTwitModel>(twitterOAuthPropertyAlias) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Swap live with staging | |
https://msdn.microsoft.com/en-us/library/azure/ee460814.aspx | |
https://msdn.microsoft.com/en-us/library/azure/ee460783.aspx | |
Backup new live database | |
Restore backup to temp db name | |
Delete current staging db | |
Rename temp db to staging db name |