Skip to content

Instantly share code, notes, and snippets.

View bogdanmoisin's full-sized avatar

Bogdan Moisin bogdanmoisin

View GitHub Profile
@bogdanmoisin
bogdanmoisin / looping-a-triangle
Last active August 29, 2015 14:23
Eloquent Javascript Solutions
//Eloquent javascript book exercises
// Your code here.
//Write a loop that makes seven calls to console.log to output the following triangle:
// #
// ##
// ###
// ####
// #####
// ######
//FizzBuzz
// Your code here.
for ( var i = 0; i <= 100; i++) {
var output = ""
if ( i % 3 == 0 ) {
output += "Fizz";
}
// Chessboard
// Your code here.
var size = 8;
var chess =" ";
for ( var i = 0; i < size; i++ ) {
for ( j = 0 ; j < size; j ++ ) {
if ( (i + j) % 2 == 0 ){
chess += "";
}
// Find minimum of 2 numbers
function min ( x, y ) {
if ( x < y ) {
return x;
}
else {
return y;
//isEven recursive
function isEven( x ) {
if ( x == 0 ) {
return true;
}
else if ( x == 1) {
return false;
var countBs = function(str) {
return str.match(/B/g).length;
};
var countChar = function(str, character) {
var matchExp = new RegExp(character, 'g');
return str.match(matchExp).length;
};
@bogdanmoisin
bogdanmoisin / wp-config.php
Created August 26, 2016 07:17 — forked from ryanjbonnell/wp-config.php
WordPress Config: Use X-Forwarded-For HTTP Header to Get Visitor's Real IP Address
// Use X-Forwarded-For HTTP Header to Get Visitor's Real IP Address
if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
$http_x_headers = explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] );
$_SERVER['REMOTE_ADDR'] = $http_x_headers[0];
}
@bogdanmoisin
bogdanmoisin / gist:4c857432a6ac510946714bc6e9ac6278
Created September 29, 2016 12:28 — forked from mikejolley/gist:1604009
WooCommerce - Add a special field to the checkout, order emails and user/order meta
/**
* Add the field to the checkout
**/
add_action('woocommerce_after_order_notes', 'my_custom_checkout_field');
function my_custom_checkout_field( $checkout ) {
echo '<div id="my_custom_checkout_field"><h3>'.__('My Field').'</h3>';
/**
@bogdanmoisin
bogdanmoisin / Regpx.h
Created June 21, 2017 08:05 — forked from Solution/Regpx.h
My C version of preg_match()
/*
* File: Regxp.h
* Author: solution
*
* Created on 11. listopad 2011, 16:00
*/
#include <stdio.h>
#include <string.h>
#include <pcre.h>
@bogdanmoisin
bogdanmoisin / wysiwyg-meta-box.php
Created July 24, 2017 07:36 — forked from retgef/wysiwyg-meta-box.php
How to add a Wordpress WYSIWYG editor to a meta box.
<?php
define('WYSIWYG_META_BOX_ID', 'my-editor');
define('WYSIWYG_EDITOR_ID', 'myeditor'); //Important for CSS that this is different
define('WYSIWYG_META_KEY', 'extra-content');
add_action('admin_init', 'wysiwyg_register_meta_box');
function wysiwyg_register_meta_box(){
add_meta_box(WYSIWYG_META_BOX_ID, __('WYSIWYG Meta Box', 'wysiwyg'), 'wysiwyg_render_meta_box', 'post');
}