Skip to content

Instantly share code, notes, and snippets.

View jesulink2514's full-sized avatar
🎯
Focusing

Jesus Angulo jesulink2514

🎯
Focusing
View GitHub Profile
@jesulink2514
jesulink2514 / Nuevo.cshtml
Created January 21, 2016 05:57
Nuevo.cshtml refactorizado para usar el framework Bootstrap
@model RefactorView.Models.Product
@{
ViewBag.Title = "Nuevo";
var controlSize = new Size(10,10,6,12);
}
<h2>Nuevo</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
<?xml version="1.0" encoding="UTF-8" ?>
<AbsoluteLayout
x:Class="FormsIcons.Views.TechieSwitch"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<AbsoluteLayout.GestureRecognizers>
<TapGestureRecognizer Tapped="ClickGestureRecognizer_OnClicked" />
</AbsoluteLayout.GestureRecognizers>
<Path
x:Name="Border"
<AbsoluteLayout>
<AbsoluteLayout.GestureRecognizers>
<TapGestureRecognizer Tapped="ClickGestureRecognizer_OnClicked" />
</AbsoluteLayout.GestureRecognizers>
<Path x:Name="Border" Aspect="Fill"
Data="M9.53 0l18.44 0c2.62,0 5,1.07 6.73,2.8 1.73,1.73 2.8,4.11 2.8,6.73 0,2.62 -1.07,5 -2.8,6.73 -1.73,1.73 -4.11,2.8 -6.73,2.8l-18.44 0c-2.62,0 -5,-1.07 -6.73,-2.8 -1.73,-1.73 -2.8,-4.11 -2.8,-6.73 0,-2.62 1.07,-5.01 2.8,-6.73 1.73,-1.73 4.11,-2.8 6.73,-2.8zm18.44 1.13l-18.44 0c-2.31,0 -4.41,0.95 -5.93,2.47 -1.52,1.52 -2.47,3.62 -2.47,5.93 0,2.31 0.95,4.41 2.47,5.93 1.52,1.52 3.62,2.47 5.93,2.47l18.44 0c2.31,0 4.41,-0.95 5.93,-2.47 1.52,-1.52 2.47,-3.62 2.47,-5.93 0,-2.31 -0.95,-4.41 -2.47,-5.93 -1.52,-1.52 -3.62,-2.47 -5.93,-2.47z"
Fill="#0079e2"
HeightRequest="20"
WidthRequest="38" />
<Ellipse x:Name="Thumb" x:FieldModifier="private" AbsoluteLayout.LayoutBounds="2,2,16,16"
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@model AspMvcDemo.Models.FormModel
@{
ViewBag.Title = "Index";
var types = ViewBag.TypesList as List<SelectListItem>;
var subtypes = ViewBag.SubTypesList as List<SelectListItem>;
}
<div class="row">
server {
listen 80;
server_name e93c8012-4d68-43e5-9f7c-779e4bc13799.clouding.host;
location / {
proxy_pass http://localhost:5000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;