Skip to content

Instantly share code, notes, and snippets.

@tenbits
tenbits / functions.php
Created July 15, 2019 12:35 — forked from lukecav/functions.php
Add Global Trade Identification Numbers (GTINs) to WooCommerce products
/**
* Render the Global Trade Identification Number (GTIN) meta field.
*/
function woocommerce_render_gtin_field() {
$input = array(
'id' => '_gtin',
'label' => sprintf(
'<abbr title="%1$s">%2$s</abbr>',
_x( 'Global Trade Identification Number', 'field label', 'my-theme' ),
_x( 'GTIN', 'abbreviated field label', 'my-theme' )
@tenbits
tenbits / Ubuntu-swap.md
Last active May 20, 2019 09:15
Ubuntu: Enable swap
<html>
<script>
window.onload = function() {
nativeInterface.hideSplashScreen()
}
</script>
<style>
.with-css {
pointer-events: none;
public class MultiStream : Stream
{
private readonly List<Stream> _streams;
public MultiStream(params Stream[] streams)
{
_streams = streams.ToList();
}
public override void Flush()
import '/bower_components/spectrum/spectrum.css';
import '/bower_components/spectrum/spectrum.js';
define ColorPickButton {
slot domInsert () {
this.$.find('.color-picker').spectrum({
cancelText: 'Abbrechen',
chooseText: 'Auswählen',
allowEmpty: true,
var x = new RegExp( "/" )
console.log(x.test( "/hello" ));
var serializedRegexParser = /^\/(.+)\/(\w+)?$/
var serializedRegex = x.toString();
console.log('serializedRegex:', serializedRegex);
var matches = serializedRegexParser.exec(serializedRegex);
var [full, regexString, regexFlags] = matches;
@tenbits
tenbits / kudu-iis.md
Last active March 21, 2016 11:19
Kudu
@tenbits
tenbits / Class.Store.js
Last active February 4, 2016 11:15
Class Store. Same interface for XHR Transport and MongoDB driver
// atma-class
// common node.js and browser
var Article = Class('Article', {
Base: Class.Serializable({
date: Date
}),
_id: null,
date: null,
body: '',
@tenbits
tenbits / Deferred
Last active August 29, 2015 13:58
Deferred
function Deferred(){}
(function(){
Deferred.prototype = {
_isAsync: true,
_done: null,
_fail: null,
_always: null,