- Export your Git log to a .txt file from your project directory with
git log --numstat >filename.txt
- Upload and import your Git log .txt file into eazyBI
- Create or import a report definition. Examples below
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
/* 1 */ | |
{ | |
"_id" : ObjectId("585b117d111849c160443616"), | |
"searchString" : "chicken%20sandwich", | |
"searchResults" : [ | |
{ | |
"name" : "Seasoning Mix, Honey BBQ Chicken Glaze", | |
"levenshteinDistance" : 34, | |
"hit" : { | |
"item_id" : "51c549ef97c3e6efadd6020e", |
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
year | team | |
---|---|---|
2017 | CityMD Racing | |
2017 | NY Vision Group/Fuoriclasse Racing | |
2017 | Blue Ribbon-Pennell Venture Partners | |
2017 | Houlihan Lokey | |
2017 | Foundation | |
2017 | e2Value | |
2017 | Axis Theatre | |
2017 | Sid's Bikes NYC | |
2017 | Radical Media |
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
{ | |
"business_discovery": { | |
"followers_count": 267793, | |
"media_count": 1205, | |
"media": { | |
"data": [ | |
{ | |
"id": "17858843269216389" | |
}, | |
{ |
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
export default [ | |
{ | |
client: "Puma", | |
name: "MBBQ Factory", | |
company: "KBSP", | |
description: "PUMA online custom shoe website, offering thousands of unique design combinations and user boutiques.", | |
collaborators: [{ | |
link: "https://figurea.net/PUMA-Factory" | |
name: "figurea, Creative Direction & Design" | |
}] |
- simplifies pagination
- pass structure, next page, previous page, etc should be kept in mind
- JSON serialization must apply to everything
- use .values() for QuerySet, wrap result with list() e.g. for Paginator
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
[ | |
{ | |
"id": 1, | |
"name": "Daniels", | |
"email": "[email protected]", | |
"message": "Sit anim amet minim aliqua sit aute cupidatat ea nisi tempor cupidatat velit nisi tempor." | |
}, | |
{ | |
"id": 2, | |
"name": "Hamilton", |
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
process.on('unhandledRejection', (reason, promise) => { | |
console.log(`Unhandled rejection at ${promise}`) | |
console.log(`Message ${reason}`) | |
}) | |
const willThrowErrors = async () => { | |
return new Promise(function shouldBeCaught(resolve, reject) { | |
reject(`I should be caught and handled with!`) | |
}) | |
} |
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
async function sleep(num) { | |
return new Promise((resolve) => { | |
setTimeout(resolve, num) | |
} | |
} | |
async function execute() { | |
await sleep(10) | |
await stepOne() | |
} |
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
async function sleep(num) { | |
return new Promise((resolve) => { | |
setTimeout(resolve, num) | |
} | |
} | |
async function execute() { | |
await sleep(10) | |
await stepOne() | |
} |