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
| export default { | |
| es: { | |
| firstDayOfWeek: 0, | |
| dayNames: ["Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Sabado", "Domingo"], | |
| dayNamesShort: ["Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sab"], | |
| dayNamesMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa"], | |
| monthNames: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], | |
| monthNamesShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], | |
| today: 'Hoy', | |
| clear: 'Limpiar', |
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
| { | |
| "text": "Respuesta en formato texto", | |
| "observations":"Observaciones del administrador", | |
| "creationDate": "2012-04-23T18:25", | |
| "fileId":1, | |
| "patientTestId":3 | |
| } |
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
| CREATE OR REPLACE PROCEDURE student_leave(studentId number) | |
| LANGUAGE plpgsql | |
| AS $procedure$ | |
| begin | |
| UPDATE student | |
| SET status = 1 WHERE id = studentId; | |
| end; $procedure$ | |
| ; |
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
| /* | |
| * 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.saed.declaracionesjuradas.controller; | |
| import com.saed.declaracionesjuradas.generales.JSFUtil; | |
| import com.saed.declaracionesjuradas.ejb.DatospersonalesFacadeLocal; | |
| import com.saed.declaracionesjuradas.entidades.Datospersonales; |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.fcastillo</groupId> | |
| <artifactId>jakarta-websocket</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <packaging>war</packaging> | |
| <name>jakarta-websocket</name> |
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
| sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/jdk8/bin/java" 1 | |
| sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/local/jdk8/bin/javac" 1 | |
| sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/local/jdk8/bin/javaws" 1 | |
| # Seleccionar version de java a utilizar | |
| update-alternatives --config java |
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 * FROM COBERTURAS c | |
| ORDER BY c.ID | |
| LIMIT (:current_page - 1) * :rows_per_page,:rows_per_page; |
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> | |
| ServerAdmin webmaster@localhost | |
| ServerName nombre_dominio | |
| ServerAlias nombre_dominio | |
| DocumentRoot /var/www/nombre_dominio | |
| ErrorLog ${APACHE_LOG_DIR}/error.log | |
| CustomLog ${APACHE_LOG_DIR}/access.log combined | |
| RewriteEngine on | |
| RewriteCond %{SERVER_NAME} = nombre_dominio |
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
| <div> | |
| {{employees |json}} | |
| </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
| aws --endpoint-url=http://localhost:4566 secretsmanager create-secret --name testSecret --secret-string 'secret' |
OlderNewer