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
    
  
  
    
  | IEnumerator SendMail() | |
| { | |
| string endpoint = "endpoint"; | |
| string message = "Message goes here!"; | |
| WWWForm form = new WWWForm(); | |
| form.AddField("from", "My First Calendar <[email protected]>"); | |
| form.AddField("to", "[email protected]"); | |
| form.AddField("subject", "Game Contact Form"); | |
| form.AddField("html", "<h1>New contact message</h1><br><p> "+message+" </p>" + System.DateTime.Now.ToString()); | |
| form.AddField("text", "New contact message, "+message+" "+System.DateTime.Now.ToString()); | 
      This file has been truncated, but you can view the full file.
    
    
  
    
      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
    
  
  
    
  | [ | |
| { | |
| "Código color": "AP1-1", | |
| "Nombre": "Sheer Batiste", | |
| "R": "242.22", | |
| "G": "229.82", | |
| "B": "189.49", | |
| "Productos disponibles": "Renzel®", | |
| "Atributos0": "Máxima durabilidad y resistencia al sol y la lluvia", | |
| "Atributos1": "Retiene por más tiempo la intensidad de los colores", | 
  
    
      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
    
  
  
    
  | { | |
| "items": { | |
| "pre_app_dishwasher_01_04": { | |
| "id": "pre_app_dishwasher_01_04", | |
| "name": "Lavaplatos", | |
| "description": "Lava vajillas moderno", | |
| "price": "4499", | |
| "categories": { | |
| "interior": "interiores", | |
| "brands": "marcas" | 
  
    
      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
    
  
  
    
  | Shader "DoubleSided" { | |
| Properties { | |
| _Color ("Main Color", Color) = (1,1,1,1) | |
| _MainTex ("Base (RGB)", 2D) = "white" {} | |
| //_BumpMap ("Bump (RGB) Illumin (A)", 2D) = "bump" {} | |
| } | |
| SubShader { | |
| //UsePass "Self-Illumin/VertexLit/BASE" | |
| //UsePass "Bumped Diffuse/PPL" | |
  
    
      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
    
  
  
    
  | <!DOCTYPE html> | |
| <head> | |
| <title>Iniciar sesion</title> | |
| <?php include 'head.php'; ?> | |
| </head> | |
| <body> | |
| <div class="container"> | 
  
    
      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
    
  
  
    
  | <?php | |
| $servername = "localhost"; | |
| $username = "root"; | |
| $password = ""; | |
| $dbname = "claseMmedia"; | |
| // Create connection | |
| $conn = new mysqli($servername, $username, $password, $dbname); | |
| // Check connection | 
  
    
      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
    
  
  
    
  | <?php | |
| for ($i=0;$i<5;$i++) | |
| { | |
| for ($ii=0;$ii<10;$ii++) | |
| { | |
| echo "*"; | |
| } | |
| echo '<br>'; | |
| } | 
  
    
      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
    
  
  
    
  | <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> | 
  
    
      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
    
  
  
    
  | //See this awesome tutorial for more info, http://unity3d.college/2016/11/16/steamvr-controller-input/ | |
| using UnityEngine; | |
| public class PrimitiveCreator : MonoBehaviour | |
| { | |
| private SteamVR_TrackedController _controller; | |
| private PrimitiveType _currentPrimitiveType = PrimitiveType.Sphere; | |
| private void OnEnable() | 
  
    
      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 UnityEngine.UI; | |
| using System.Collections; | |
| using System.IO; | |
| public class VideoDownloader : MonoBehaviour { | |
| public Image downloadProgress; | |
| public string videoURL="VIDEO_URL_HERE"; | 
