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
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package edu.itesm.Controllers; | |
import edu.itesm.Dao.ReactivoDAO; | |
import edu.itesm.Ejbs.OpcionFacadeLocal; |
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
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package com.itesm.Controllers; | |
import com.itesm.Dao.Dao; | |
import com.itesm.Ejbs.DenuncianteFacadeLocal; | |
import com.itesm.Ejbs.DireccionFacadeLocal; |
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
public <T> List<T> list(Class c){ | |
final String type = this.getClassName(c); | |
UUID idOne = UUID.randomUUID(); | |
List<T> l = new ArrayList<T>(); | |
View view = this.dc.getDatabase().getView(type); |
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 couchdroid.com.pruebacouchdroid; | |
import android.content.Context; | |
import android.support.test.InstrumentationRegistry; | |
import android.support.test.runner.AndroidJUnit4; | |
import android.util.Log; | |
import com.couchdroid.crud.CRUDOperations; | |
import com.couchdroid.databasebuilder.DatabaseConfiguration; |
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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class ProceduralAirfoil : MonoBehaviour { | |
FileReader fr; | |
Mesh mesh; | |
// Use this for initialization | |
void Start () { |
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
import java.time.*; | |
import java.time.temporal.Temporal; | |
import java.time.Instant; | |
import java.time.ZonedDateTime; | |
import java.time.format.DateTimeFormatter; | |
public class LocalTimeDemo{ | |
public static void main(String[] args) { | |
System.out.println("Now: "+LocalTime.now()+"\n--------"); |
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
# encoding: utf8 1,1 Top# encoding: utf8 | |
import argparse | |
from datetime import datetime | |
import json | |
from random import randint | |
import requests | |
import sys | |
from time import sleep | |
""" |
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
public class Circle{ | |
private double radius; | |
private String color; | |
public Circle(double radius, String color){ | |
this.radius = radius; | |
this.color = color; | |
} |
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
<ion-content padding> | |
<ion-card *ngFor="let fonda of fondas"> | |
<ion-item> | |
<ion-fab middle right> | |
<button ion-fab mini class="fab-map"> | |
<ion-icon name='pin'></ion-icon> | |
</button> |
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
fondas : any[] = [ | |
{ | |
name: "Yoshi's Island", | |
latitude: 10.98, | |
longitude: 44.98, | |
distance: 'A 2km de ti', | |
image: 'https://firebasestorage.googleapis.com/v0/b/fonditas-26794.appspot.com/o/images%2F1507702157.jpg?alt=media&token=38d98600-7f05-4c75-90cb-bdb73e5934c6', | |
description: 'Lorem ipsum de no se que locura', |
OlderNewer