View StairMaster_ConstructionScript
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
Begin Object Class=/Script/BlueprintGraph.K2Node_FunctionEntry Name="K2Node_FunctionEntry_0" | |
LocalVariables(0)=(VarName="ForLoopIndex",VarGuid=F6B85B124791C3A6C5AE9CB85E6F158F,VarType=(PinCategory="int"),FriendlyName="For Loop Index",Category=NSLOCTEXT("KismetSchema", "Default", "Default"),PropertyFlags=5,ReplicationCondition=COND_MAX) | |
SignatureClass=Class'"/Script/Engine.Actor"' | |
SignatureName="UserConstructionScript" | |
NodeGuid=6B3464D5426BBA94ED6D2CB353780E8A | |
CustomProperties Pin (PinId=FE0EFA894063EC185E9B7FA0908386F1,PinName="then",Direction="EGPD_Output",PinType.PinCategory="exec",PinType.PinSubCategory="",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsArray=False,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,LinkedTo=(K2Node_MacroInstance_0 0190FEC54CBF547DF6F3A596D323679F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValu |
View snippets.cson
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
'.text.html.twig': | |
'Verbatim': | |
'prefix': 'verbatim' | |
'body': '{% verbatim %}$1{% endverbatim %}$2' |
View example.html
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
<!-- | |
Usage examples | |
--> | |
<!-- IF ANY --> | |
{{#if any truthyOne truthyTwo falsyThree}} | |
You will see this. | |
{{/if}} | |
{{#if any falsyOne falsyTwo falsyThree}} |
View CarControl.cs
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
using UnityEngine; | |
using System.Collections; | |
public class CarControl : MonoBehaviour { | |
// NOTE: Companion script for wheel suspensions, attach to each wheel. | |
// https://gist.github.com/victorbstan/4dde0d0b4203c248423e | |
// PUBLIC | |
public bool driveable = false; |
View Wheel.cs
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
using UnityEngine; | |
using System.Collections; | |
// ADD THIS SCRIPT TO EACH OF THE WHEEL MESHES / WHEEL MESH CONTAINER OBJECTS | |
public class Wheel : MonoBehaviour { | |
public WheelCollider wheelC; | |
private Vector3 wheelCCenter; | |
private RaycastHit hit; |
View simplebox.js
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
(function($) { | |
// SIMPLE BOX | |
// make your own lightbox cuz they all suck | |
var imgSrc | |
, $simpleBox; | |
window.fitImg = function() { | |
var $img = $("#simple-box img"); |
View index.html
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
<html> | |
<head> | |
<title>Get Gamepads</title> | |
</head> | |
<body> | |
<!-- adapted from http://stackoverflow.com/questions/10839310/html5-gamepad-api-on-chrome --> | |
<script> | |
function updateStatus() { | |
window.webkitRequestAnimationFrame(updateStatus); |
View cameras.html
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
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="author" content="Victor Stan"> | |
<meta name="description" content="Get multiple video streams on one page. Adapted from code by Muaz Khan"> | |
<title>Video Camera</title> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js" ></script> |
View profile_photop.rb
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
require 'digest/md5' | |
module ProfilePhoto | |
def profile_photo(profile) | |
profile.avatar.url(:thumb).present? ? profile.avatar.url(:thumb) : "http://www.gravatar.com/avatar/#{Digest::MD5.hexdigest(profile.owner.email)}?d=mm" | |
end | |
end | |
# in your application_helper use: | |
# module ApplicationHelper |
View webScraperTest.st
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
| myHost myPath | | |
"setup" | |
myHost := 'rmod.lille.inria.fr'. | |
myPath := '/pbe2'. | |
ZnClient new | |
systemPolicy; | |
accept: ZnMimeType textHtml; | |
http; |
NewerOlder