Skip to content

Instantly share code, notes, and snippets.

View stchr's full-sized avatar

Simon Stücher stchr

  • Digistore24 GmbH
  • Siegen, Germany
View GitHub Profile
{
"swagger": "2.0",
"info": {
"version": "1.0",
"title": "ShipStation Developer Portal",
"description": "# Integrating with ShipStation\n\nShipStation strives to streamline shipping for online sellers, no matter where they sell their products online. We are continuously adding new marketplaces, shopping carts, and integration tools, because we know the e-commerce space is growing. \nAs a result, we’ve worked hard to provide developer resources to build custom integrations with ShipStation. If you’re interested in becoming a partner of ours, drop us a line by [filling out this form](http://www.shipstation.com/partners/shipstation-api-custom-store/) and we’ll get in touch.\n\nThere are two methods to integrate with ShipStation:\n\n* Custom Store Integration\n\n* ShipStation API\n\n## Custom Store Integration\n\nLooking for a more 1-to-1 relationship between ShipStation and your chosen selling platform? The Custom Store Integration is the ticket. Our custom store integration is just like any of
{
"openapi": "3.0.0",
"info": {
"title": "ShipStation Developer Portal",
"description": "# Integrating with ShipStation\n\nShipStation strives to streamline shipping for online sellers, no matter where they sell their products online. We are continuously adding new marketplaces, shopping carts, and integration tools, because we know the e-commerce space is growing. \nAs a result, we’ve worked hard to provide developer resources to build custom integrations with ShipStation. If you’re interested in becoming a partner of ours, drop us a line by [filling out this form](http://www.shipstation.com/partners/shipstation-api-custom-store/) and we’ll get in touch.\n\nThere are two methods to integrate with ShipStation:\n\n* Custom Store Integration\n\n* ShipStation API\n\n## Custom Store Integration\n\nLooking for a more 1-to-1 relationship between ShipStation and your chosen selling platform? The Custom Store Integration is the ticket. Our custom store integration is just like any of our other selling ch
@stchr
stchr / config.json
Created April 22, 2016 20:43 — forked from anonymous/config.json
Bootstrap Customizer Config
{
"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(#D11E00, 6.5%)",
"@brand-success": "#5cb85c",
@stchr
stchr / gist:1260db16e64efeb19b96
Last active August 29, 2015 14:10
regex replace to give class method calls and new object instances a backslash for global namespace
class methods
search: (?<![\\A-Z])([A-Z]+::{1,1}[A-Z]+\()
replace: \\$1
class constants
search: (?<![\\A-Z])([A-Z]+::{1,1}[A-Z]+)
replace: \\$1
new instances
search: (new )(?<![\\A-Z])([A-Z]+\()
@stchr
stchr / index.html
Created May 28, 2014 12:12
JS i18n
<div class="info">
<p data-localize="_welcomeText">Herzlich willkommen!</p>
<a href="#" data-localize="_showPDF">PDF anzeigen</a>
</div>
@stchr
stchr / languageswitch.php
Created September 25, 2012 14:32
Language Switch for Kirby
<?php foreach (c::get('lang.available') as $lang): ?>
<a<?php if($lang == c::get('lang.current')) echo ' class="active"' ?> href="<?php echo url($page->uid(), $lang) ?>">
<img src="<?php echo url('assets/images/flags/' . $lang . '.png') ?>" alt="" /><?php echo $lang ?>
</a>
<?php endforeach ?>