Skip to content

Instantly share code, notes, and snippets.

View RStrydom's full-sized avatar
😁

Renier Strydom RStrydom

😁
View GitHub Profile
{
"info": {
"_postman_id": "93fd74cb-b0d9-445a-9fbd-c501e4b449d3",
"name": "Postman API",
"description": "The Postman API allows you to programmatically access data stored in Postman account with ease.\n\nThe easiest way to get started with the API is to click the [_Run in Postman_](https://www.getpostman.com/docs/run_button_ux) button present at the top of the documentation page and use the Postman App to send requests.\n\n\n# Overview\n\n1. You need a valid <a href=\"#authentication\">API Key</a> to send requests to the API endpoints. You can get your key from the [integrations dashboard](https://go.postman.co/integrations/services/pm_pro_api).\n\n1. The API has an access <a href=\"#rate-limits\">rate limit</a> applied to it.\n\n1. The Postman API will only respond to secured communication done over HTTPS. HTTP requests will be sent a `301` redirect to corresponding HTTPS resources.\n\n1. Response to every request is sent in [JSON format](https://en.wikipedia.org/wiki/JSON). In case the API request r
{
"info": {
"_postman_id": "d990f9b7-98d3-47d3-9131-4866ab9c6df2",
"name": "Notion API",
"description": "Hello and welcome!\n\nTo make use of this API collection collection as it's written, please duplicate [this database template](https://www.notion.so/8e2c2b769e1d47d287b9ed3035d607ae?v=dc1b92875fb94f10834ba8d36549bd2a).\n\n[Create an integration](https://www.notion.so/my-integrations) to retrieve an API token, add your database and page ID's as variables in the collection, and start making your requests!\n\nFor our full documentation, including sample integrations and guides, visit [developers.notion.com](developers.notion.com)\n\nNeed more help? Join our [developer community on Slack](https://join.slack.com/t/notiondevs/shared_invite/zt-lkrnk74h-YmPRroySRFGiqgjI193AqA/)",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json",
"_exporter_id": "0"
},
"item": [
{
{
"info": {
"_postman_id": "d990f9b7-98d3-47d3-9131-4866ab9c6df2",
"name": "Notion API",
"description": "Hello and welcome!\n\nTo make use of this API collection collection as it's written, please duplicate [this database template](https://www.notion.so/8e2c2b769e1d47d287b9ed3035d607ae?v=dc1b92875fb94f10834ba8d36549bd2a).\n\n[Create an integration](https://www.notion.so/my-integrations) to retrieve an API token, add your database and page ID's as variables in the collection, and start making your requests!\n\nFor our full documentation, including sample integrations and guides, visit [developers.notion.com](developers.notion.com)\n\nNeed more help? Join our [developer community on Slack](https://join.slack.com/t/notiondevs/shared_invite/zt-lkrnk74h-YmPRroySRFGiqgjI193AqA/)",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "3648057"
},
"item": [
{
{
"swagger":"2.0",
"info":{
"title":"Swagger Sample App built using pedestal-api",
"version":"2.0",
"description":"Find out more at https://github.com/oliyh/pedestal-api"
},
"produces":[
"application/json"
],
### Keybase proof
I hereby claim:
* I am rstrydom on github.
* I am renitent (https://keybase.io/renitent) on keybase.
* I have a public key ASAUdunvm5daW6pK1WBSw7v1nBhYm64be1oC-8JbhqOW6Qo
To claim this, I am signing this object:
@RStrydom
RStrydom / config.json
Last active August 29, 2015 14:24 — forked from anonymous/config.json
Bootstrap Config for Trellidor
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "darken(#428bca, 6.5%)",
"@brand-success": "#5cb85c",
@RStrydom
RStrydom / fatguy.js
Created April 8, 2015 12:00
Script for finding elements that are causing overflow scrolling
var docWidth = document.documentElement.offsetWidth;
[].forEach.call(
document.querySelectorAll('*'),
function(el) {
if (el.offsetWidth > docWidth) {
console.log(el);
}
}
);
@RStrydom
RStrydom / intoFolder
Created November 24, 2014 09:44
File stuffing
#!/bin/bash
for FILE in `ls`
do
# remove the last dot and subsequent chars, then add new ext
DIR="${FILE%%.*}"
DIR=${DIR,,}
mkdir -p "$DIR"
mv "$FILE" "$DIR"
done
@RStrydom
RStrydom / b3_5columns.css
Last active August 29, 2015 14:08
Bootstrap 3 - 5 columns
/*Bootstrap 3: 5 columns*/
.col-lg-five,
.col-md-five,
.col-sm-five,
.col-xs-five {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
@RStrydom
RStrydom / panel_aware.js
Last active August 29, 2015 14:05
jQuery patch to add active state for Bootstrap 3 collaps/Accordian
$('.panel-heading a').on('click', function() {
$(this).closest('.panel-group').find('.panel').removeClass('active');
if ($(this).closest('.panel').find('.panel-collapse').hasClass('in')) {
$(this).closest('.panel').removeClass('active');
}else{
$(this).closest('.panel').addClass('active');
}
});