Skip to content

Instantly share code, notes, and snippets.

View nikosolihin's full-sized avatar

Niko Solihin nikosolihin

  • Grand Rapids, MI
View GitHub Profile
@nikosolihin
nikosolihin / repeater-meta.php
Created June 26, 2018 02:21 — forked from izzygld/repeater-meta.php
Hooking up ACF repeater fields to the shema.
//acf stats repeater
array (
'key' => 'field_5a27ee3a83076',
'label' => 'Stats',
'name' => 'stats',
'type' => 'repeater',
'instructions' => '',
'required' => 0,
'conditional_logic' => 0,
'wrapper' => array (
@nikosolihin
nikosolihin / Carousel.js
Created March 16, 2018 01:25 — forked from JoshBarr/Carousel.js
Flickity React integration
@nikosolihin
nikosolihin / curl.md
Created January 29, 2018 04:59 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@nikosolihin
nikosolihin / ID.js
Created November 7, 2017 15:22
ID - a unique ID/name generator for JavaScript
// Generate unique IDs for use as pseudo-private/protected names.
// Similar in concept to
// <http://wiki.ecmascript.org/doku.php?id=strawman:names>.
//
// The goals of this function are twofold:
//
// * Provide a way to generate a string guaranteed to be unique when compared
// to other strings generated by this function.
// * Make the string complex enough that it is highly unlikely to be
// accidentally duplicated by hand (this is key if you're using `ID`
@nikosolihin
nikosolihin / bling.js
Created September 7, 2017 05:40 — forked from paulirish/bling.js
bling dot js
/* bling.js */
window.$ = document.querySelectorAll.bind(document);
Node.prototype.on = window.on = function (name, fn) {
this.addEventListener(name, fn);
}
NodeList.prototype.__proto__ = Array.prototype;
@nikosolihin
nikosolihin / custom-search-acf-wordpress.php
Created May 3, 2017 15:44 — forked from charleslouis/custom-search-acf-wordpress.php
PHP - Wordpress - Search - wordpress custom search function that encompasses ACF/advanced custom fields and taxonomies and split expression before request
<?php
/**
* [list_searcheable_acf list all the custom fields we want to include in our search query]
* @return [array] [list of custom fields]
*/
function list_searcheable_acf(){
$list_searcheable_acf = array("title", "sub_title", "excerpt_short", "excerpt_long", "xyz", "myACF");
return $list_searcheable_acf;
}
@nikosolihin
nikosolihin / post-receive
Created March 26, 2017 12:14
post-receive
#!/bin/bash
set -x
sudo /var/www/deploy.sh
@nikosolihin
nikosolihin / deploy.sh
Last active March 26, 2017 12:10
deploy.sh
#!/bin/bash
set -x
# App directories
APP_WEB_DIR="/var/www/html/wp-content/themes/client"
APP_GIT_DIR="/var/www/.git/"
# Stop server
echo "Stopping nginx..."
sudo systemctl stop nginx
@nikosolihin
nikosolihin / tinymce_wordpress.txt
Created January 25, 2017 02:27 — forked from kentbrew/tinymce_wordpress.txt
How to turn off TinyMCE in Wordpress
In wordpress/wp-includes/class-wp-editor.php, look for the tinymce setting:
public static function parse_settings($editor_id, $settings) {
$set = wp_parse_args( $settings, array(
...
'tinymce' => true, // load TinyMCE, can be used to pass settings directly to TinyMCE using an array()
...
) );
Set it to false and you should be good to go.
@nikosolihin
nikosolihin / rAF.js
Created December 3, 2016 06:50 — forked from paulirish/rAF.js
requestAnimationFrame polyfill
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel
// MIT license
(function() {
var lastTime = 0;
var vendors = ['ms', 'moz', 'webkit', 'o'];