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
Shader "Unlit/Billboard" | |
{ | |
Properties | |
{ | |
_MainTex ("Texture", 2D) = "white" {} | |
} | |
SubShader | |
{ | |
Tags{ "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" "DisableBatching" = "True" } |
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
/[Ll]ibrary/ | |
/[Tt]emp/ | |
/[Oo]bj/ | |
/[Bb]uild[s]/ | |
/Assets/Plugins/ | |
/Assets/Characters/ | |
/Assets/Environments/ | |
# Autogenerated VS/MD solution and project files | |
[Ee]xported[Oo]bj/ |
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
" enable Pathogen plugin | |
call pathogen#infect() | |
call pathogen#helptags() | |
" enable syntax highlighting | |
syntax on | |
" enable line numbers | |
set number |
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
/* | |
* ===================================================================================== | |
* | |
* Filename: termina.c | |
* | |
* Description: termina mobile investigation unit | |
* | |
* Version: 1.0 | |
* Created: 04/19/2014 19:57:17 | |
* Revision: none |
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
/* Made by ciara.io for Meteor Academy */ | |
body { | |
color: #333; | |
font-family: sans-serif; | |
font-size: 115%; | |
line-height: 24px; | |
} | |
footer { |
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
// Utilities.js from Larry Ullman's Modern JavaScript | |
var U = { | |
$: function(id) { | |
'use strict'; | |
if (typeof id == 'string') { | |
return document.getElementById(id); | |
} | |
}, // end $() |
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
# FizzBuzz with CoffeeScript | |
for n in [1..100] | |
if n % 3 is 0 and n % 5 is 0 then console.log "FizzBuzz" | |
else if n % 3 is 0 then console.log "Fizz" | |
else if n % 5 is 0 then console.log "Buzz" | |
else console.log n |
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
<snippet> | |
<content><![CDATA[ | |
doctype html | |
html lang="en" | |
head | |
meta charset="UTF-8" | |
title $1 | |
= stylesheet_link_tag "application", :media => "all" | |
= javascript_include_tag "application" |
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
# An attempt to scrape students.flatironschool.com and retrieve student names, links, taglines, and excerpts | |
# and create a Hash out of the information | |
require "open-uri" | |
require "nokogiri" | |
url = "http://students.flatironschool.com" | |
doc = Nokogiri::HTML(open("#{url}")) | |
names = "h2" | |
hrefs = ".one_third a" |
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
# Time is on my side | |
def seconds_in_minutes(int) | |
int * 60 | |
end | |
def minutes_in_hours(int) | |
int * 60 | |
end |
NewerOlder