Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am citygent on github.
  • I am jimmywhite (https://keybase.io/jimmywhite) on keybase.
  • I have a public key ASAbMGnB-v1yXWmT5rrPWTXuoj9o4e2SzA7gcyJ0sqGz-wo

To claim this, I am signing this object:

@citygent
citygent / URL for SF Case to RS-Admin.md
Last active May 7, 2020 13:46
API Interface for Review in RS-Admin.

User will follow a link from a Salesforce Case to rs-admin.

rs-admin frontend currently lacks ability to query for Organisations by a geoshard ready org_drn_id. It uses the older Orderweb Org_ID.

Ideally the Salesforce Case link would use rs-admin style "Orderweb Org IDs", and the mapping of an OrderWeb Org_ID to a geoshard ready Org_Drn_ID would happen on the rs-admin backend by calling out to rs-accounts first.

Proposed Link structure:

Salesforce review link:

@citygent
citygent / restful_routes.md
Last active September 2, 2015 09:07 — forked from jemboh/restful_routes.md
7 Restful Routes
URL HTTP Verb Action
/photos/ GET index
/photos/new GET new
/photos POST create
/photos/:id GET show
/photos/:id/edit GET edit
/photos/:id PATCH/PUT update
/photos/:id DELETE destroy
@citygent
citygent / fade_in_backgroun_image
Last active September 2, 2015 09:11 — forked from alexpchin/fade_in_backgroun_image
Fade in background image
// HTML
<div class="background-image"></div>
// CSS
@-webkit-keyframes fade-in {
0% { opacity: 0; }
100% { opacity: 1; }
}
.background-image {