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
| const encoderStates = { | |
| initial: 'streaming', | |
| states: { | |
| streaming: { | |
| on: { | |
| ENCODER_STOPPED: 'paused', | |
| }, | |
| }, | |
| paused: { | |
| on: { |
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 javax.net.ssl.SSLSocket; | |
| import javax.net.ssl.SSLSocketFactory; | |
| import java.io.*; | |
| /** Establish a SSL connection to a host and port, writes a byte and | |
| * prints the response. See | |
| * http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services | |
| */ | |
| public class SSLPoke { | |
| public static void main(String[] args) { |
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
| /* | |
| Jasmine-Ajax : a set of helpers for testing AJAX requests under the Jasmine | |
| BDD framework for JavaScript. | |
| Supports both Prototype.js and jQuery. | |
| https://github.com/pivotal/jasmine-ajax | |
| Jasmine Home page: http://pivotal.github.com/jasmine |
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
| Pod::Spec.new do |s| | |
| s.name = "XLKit" | |
| s.version = "0.2.1" | |
| s.license = { | |
| :type => 'Copyright', | |
| :text => <<-LICENSE | |
| Copyright 2014 Xmartlabs. All rights reserved. | |
| LICENSE | |
| } |
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
| En este archivo se explica como instalar Jenkins CI configurado para armar proyectos iOS. | |
| Jenkins es una herramienta para monitorear la ejecucion repetitiva de trabajos, como por | |
| ejemplo, la compilacion de proyectos de software. Jenkins se enfoca en las siguientes | |
| tareas: | |
| 1. Armado/testing de proyectos de software de forma continuamente. | |
| 2. Monitorear trabajos ejecutados externamente. | |
| El equipo utilizado tiene las siguientes caracteristicas: | |