Skip to content

Instantly share code, notes, and snippets.

View gdarko's full-sized avatar
Crunching code, one line at a time.

Darko Gjorgjijoski gdarko

Crunching code, one line at a time.
  • Self-employed
  • The Internet
  • 11:17 (UTC +02:00)
View GitHub Profile
@gdarko
gdarko / backup.sh
Created September 4, 2017 10:02
VestaCP / BackupWordPress simple backup tool
#!/bin/bash
site=$1
absdir=`pwd`
fulldir="$absdir/$site/public_html/wp-content/backupwordpress*backups"
pubdir="$absdir/$site/public_html"
echo "Running backup"
echo $fulldir
@gdarko
gdarko / unzip_download.php
Last active May 2, 2022 18:42
Unzip php file
<?php
set_time_limit(0);
function unzipFile( $file, $dir = null ) {
if ( is_null( $dir ) ) {
$dir = dirname( __FILE__ );
}
$dir = $dir . DIRECTORY_SEPARATOR . 'unzipped';
@gdarko
gdarko / style.css
Created October 11, 2017 20:03
WordPress Awesome Comment Styling
ol.comment-list {
list-style: none;
background: #f7f7f7;
padding: 10px;
float: left;
width: 100%;
}
.comment-metadata {
text-align: right;
@gdarko
gdarko / DG_PageTemplater.php
Last active October 20, 2017 07:56
Register WordPress page templates outside the theme
<?php
/**
* This class can be used to register a template outside WordPress theme.
*
* NOTE: This class is fork of the original class which was hardcoded to look for
* the template in the plugin directory. After the modifications i added
* the possiblity new templates to be registered using hook.
*
* @author gdarko
*
@gdarko
gdarko / create_user.sh
Created October 28, 2017 16:22 — forked from divyavanmahajan/create_user.sh
Turnkey OpenVPN - Add new users. It creates two OVPN files - with and without proxy and also generates the URLs to download them. Safely use for existing users - it just creates the OVPN files.
#!/bin/bash -e
fatal() { echo "FATAL: $@" 1>&2; exit 1; }
warn() { echo "WARN: $@"; }
info() { echo "INFO: $@"; }
usage() {
cat <<EOF
Usage: sudo $0 client_or_profile_name
This will create two ovpn files in this directory (proxy and noproxy).
@gdarko
gdarko / methods.php
Last active May 2, 2018 14:23
WordPress REST Route Example
<?php
function dg_get_data() {
return array(
'name' => 'Darko Gjorgjijoski',
'age' => 23
);
}
@gdarko
gdarko / cloudflare-update-record.sh
Last active March 2, 2018 00:20 — forked from benkulbertis/cloudflare-update-record.sh
Cloudflare API v4 Dynamic DNS Update in Bash
#!/bin/bash
# CHANGE THESE
auth_email="user@example.com"
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings
zone_name="$1"
record_name="$2"
# MAYBE CHANGE THESE
ip=$(curl -s http://ipv4.icanhazip.com)
@gdarko
gdarko / general.php
Last active May 31, 2019 23:35
Useful Vanilla PHP and WordPress helper functions.
<?php
// This file contains general useful PHP functions that can be included everywhere.
/**
* Wrapper for writing the interactions to /wp-content/uploads/ file
*
* @param $message
* @param string $filename
*/
function dg_log_write( $message, $filename = "log.txt" ) {
@gdarko
gdarko / gb.sh
Created May 29, 2018 15:25
Quick Geekbench 3 Benchmark for Linux
#!/bin/bash
sudo apt-get install libc6:i386 libstdc++6:i386
wget http://cdn.primatelabs.com/Geekbench-3.4.2-Linux.tar.gz
tar -zxvf Geekbench-3.4.2-Linux.tar.gz
cd dist/Geekbench-3.4.2-Linux/
./geekbench
@gdarko
gdarko / form.php
Last active June 10, 2019 12:11
Upload image using WordPress media uploader
<form method="POST">
<div class="form-row">
<label>Name</label>
<input type="text" placeholder="Enter name">
<div>
<div class="form-row">
<?php
$key = 'profile_picture';
$placeholder = 'https://placehold.it/150x150?text=IMG';
$current_value = get_user_meta(get_current_user_id(), $key, true);