Skip to content

Instantly share code, notes, and snippets.

apiVersion: v1
kind: Service
metadata:
creationTimestamp: 2015-11-11T22:15:31Z
labels:
app: echoheaders
name: echoheadersy
namespace: default
resourceVersion: "201626"
selfLink: /api/v1/namespaces/default/services/echoheadersy
@paralin
paralin / hackmit.js
Created August 13, 2015 18:27
Hack MIT source code
var app = angular.module("reg", ["ui.router", "ngAnimate"]);
app.config(["$httpProvider", function(e) {
e.interceptors.push("AuthInterceptor")
}]).run(["AuthService", "Session", function(e, t) {
var r = t.getToken();
r && e.loginWithToken(r)
}]), angular.module("reg").config(["$stateProvider", "$urlRouterProvider", "$locationProvider", function(e, t, r) {
t.otherwise("/404"), e.state("login", {
url: "/login",
templateUrl: "src/login/login.html",
@paralin
paralin / keybase.md
Created July 31, 2015 20:49
My Keybase Identity Proof

Keybase proof

I hereby claim:

  • I am paralin on github.
  • I am paralin (https://keybase.io/paralin) on keybase.
  • I have a public key whose fingerprint is E867 7D6F 7E3A 4B47 5521 F7D9 F68A C063 6450 0AE3
@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;
}
@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",
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 / 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",
@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 / 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 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>