Skip to content

Instantly share code, notes, and snippets.

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.
[
{
"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",
{
"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"
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"
<!DOCTYPE html>
<head>
<title>Iniciar sesion</title>
<?php include 'head.php'; ?>
</head>
<body>
<div class="container">
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "claseMmedia";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
<?php
for ($i=0;$i<5;$i++)
{
for ($ii=0;$ii<10;$ii++)
{
echo "*";
}
echo '<br>';
}
@gustavotero7
gustavotero7 / gist:39efe8b0e874c87f2eea4937360e6970
Created February 3, 2017 03:14 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!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>
//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()
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using System.IO;
public class VideoDownloader : MonoBehaviour {
public Image downloadProgress;
public string videoURL="VIDEO_URL_HERE";