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
    
  
  
    
  | using System.Web; | |
| using System.Web.Optimization; | |
| using BundleTransformer.Core.Transformers; | |
| namespace Project.App_Start { | |
| public class BundleConfig { | |
| public static void RegisterBundles(BundleCollection bundles) { | |
| var styles = new Bundle("~/bundles/stylesheets") | |
| .Include( | |
| "~/Assets/Styles/*.css", | 
  
    
      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
    
  
  
    
  | using Newtonsoft.Json; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Configuration; | |
| using System.IdentityModel.Tokens; | |
| using System.Linq; | |
| using System.Net.Http; | |
| using System.Security.Cryptography.X509Certificates; | |
| using System.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
    
  
  
    
  | //Set up scene, camera, and renderer | |
| var scene = new THREE.Scene; | |
| var camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 10000 ); | |
| var renderer = new THREE.CanvasRenderer(); | |
| renderer.setClearColor( 0xf0f0f0 ); | |
| renderer.setSize( window.innerWidth, window.innerHeight ); | |
| document.body.appendChild( renderer.domElement ); | |
| var video = document.createElement('video'); | 
  
    
      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
    
  
  
    
  | $ -> | |
| result = [] | |
| count = 0 | |
| # Loop through each reel | |
| $('.reel-outer'). each -> | |
| $this = $(this) | |
| index = $this.index() | |
| spinPlus = 0 | 
  
    
      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
    
  
  
    
  | using OfficeOpenXml; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Text; | |
| namespace WebUI.Infrastructure | |
| { | |
| public static class StringUtils | |
| { | |
| private static string DuplicateTicksForSql(this string s) | 
  
    
      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
    
  
  
    
  | Copyright (C) 2012 Justin Poliey <[email protected]> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WIT | 
  
    
      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
    
  
  
    
  | <div> | |
| <h1>Tweetbox</h1> | |
| <form id="my-tweetbox"> | |
| <p><textarea name="tweet">Write your tweet...</textarea></p> | |
| <p><input type="submit" name="submit" value="Tweet!" /></p> | |
| </form> | |
| </div> | |
| <div> | |
| <h1>County Tweetbox</h1> | 
  
    
      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
    
  
  
    
  | from jinja2.environment import create_cache | |
| # blah blah blah | |
| app.jinja_env.cache = create_cache(1000) | |
| # blah blah blah | |
| app.run() | 
  
    
      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
    
  
  
    
  | using System; | |
| using UnityEngine.Events; | |
| using UnityEngine.EventSystems; | |
| namespace UnityEngine.UI | |
| { | |
| /// <summary> | |
| /// Simple toggle -- something that has an 'on' and 'off' states: checkbox, toggle button, radio button, etc. | |
| /// </summary> | |
| [AddComponentMenu("UI/Toggle", 35)] | 
  
    
      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
    
  
  
    
  | var zlib = require('zlib'); | |
| var compress = function(req, res, result) { | |
| var acceptEncoding = req.headers['accept-encoding']; | |
| if (!acceptEncoding) { acceptEncoding = ''; } | |
| if (acceptEncoding.match(/\bdeflate\b/)) { | |
| zlib.deflate(result, function(err, result) { | |
| if (!err) { | |
| res.writeHead(200, { 'content-encoding': 'deflate' }); | |
| res.send(result); |