Built with blockbuilder.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('BASE_URL','https://metrics.pluralsight.com'); | |
define('APPLICATION_ID','...'); | |
define('APPLICATION_KEY','...'); | |
$ch = curl_init(BASE_URL.'api/get_ticket/'); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, array('application_id'=>APPLICATION_ID, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('BASE_URL','metircs.mycompany.com'); | |
define('APPLICATION_ID','...'); | |
define('APPLICATION_KEY','...'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
#Game of Thrones Battles
This was made using D3.js and the Chris Albon's "The War of the Five Kings" Dataset, which can be found here: https://github.com/chrisalbon/war_of_the_five_kings_dataset.
Find more on my site bensullins.com
Built with blockbuilder.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pptx import Presentation | |
courseName = 'D3 The Big Picture' | |
courseSlug = 'd3-big-picture' | |
data = { | |
"slides": [ | |
{"module_num": 1, "slide_title": "What is D3", "slide_layout": 0, "slide_type": "title"}, | |
{"module_num": 1, "slide_title": "D3 History", "slide_layout": 2, "slide_type": "normal"}, |
Built with blockbuilder.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- checkout client data | |
select * | |
from clients; | |
-- how many rows do we have? | |
-- 35,749 | |
select count(1) | |
from sales_all_years | |
-- inner join from sales |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If using JS as a source for loggly and Netlify | |
# Follow instructions on loggly to tell it to use a proxy | |
# Then on Netlify include a file in _site with the following | |
# This will redirect all your loggly entries and get around adblockers | |
/loggly/* https://logs-01.loggly.com/:splat 200 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |