Skip to content

Instantly share code, notes, and snippets.

View dingo-d's full-sized avatar
🏠
Working from home

Denis Žoljom dingo-d

🏠
Working from home
View GitHub Profile
@dingo-d
dingo-d / pointers.js
Last active December 13, 2018 15:35
Main pointers class. Pointer init is located here: https://gist.github.com/dingo-d/0ad8d67f9b88e96d8ae8cc1c8c450784
/* global pointerLocalization */
export default class Pointers {
constructor() {
this.pointersList = {};
this.openedPointers = JSON.parse(localStorage.getItem('openedPointers')) || [];
this.openPointer = this.openPointer.bind(this);
this.setLabel = this.setLabel.bind(this);
this.initPointers = this.initPointers.bind(this);
}
@dingo-d
dingo-d / pointer-init.js
Created December 13, 2018 15:34
Init file for the pointers. Pointers script is located here: https://gist.github.com/dingo-d/a83092146c1660383cb5c3483d71cdab
/* global pointerLocalization */
import Pointers from './pointers';
$(function() {
const pointers = new Pointers();
// Filter the current context pointers
const pointersInContext = Object.values(pointerLocalization.pointers)
.filter((pointer) => pointer.context === pointerLocalization.currentScreen);
<?php
/**
* Pointers manger file
*
* @since 1.0.0
* @package Plugin
*/
namespace Plugin;
@dingo-d
dingo-d / travis-local.txt
Last active November 7, 2018 16:33
Locally setup travis on docker. Taken from: https://github.com/travis-ci/travis-ci/issues/9709 Used for twentynineteen travis checks.
docker run --name travis-debug -dit travisci/ci-garnet:packer-1512502276-986baf0 /sbin/init
docker exec -it travis-debug bash -l
su - travis
rvm install 2.3.0
rvm use 2.3.0
cd builds
git clone --branch issue_9709_fix https://github.com/ekivolowitz/travis-build.git
cd travis-build
gem install travis
travis # to create ~/.travis
@dingo-d
dingo-d / prevent-duplicates.php
Created October 26, 2018 11:50
Prevent upload of the same files in media library
<?php
//in media.php class
/**
* Checks if the file with the same name exists in the media library, and renames it if it does
*
* @param array $file An array of data for a single file.
* @return array $file Modified array of data for a single file if the file name is the same.
*/
public function intercept_file_upload( $file ) {
// If, for some odd reason, the file name is empty don't bother with it and let WP handle it.
@dingo-d
dingo-d / font-weight.txt
Created October 9, 2018 07:39
Font weight number to words
100 - Thin
200 - Extra Light, Ultra Light
300 - Light
400 - Normal, Book, Regular
500 - Medium
600 - Semi Bold, Demi Bold
700 - Bold
800 - Extra Bold, Ultra Bold
900 - Black, Heavy
@dingo-d
dingo-d / permission.php
Created October 2, 2018 14:38
An example of a custom permission callback
<?php
public function user_get_check( \WP_REST_Request $request ) {
// To avoid CORS issue.
if ( $request->get_method() === 'OPTIONS' ) {
return true;
}
$auth_array = $request->get_headers();
/* global tinymce */
(function() {
const columnsTinyMCEButton = (function(){
return function(tinyMCE) {
tinyMCE.PluginManager.add( 'columns', function( editor, url ) {
// Add Button to Visual Editor Toolbar
editor.addButton('columns', {
title: 'Insert Column',
cmd: 'columns',
@dingo-d
dingo-d / validate-acf-wysiwyg.php
Created August 30, 2018 08:45
Validate WYSIWYG character limit
<?php
/**
* Validate WYSIWYG field so that it outputs only 250 characters
*
* Targets the overview field in the documentation only.
*
* @param bool $valid Check the validity of the field.
* @param string $value The field value.
* @param array $field Array with the field details.
@dingo-d
dingo-d / Preferences.sublime-settings
Created August 30, 2018 07:55
A sample config of my Sublime Text 3 Preferences
{
"always_show_minimap_viewport": true,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
},
{
"characters": "$>:\\",