Skip to content

Instantly share code, notes, and snippets.

View leoauri's full-sized avatar

Leo Auri leoauri

View GitHub Profile
@leoauri
leoauri / nb_blnkter
Last active April 19, 2020 10:37
Script to blank code from jupyter notebooks, leaving comments, outputs & markup intact, for practice
#!/usr/bin/env python3
# coding: utf-8
import json
import fire
from pathlib import Path
def blankt_cells(cells):
@leoauri
leoauri / golden-rules-of-software-development
Last active November 15, 2019 19:17
Lean Coffee Golden Rules Of Software Development
1. Deploy to production at least once a day.
2. If it hurts, do it more often.
3. Small batches; always have it working.
4. Focus on one piece at a time.
5. Don't use a debugger.
6. Take breaks.
7. Teach to understand and revisit it.
8. Validate your assumptions (especially of your understanding of fundamentals).
9. Did you understand the requirements? What is the problem?
@leoauri
leoauri / basiq-fetch-accounts.php
Last active July 5, 2018 12:12
Demonstrate the usage of the Basiq API PHP SDK for the test data. Creates a connection to the API and fetches accounts data.
<?php
// --------------------------------------------------------------------------------------
//
// Demonstrate the usage of the Basiq API PHP SDK for the test data
// https://github.com/basiqio/basiq-sdk-php
// Creates a connection to the API and fetches accounts data
//
// Install SDK with:
// composer require basiqio/basiq-sdk-php