Skip to content

Instantly share code, notes, and snippets.

View oshingc's full-sized avatar

María Alejandra Gómez C. oshingc

  • Verizon Peru
  • Lima, Perú
View GitHub Profile
@oshingc
oshingc / app.js
Created December 1, 2017 21:28
Node running Angular
var express = require('express');
var compression = require('compression');
var proxy = require('express-http-proxy');
var session = require('express-session');
var app = express();
var user = {uid: 'user', name: 'user A', role: '[{"portal":"worker","roles":["app_worker]}]'};
var proxySetting = {
@oshingc
oshingc / debug
Created March 23, 2024 16:28
debug oshingc
<html>
<head>
<script>
var numero1 = "3";
var numero2 = "4";
console.log("suma", suma(numero1, numero2));
function suma(a, b){
return a + b;
}