Skip to content

Instantly share code, notes, and snippets.

View trevorlinton's full-sized avatar
👨‍👩‍👧‍👦

Trevor Linton trevorlinton

👨‍👩‍👧‍👦
View GitHub Profile
@trevorlinton
trevorlinton / jwks.json
Last active September 20, 2019 04:52
Test JWKS
{
"alg": "RS256",
"kty": "RSA",
"use": "sig",
"n": "toC1Xe0FZZC6P9ADCbskb-OkynP92SIiu9j7dBVLc7vJ19q-7hxIAJDhluMx_ws33b51UM2Uk2JfPcElYoOQmsXj2OYmCx5vmucyHFb7KlakPZYNFPE25yHJ_2XY-HAtDEIjEnMhHnVsEZdliZTziXW7Bmgtj-yIfcKkSkC0M10C8YH37nh4Ny_ZeuxWuAh0lmKlb5RPKbPYGcp2qFaUrSCuytW19ivNpxBLLLfeZOUoCfQWjbuH6KuZth61cQ8M3LpZ821YAv3PARW7Bo-vFc2CidOd-Ubac6yqGV_pEtO5_GL7foECm1nCBlRJejCtnySHHkNWD3jnE0enFIDfiQ",
"e": "AQAB",
"kid": "G3EnbZXTmjxLv6_vfmDDzx7VSDDxkvLsQv6zInguH9U"
}

Akkeris

Individual Contributor License Agreement ("Agreement") v1.0

Thank you for your interest in the Akkeris. In order to clarify the intellectual property license granted with Contributions from any person or entity, we ust have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Akkeris and its users; it does not change your rights to use your own Contributions for any other purpose.

You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Akkeris. In return, the Akkeris shall not use Your Contributions in a way that is contrary to the public benefit or inconsistent with the spirit of open source initiatives. Except for the license granted herein to Akkeris and recipients of software distributed by Akkeris, You reserve all right, title, and interest in and to Your Contributions.

@trevorlinton
trevorlinton / README.md
Created May 15, 2020 20:16
Great programming challenges

Build a pagination (e.g., 1,2,4,...)

  1. For any amount of items
  2. Variable amount of items on each page
  3. Show at maximum 11 items in the pagination. (Use ... to summarize missing items).
  4. Must have a previous button that always shows (that's disabled if nothing is previous)
  5. Always show the next button that always shows (that's disabled if nothing is next)
  6. Always show the first and second page (if they're available)
  7. Always show the last page and second to last page (if they're available)
  8. Always show the page before the current page (if its available)
  9. Always show hte page after the current page (if its available)