This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?> | |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0" | |
targetNamespace="http://schemas.microsoft.com/office/2006/01/customui" | |
xmlns="http://schemas.microsoft.com/office/2006/01/customui" elementFormDefault="qualified" attributeFormDefault="unqualified"> | |
<xsd:annotation> | |
<xsd:documentation> | |
---------------------------------------------------------------------- | |
Schema definition for Ribbon Extensibility | |
---------------------------------------------------------------------- | |
</xsd:documentation> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.badlogic.gdx.backends.lwjgl3; | |
import com.badlogic.gdx.*; | |
import com.badlogic.gdx.backends.headless.*; | |
import com.badlogic.gdx.backends.headless.mock.audio.MockAudio; | |
import com.badlogic.gdx.graphics.g2d.SpriteBatch; | |
import com.badlogic.gdx.utils.Array; | |
import com.badlogic.gdx.utils.Clipboard; | |
import com.badlogic.gdx.utils.ObjectMap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Checks to see if atom.io has a newer stable release than what is currently | |
# installed, and updates it when necessary. | |
# | |
# Dependencies: | |
# | |
# * awk | |
# * curl | |
# * dpkg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* object.watch polyfill | |
* | |
* 2012-04-03 | |
* Last Updated: 2015-03-24 by Travis Haynes | |
* | |
* By Eli Grey, http://eligrey.com | |
* Public Domain. | |
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
D, [2014-02-04T10:18:07.451680 #2783] DEBUG -- : | |
D, [2014-02-04T10:18:07.451863 #2783] DEBUG -- : | |
I, [2014-02-04T10:18:07.452532 #2783] INFO -- : Started GET "/auth/shopify/callback?shop=[filtered]&signature=[filtered]×tamp=1391509087&admin=1" for 10.0.2.2 at 2014-02-04 10:18:07 +0000 | |
I, [2014-02-04T10:18:07.912449 #2783] INFO -- omniauth: (shopify) Setup endpoint detected, running now. | |
I, [2014-02-04T10:18:07.913078 #2783] INFO -- omniauth: (shopify) Callback phase initiated. | |
E, [2014-02-04T10:18:08.485084 #2783] ERROR -- omniauth: (shopify) Authentication failure! invalid_credentials: OAuth2::Error, invalid_request: | |
{"error":"invalid_request"} | |
F, [2014-02-04T10:18:08.487399 #2783] FATAL -- : | |
OAuth2::Error (invalid_request: | |
{"error":"invalid_request"}): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
arecord -D plughw:0,0 \ | |
-f S16_LE \ | |
-c1 \ | |
-r44100 \ | |
-t wav \ | |
latest-computer.wav \ | |
& |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Simple JS Image Gallery</title> | |
<style type="text/css"> | |
#gallery { position: relative; } | |
#gallery > img { position: absolute; left: 0; top: 0; display: none; } | |
#gallery > img:first-child { display: block; } | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem 'shopify_api' | |
gem 'omniauth-shopify-oauth2' | |
gem 'slim-rails' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.Shopify = new EasyXDM.Rpc({ | |
remote: "http://domain.myshopify.com/cart" | |
}, { | |
remote: { | |
getCart: {} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource :shopify_session, only: [:new, :create, :destroy] |
NewerOlder