Dribbble shot to code: Circular minimal countdown by Fahd Idaghdour (http://dribbble.com/shots/1243065-Circular-minimal-countdown)
Used plugin: http://rendro.github.io/easy-pie-chart/
| /* | |
| Simple WINDOWS keylogger by jkrix 2013. | |
| User may distribute and modify source code but MUST keep this top commented section in the source code! | |
| Very important note: | |
| To be used for educational use and not for malicious tasks! | |
| I will NOT be held responsible for anything silly you may do with this! | |
| */ | |
| #include <stdio.h> |
Dribbble shot to code: Circular minimal countdown by Fahd Idaghdour (http://dribbble.com/shots/1243065-Circular-minimal-countdown)
Used plugin: http://rendro.github.io/easy-pie-chart/
| <?php | |
| // From https://gist.github.com/cliffordp/ab1f7c4d95723ee6f892/, a fork of https://gist.github.com/jesseeproductions/2b1af6527b7029eaea6e | |
| // References: | |
| // https://theeventscalendar.com/support/forums/topic/ical-only-pushing-1-month-at-a-time/ | |
| // https://theeventscalendar.com/support/forums/topic/how-users-can-subscribe-to-my-events-calendar-in-their-personal-calendars/#post-1022932 | |
| // https://tribe.uservoice.com/forums/195723-feature-ideas/suggestions/3777092-subscribe-to-calendar-via-ical | |
| /* | |
| * The Events Calendar Get Events for 1 Year from Today in iCal Export File | |
| * add coding to child theme's functions.php | |
| * Tested works with The Events Calendar v3.12 and v4.0 |
| Coding: | |
| http://jobs.readwriteweb.com/ # supports RSS to get jobs | |
| http://angel.co/jobs # supports APIs to get jobs | |
| http://startuply.com/ # supports RSS to get jobs | |
| http://jobs.37signals.com/ # supports RSS to get jobs | |
| http://www.dice.com/ # supports RSS and JSON to search for jobs | |
| http://jobs.github.com/ # supports RSS | |
| http://www.craigslist.org # supports RSS and XML to post and read jobs | |
| http://www.reddit.com/ # supports posting posts through bots, and reading RSS | |
| http://news.ycombinator.com/jobs # supports RSS for reading jobs |
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |
| { | |
| "name": "wordpress-search-react", | |
| "version": "1.0.0", | |
| "description": "Powering WordPress Search with React and REST API", | |
| "main": "assets/js/public.js", | |
| "scripts": { | |
| "build": "webpack", | |
| "watch": "webpack --watch", | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, |
| <?php | |
| /** | |
| * Enqueue scripts and styles. | |
| * | |
| * @since 1.0.0 | |
| */ | |
| function ja_global_enqueues() { | |
| wp_enqueue_style( | |
| 'jquery-auto-complete', |
| #!/bin/bash -e | |
| clear | |
| echo "============================================" | |
| echo "WordPress Install Script" | |
| echo "============================================" | |
| echo "Database Name: " | |
| read -e dbname | |
| echo "Database User: " | |
| read -e dbuser | |
| echo "Database Password: " |
| <?php | |
| /* | |
| * 1. Go to Settings > Permalinks and select any page as home page | |
| * Then use the following code | |
| * | |
| * You can add those codes in your functions.php in the theme, if you think your theme won’t be changed. | |
| * Otherwise mu-plugins is the best solution. To use mu-plugins, go to /wp-content/ and find the folder with name 'mu-plugins'. | |
| * If there is no folder in that name, then create a folder, name it 'mu-plugins', create a file inside that, | |
| * give any name you like and paste the code in there. You don't need to activate that plugin. Mu-plugins means must use plugins, | |
| * so it will be activated automatically always. If you use mu-plugins then add a php start tag at the beginning of the code. |