Skip to content

Instantly share code, notes, and snippets.

View johannlilly's full-sized avatar
🔬
Researching

Johann Lilly 李光 يوهان ليل Джон Лилли johannlilly

🔬
Researching
View GitHub Profile
@johannlilly
johannlilly / ui-architecture-compendium.md
Last active January 26, 2024 10:32
The purpose of this document is to articulate considerations, tools, and methodologies for UI architectures with regard to the code, UI design, and project management.

Keybase proof

I hereby claim:

  • I am johannlilly on github.
  • I am jlilly (https://keybase.io/jlilly) on keybase.
  • I have a public key ASDOtb6JGa2lPyaG-e2oXak6rTwaht1oYZZPYAVcxzKYIQo

To claim this, I am signing this object:

@johannlilly
johannlilly / stellar-app.js
Created July 15, 2018 21:01 — forked from michielmulders/stellar-app.js
Stellar Lumens JavaScript SDK
import express from 'express'
import bodyParser from 'body-parser'
import rp from 'request-promise'
import Stellar from 'stellar-sdk'
/* Initialize app and configure bodyParser */
const port = process.env.PORT || 4000
const app = express()
app.use(bodyParser.json())
@johannlilly
johannlilly / bootstrap_4_responsive_media_query.css
Last active December 9, 2016 14:53
Bootstrap 4 Grid System Breakpoints CSS Media Query Template
/* Bootstrap 4 Grid System Breakpoints CSS Media Query Template
* v. 1.00.00
* Note: breakpoints according to bootstrap gridlines and common phone screen CSS pixels according to Google's Chrome inspector
* Arranged to create a hierarchical priority towards more specific queries
* Licensed under the MIT/X11 License (http://opensource.org/licenses/MIT) */
@media screen and (max-width:1199px){}
@media screen and (max-width:991px){}
@media screen and (max-width:767px) {}
/* xs */
@johannlilly
johannlilly / bootstrap_3_responsive_media_query.css
Last active December 9, 2016 03:47
Bootstrap 3 Grid System Breakpoints CSS Media Query Template
/* Bootstrap 3 Grid System Breakpoints CSS Media Query Template
* v. 1.00.00
* Note: breakpoints according to bootstrap gridlines and common phone screen CSS pixels according to Google's Chrome inspector
* Arranged to create a hierarchical priority towards more specific queries
* Licensed under the MIT/X11 License (http://opensource.org/licenses/MIT) */
@media screen and (max-width:1199px){}
@media screen and (max-width:991px){}
/* xs */
@media screen and (max-width:767px){}