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 org.apache.lucene.analysis.standard.StandardAnalyzer; | |
import org.apache.lucene.document.*; | |
import org.apache.lucene.index.FieldInfo; | |
import org.apache.lucene.index.IndexWriter; | |
import org.apache.lucene.index.IndexWriterConfig; | |
import org.apache.lucene.store.Directory; | |
import org.apache.lucene.store.FSDirectory; | |
import org.apache.lucene.util.Version; | |
import org.json.simple.JSONArray; | |
import org.json.simple.JSONObject; |
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
{ | |
"cdRule": 1223, | |
"process": [ | |
{ | |
"cdStatus": 1233, | |
"cdRedModel": 6674 | |
}, | |
{ | |
} |
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
"use strict"; | |
var mongoose = require('mongoose'), | |
_ = require('lodash'), | |
async = require('async'), | |
Schema = mongoose.Schema, | |
ObjectId = Schema.ObjectId, | |
cartografiaSchema = mongoose.Schema({ | |
_id: { | |
type: String |
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
{ | |
"description": "String", | |
"alias": "String", | |
"options": [ | |
{ | |
"name": "String" | |
}, | |
... | |
] | |
} |
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.io.InputStreamReader; | |
import java.util.Random; | |
import java.util.Scanner; | |
public class Gimnasio { | |
static class Cliente { | |
String nombre; | |
double peso; // Kg | |
double estatura; // cm | |
Double IMC; |
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
{ | |
"namespace": "Rule", | |
"type": "record", | |
"name": "RuleMessage", | |
"fields": [ | |
{ | |
"name": "station", | |
"type": "string" | |
}, | |
{ |
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.io.InputStreamReader; | |
import java.util.Scanner; | |
public class StudentExample { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(new InputStreamReader(System.in)); | |
System.out.print("Type your name: "); | |
String name = sc.nextLine(); |
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.util.Scanner; | |
public class Student { | |
final static double PERCENTASIIGNMENT1 = 0.1; | |
final static double PERCENTASIIGNMENT2 = 0.13; | |
final static double PERCENTASIIGNMENT3 = 0.17; | |
final static double PERCENTEXAM1 = 0.2; | |
final static double PERCENTEXAM2 = 0.2; | |
final static double PERCENTPPI = 0.2; |
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 React, {Component} from 'react'; | |
const headers = [ | |
{ | |
title: "x" | |
}, | |
{ | |
title: "y" | |
} | |
]; |
OlderNewer