README is empty
This file contains hidden or 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" encoding="UTF-8" standalone="no"?> | |
| <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication"> | |
| <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> | |
| <listEntry value="/Vertx-Server"/> | |
| </listAttribute> | |
| <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> | |
| <listEntry value="4"/> | |
| </listAttribute> | |
| <stringAttribute key="org.eclipse.debug.core.source_locator_id" value="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector"/> | |
| <stringAttribute key="org.eclipse.debug.core.source_locator_memento" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <sourceLookupDirector> <sourceContainers duplicates="true"> <container memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;javaProject name=&quot;GLWT&quot;/&gt;&#10;" typeId="org.eclipse.jdt.launc |
This file contains hidden or 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 java.text; | |
| import com.google.gwt.i18n.client.NumberFormat; | |
| public class DecimalFormat { | |
| private NumberFormat nf; | |
| public DecimalFormat(String pattern) { | |
| this.nf = NumberFormat.getFormat(pattern); |
This file contains hidden or 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
| public static native void log(String text) /*-{ | |
| if ($wnd.console && $wnd.console.log) { | |
| $wnd.console.log(text); | |
| } | |
| }-*/; |
This file contains hidden or 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
| //no vars on this stuff - lets me customize the window/document objects | |
| document = jsdom(); | |
| window = document.createWindow(); | |
| window.hasBigEars = true; | |
| //this is/was client side js that expects certain window properties to be there - eg, hasBigEars | |
| var app = require('./js-that-loves-big-ears.js'); | |
This file contains hidden or 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
| GIT | |
| remote: git://github.com/spree/spree_auth_devise.git | |
| revision: b554f307e5aa887110a70d54f8967c284f881375 | |
| branch: 3-0-stable | |
| specs: | |
| spree_auth_devise (3.0.0) | |
| devise (~> 3.4.1) | |
| devise-encryptable (= 0.1.2) | |
| json | |
| multi_json |
This file contains hidden or 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
| /* | |
| resetting main.scss stuff | |
| */ | |
| input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea { | |
| height: auto; | |
| background-color: #ffffff; | |
| } | |
| /* | |
| input[type="text"], |
This file contains hidden or 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> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> | |
| <title>Carto Map</title> | |
| <link rel="stylesheet" href="https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.15/themes/css/cartodb.css"/> | |
| <script src="https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.15/cartodb.js"></script> | |
| <style> | |
| html, body, #map { |
This file contains hidden or 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
| 0x62658C20146168741c1aB8B94Af8882c29b9A11C |
This file contains hidden or 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
| pragma solidity ^0.4.11; | |
| import 'zeppelin-solidity/contracts/token/MintableToken.sol'; | |
| contract LPToken is MintableToken { | |
| string public name = "Frontier LP Token"; | |
| string public symbol = "FPLP"; | |
| uint256 public decimals = 18; | |
| } |