Skip to content
View AJLeonardi's full-sized avatar
Block or Report

Block or report AJLeonardi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
AJLeonardi/README.md

Pinned Loading

  1. yield_curve_repo yield_curve_repo Public

    An application which provides a simple visual representation of the daily yield curves with the ability to also drill down into historical trends.

    JavaScript

  2. Simple Button Group for Materialize Simple Button Group for Materialize
    1
    .btn-group {
    2
      position: relative;
    3
      display: -ms-inline-flexbox;
    4
      display: inline-flex;
    5
      vertical-align: middle;
  3. grayscale-theme grayscale-theme Public

    Forked from jeromelachaud/grayscale-theme

    Modified Jekyll theme based on Grayscale Start Bootstrap theme

    CSS

  4. a simple javascript class to enable ... a simple javascript class to enable client-side searching across a list of elements on a page.
    1
    /*
    2
    Setup:
    3
    4
    1. Add a unique class to the "container" of the list of items you'll be searching across. The Container must be the closest parent to the elements (e.g. an unordered list)
    5
    2. Ensure that each element that will be considered for search has a unique ID
  5. AJLeonardi AJLeonardi Public

    This is the source code for my web page: AJLeonardi.co

    HTML

  6. A Javascript class that sorts Grids ... A Javascript class that sorts Grids by clicking on the column header. Specifically this one was created to sort grids created using MaterializeCSS Collections. Sorting supports strings, numbers, and dates and will sort ascending and descending. Demo here: https://jsfiddle.net/AJLeonardi/etjwq7uc/
    1
    /*
    2
    Supports grids created with ordered and unordered lists. Specifically this was created to support sorting 
    3
    1. In your ul, include a list of dictionaries in this format - representing the sortable items: [{"name": "<key name of your column e.g. 'Date_of_Birth'>", "data_type": "<number, string, or date>"}, ....]
    4
    2. Within the li containing your column headers, each html element representing the header of a sortable column should have a "data-header" attribute which is set to the corresponding "name" <div class="column" data-header="Date_of_Birth">
    5
    3. Within each subsequent li, the li should contain a data attribute for each sortable item's value in this format: <li class='item' data-Date_of_Birth='10/10/2001'>