Skip to content

Instantly share code, notes, and snippets.

View jekkilekki's full-sized avatar

Aaron Snowberger jekkilekki

View GitHub Profile
@jekkilekki
jekkilekki / lifeData.csv
Last active January 25, 2017 05:10
Data for D3.js Radar Chart
section twenty14 twenty15 twenty16
Physical 3 4 6
Mental 5 4 6
Spiritual 4 3 2
Career 2 5 6.5
Financial 4 2 7
Family 5 6 4
Relationships 3 5.5 5
Lifestyle 4 5 3
@jekkilekki
jekkilekki / _.md
Last active January 19, 2017 11:26
D3 Pie Chart
@jekkilekki
jekkilekki / _.md
Last active January 19, 2017 10:54
Bar Chart
@jekkilekki
jekkilekki / .block
Last active January 19, 2017 01:01
Lynda.com Author & Courses Bar chart
license: gpl-3.0
@jekkilekki
jekkilekki / .block
Last active January 18, 2017 09:55
D3 Pie Chart - Year in Review
license: gpl-3.0
@jekkilekki
jekkilekki / data.xml
Last active January 14, 2017 11:05
D3 Data Visualization data
<?xml version="1.0" encoding="utf-8"?>
<data>
<dat id='1990'><top>82</top><middle>5</middle><bottom>9</bottom></dat>
<dat id='1991'><top>47</top><middle>91</middle><bottom>11</bottom></dat>
<dat id='1991'><top>48</top><middle>60</middle><bottom>11</bottom></dat>
<dat id='1992'><top>61</top><middle>96</middle><bottom>97</bottom></dat>
<dat id='1993'><top>40</top><middle>13</middle><bottom>9</bottom></dat>
<dat id='1994'><top>99</top><middle>32</middle><bottom>23</bottom></dat>
<dat id='1995'><top>93</top><middle>7</middle><bottom>37</bottom></dat>
<dat id='1996'><top>62</top><middle>41</middle><bottom>95</bottom></dat>
@jekkilekki
jekkilekki / update_wp_pass_phpmyadmin.sql
Created January 9, 2017 08:11
How to Update your WP Password via phpMyAdmin (SQL)
UPDATE `wp_users` SET `user_pass`= MD5('yourpassword') WHERE `user_login`='yourusername';
@jekkilekki
jekkilekki / dot-border.svg
Last active December 18, 2016 11:09
SVG to create true round-dotted borders
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jekkilekki
jekkilekki / 01-react-syntax.jsx
Last active December 15, 2016 12:32
Basic ReactJS work
// React Native syntax
var MyComponent = React.createClass({
render() {
return <div>
<h1>Hello World</h1>
<p>This is my first React component!</p>
</div>
}
})
@jekkilekki
jekkilekki / custom-wp-hooks.php
Created October 16, 2016 06:38
Create custom Action and Filter hooks for your plugins in WordPress
<?php
/**
* Learn how to create custom Action and Filter hooks.
*
* @link https://www.lynda.com/PHP-tutorials/Creating-custom-hooks/508212/547129-4.html
*/
/**
* 1. Custom FILTER Hook ------------------------------
*/