Testing with RSpec Rails Testing for Zombies Rails for Zombies Redux Functional HTML5 & CSS3 Discover DevTools Ruby Bits Ruby Bits Part 2 Rails 4: Zombie Outlaws Git Real
This file contains 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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Example</title> | |
</head> | |
<body> | |
<script> | |
window.demoObject = {}; | |
window.demoArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; |
This file contains 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
version: 0.1 | |
artifacts: | |
files: | |
- '**/*' | |
- appspec.yml | |
discard-paths: no |
This file contains 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://schedule-staging.catapulthealth.com/?hid=006C0000011zIB1IAM# | |
https://4f85fbe8.ngrok.io/?hid=006C0000011zIB1IAM | |
https://03a41afe.ngrok.io/?hid=006C0000011zIB1IAM | |
https://2adba5f4.ngrok.io/?hid=006C0000011zIB1IAM | |
https://eb7ad6a0.ngrok.io/?hid=006C0000011zIB1IAM |
This file contains 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
// * verticar -> vertical | |
// * obtenerResultado en vez de imprimirResultado, además decía imprir, ese método no imprime nada. | |
// * No hay consistencia al usar descendente y en el método imprimir dizque decreciente. | |
// * Papi que es eso de horizontal descendente y ascendente. | |
// * Transversal y diagonal sinónimos, son confusos esos nombres. | |
package parcialbactraking; | |
public class ParcialBactraking { |
Guía parse https://parse.com/docs/android_guide
http://square.github.io/picasso/
package com.example.notificationsexample;
import android.app.Activity;
import android.os.Bundle;
Una posible correción hubiera sido:
EditText emailAddress = (EditText) findViewById(R.id.email_address);
EditText emailSubject = (EditText) findViewById(R.id.email_subject);
EditText emailText = (EditText) findViewById(R.id.email_text);
// Si no le llega nada de información entonces no se ejecutan estas líneas.
if(getIntent().getExtras() != null) {
emailAddress.setText(getIntent().getExtras().getString("Address"));
This file contains 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
{ | |
"glossary": { | |
"title": "example glossary", | |
"GlossDiv": { | |
"title": "S", | |
"GlossList": { | |
"GlossEntry": { | |
"ID": "SGML", | |
"SortAs": "SGML", | |
"GlossTerm": "Standard Generalized Markup Language", |
This file contains 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
package com.example; | |
import java.io.*; | |
class Parser { | |
static int lookahead; | |
public Parser() throws IOException { | |
lookahead = System.in.read(); |
This file contains 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
$.ajax({ | |
data: { | |
correo: valorCorreo, | |
login: valorLogin | |
} | |
}); |
NewerOlder