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
<ion-content padding="false" scroll="false" has-bouncing="false"> | |
<div id="form"> | |
<div class="list"> | |
<label class="item item-input" id="company"> | |
<input type="text" placeholder="Company Name*" focus-me="{{cmpFocus}}" ng-model="user.companyname" maxlength="100"> | |
</label> | |
<div class="padding submitbtn"> | |
<button type="submit" class="button" ng-click="registration(user);">SUBMIT</button> | |
</div> | |
</div> |
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
<select ng-model="selectedTestAccount" ng-options="item.Id as item.Name for item in testAccounts"> | |
<option value="">Select Account</option> | |
</select> |
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
https://www.digitalocean.com/community/tutorials/building-for-production-web-applications-overview | |
https://www.digitalocean.com/community/tags/load-balancing | |
http://www.microsiervos.com/archivo/peliculas-tv/asi-se-crearon-los-dragones-de-la-quinta-temporada-de-juego-de-tronos.html | |
https://aws.amazon.com/es/architecture/ |
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 fs = require('fs'); | |
var http = require('http'); | |
var fsize; | |
var skBar = document.getElementById('progressbar'); | |
//Función que maneja la descarga del archivo | |
var download = function(url, dest, cb) { | |
var file = fs.createWriteStream(dest); | |
var request = http.get(url, function(response) { | |
//Para ver el progreso, primero necesitamos saber el tamaño total del archivo |
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 distance = 100; | |
var geometry = new THREE.Geometry(); | |
for (var i = 0; i < 1000; i++) { | |
var vertex = new THREE.Vector3(); | |
var theta = THREE.Math.randFloatSpread(360); | |
var phi = THREE.Math.randFloatSpread(360); |
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
# Outputs the reading time | |
# Read this in “about 4 minutes” | |
# Put into your _plugins dir in your Jekyll site | |
# Usage: Read this in about {{ page.content | reading_time }} | |
module ReadingTimeFilter | |
def reading_time( input ) | |
words_per_minute = 180 |
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 | |
// Change the namespace! | |
namespace Acme\DemoBundle\DataFixtures\ORM; | |
use Doctrine\Common\DataFixtures\FixtureInterface; | |
use Doctrine\Common\Persistence\ObjectManager; | |
use Symfony\Component\DependencyInjection\ContainerAwareInterface; | |
use Symfony\Component\DependencyInjection\ContainerInterface; |
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
<virtualhost *:80> | |
ServerName youtrack.ecapy.com | |
ProxyPreserveHost On | |
ProxyRequests Off | |
<proxy *> | |
Order deny,allow | |
Allow from all | |
</proxy> |
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
{ | |
"@context" : "http://schema.org", | |
"@type" : "Organization", | |
"name" : "Maytok", | |
"url" : "https://www.maytok.com", | |
"sameAs" : [ | |
"https://twitter.com/woorank", | |
"https://plus.google.com/+woorank", | |
"https://www.facebook.com/woorank", | |
"https://foursquare.com/v/woorank/4e296473149554c77442cc98", |
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
# jekyll-readtime | |
# 2015 Ron Scott-Adams, Licensed under MIT: | |
# https://tldrlegal.com/license/mit-license | |
# Original work: https://gist.github.com/zachleat/5792681 | |
# Outputs the estimated time the average person might take to read the content. | |
# 200 is a round figure based on estimates gathered from various studies. | |
# http://www.ncbi.nlm.nih.gov/pubmed/18802819 | |
# Usage: {{ page.content | readtime }} |