Skip to content

Instantly share code, notes, and snippets.

<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../paper-toast/paper-toast.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/iconsets/av-icons.html">
<link rel="import" href="../notification-elements/notification-alert.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@paralin
paralin / designer.html
Created August 15, 2014 21:59
designer
<link rel="import" href="../topeka-elements/category-images.html">
<link rel="import" href="../core-icon/core-icon.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
@paralin
paralin / designer.html
Created August 16, 2014 23:18
designer
<link rel="import" href="../paper-slider/paper-slider.html">
<link rel="import" href="../paper-ripple/paper-ripple.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../paper-radio-group/paper-radio-group.html">
<link rel="import" href="../paper-radio-button/paper-radio-button.html">
<polymer-element name="my-element">
<template>
@paralin
paralin / designer.html
Created August 19, 2014 17:55
designer
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@paralin
paralin / designer.html
Created August 20, 2014 22:34
designer
<link rel="import" href="../google-map/google-map.html">
<link rel="import" href="../google-map/google-map-search.html">
<link rel="import" href="../paper-input/paper-input.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
@paralin
paralin / replay.md
Last active August 29, 2015 14:11
Documentation v1 for the dotareplay api

Submissions

POST -> /api/submissions/create

To make a submission submit the following data (shown here in JSON). Please note that the contents of these fields are simply the value, not the min/max values. These are just there to show you the properties used to store the data in the database.

{
 "_id": "5FkMTSAnEzBWipBsN",
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.IO;
using System.Linq;
using System.Net;
using SteamKit2;
namespace nora.clara
{
@paralin
paralin / game_state.json
Created May 22, 2015 05:24
Dumped player data for HW Assassin
{
"gamestate": "1",
"in_game": "1",
"kills": [
{
"game_id": "1",
"kill_id": "326",
"killer_id": "253",
"killer_image_url": "https://docs.google.com/uc?id=0B7Y7udBKiHZqX1UteXZENnduVnc&export=download",
"killer_name": "Leily Arzy",
@paralin
paralin / styles.css
Created July 11, 2015 02:08
CSS for my XSS site
@import url(http://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(http://fortawesome.github.io/Font-Awesome/assets/font-awesome/css/font-awesome.css);
*, *:before, *:after {
box-sizing: border-box;
-webkit-transition: all cubic-bezier(0.37, 0.15, 0.54, 1.99) 0.5s;
-moz-transition: all cubic-bezier(0.37, 0.15, 0.54, 1.99) 0.5s;
-ms-transition: all cubic-bezier(0.37, 0.15, 0.54, 1.99) 0.5s;
-o-transition: all cubic-bezier(0.37, 0.15, 0.54, 1.99) 0.5s;
transition: all cubic-bezier(0.37, 0.15, 0.54, 1.99) 0.5s;
}