Test Send Server Event with cURL
curl http://localhost:8080/sse -H Accept:text/event-stream
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
# El nombre de la aplicacion | |
APP_NAME=rest-app | |
# Token de acceso de la API de DigitalOcean | |
DIGITALOCEAN_ACCESS_TOKEN= | |
# Region de disponibilidad de DigitalOcean | |
DIGITALOCEAN_REGION=nyc1 | |
# Nombre de usuario de GitHub | |
GITHUB_USERNAME=leosuncin | |
# Token de acceso de GitHub | |
GITHUB_ACCESS_TOKEN= |
Test Send Server Event with cURL
curl http://localhost:8080/sse -H Accept:text/event-stream
<VirtualHost *:80> | |
ServerSignature Off | |
DocumentRoot "/var/www/symfony/web/" | |
DirectoryIndex app.php | |
<Directory "/var/www/symfony/web"> | |
AllowOverride None | |
Order Allow,Deny | |
Allow from All |
const crypto = require('crypto') | |
const IV_LENGTH = 16 | |
const KEY_LENGTH = 32 | |
const ALGORITHM = 'aes-256-cbc' | |
const ENCODING = 'hex' | |
const _privates = Symbol('privates') | |
/** | |
* Encrypt and decrypt text |
-- Consultar usuarios loggeados | |
SELECT USERNAME FROM V$SESSION; | |
-- Consultar el usuario actual | |
SELECT user FROM dual; | |
SELECT SYS_CONTEXT('USERENV', 'CURRENT_USER') FROM dual; | |
-- Consultar la fecha actual | |
SELECT TO_CHAR (SYSDATE, 'MM-DD-YYYY HH24:MI:SS') "NOW" FROM DUAL; | |
-- Crear indice | |
CREATE INDEX |
-- this is an example | |
group: BAD115-Laboratorio1 | |
R1 = { | |
A:string, B:string, C:string, D:string | |
'α','α','1','7' | |
'α','ß','5','7' | |
'ß','ß','12','3' |
GNU GENERAL PUBLIC LICENSE | |
Version 3, 29 June 2007 | |
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> | |
Everyone is permitted to copy and distribute verbatim copies | |
of this license document, but changing it is not allowed. | |
Preamble | |
The GNU General Public License is a free, copyleft license for |
#!/bin/sh | |
DESC="JDownloader 2 Headless" | |
NAME=JDownloader2 | |
PIDFILE=/var/run/$NAME.pid | |
COMMAND="/usr/bin/java -- -Djava.awt.headless=true -jar /home/osmc/jDownloader2/JDownloader.jar" | |
RUN_AS=osmc | |
d_start() { | |
start-stop-daemon --start --quiet --background --make-pidfile --pidfile $PIDFILE --chuid $RUN_AS --exec $COMMAND |
'use strict'; | |
/** | |
* @ngdoc service | |
* @name yourApp.$sails | |
* @description | |
* # $sails | |
* Service in the yourApp. | |
*/ | |
angular.module('yourApp') |