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
<% if user_signed_in? %> | |
<div id="feedback"> | |
<h5><i class="ss-icon">💬</i> How can we make Status Chart better for you?</h5> | |
<%= form_tag("/feedback", :method => "post", :remote => true, :id => "feedbackForm", :name => "feedbackForm") do %> | |
<textarea placeholder="We would love to hear your feedback, ideas, and complaints :)" name="feedback_note"></textarea> | |
<input type="hidden" value="" name="feedback_browser"> | |
<input type="hidden" value="" name="feedback_version"> | |
<input type="hidden" value="" name="feedback_os"> | |
<input type="hidden" value="" name="feedback_url"> | |
<input type="hidden" value="<%=current_user.email%>" name="feedback_email"> |
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
/Users/andresmith/Developments/suitelive/node_modules/bcrypt-nodejs/bCrypt.js:642 | |
throw "Incorrect arguments"; | |
^ | |
Incorrect arguments |
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 Cylon = require('cylon'); | |
Cylon.api({ | |
host: '0.0.0.0', | |
port: '7000', | |
ssl: false | |
}); | |
Cylon.robot({ | |
name: 'drenerdo', |
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
Verifying that +drenerdo is my blockchain ID. https://onename.com/drenerdo |
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
Matilda API | |
=== Init === | |
GET settings -> { | |
minimumAllowableVersion : String (e.g. "1.0.0.1"), | |
currentAPIVersion : number | |
aboutURL : String, | |
privacyURL : String, | |
termsURL : String, |
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
import UIKit | |
import CarbonKit | |
class PhotoMenuViewController: UIViewController, CarbonTabSwipeNavigationDelegate { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
super.viewDidLoad() |
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 UnityEngine; | |
using System.Collections; | |
public class ball : MonoBehaviour { | |
public bool lefthasball = false; | |
public bool righthasball = false; | |
public Transform leftball; | |
public Transform rightball; |
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 UnityEngine; | |
using System.Collections; | |
public class throwarea : MonoBehaviour { | |
// Use this for initialization | |
void Start () { | |
} | |
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 UnityEngine; | |
using System.Collections; | |
[RequireComponent(typeof(Collider))] | |
public class PunchableBodyParts : MonoBehaviour | |
{ | |
public EnemyController enemy; | |
void OnTriggerEnter(Collider col) | |
{ |
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) 2013 Calvin Rien | |
* | |
* Based on the JSON parser by Patrick van Bergen | |
* http://techblog.procurios.nl/k/618/news/view/14605/14863/How-do-I-write-my-own-parser-for-JSON.html | |
* | |
* Simplified it so that it doesn't throw exceptions | |
* and can be used in Unity iPhone with maximum code stripping. | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining |
OlderNewer