Skip to content

Instantly share code, notes, and snippets.

View Soffcsr's full-sized avatar

Sofia Ruiz Soffcsr

View GitHub Profile
@Soffcsr
Soffcsr / Cacheability.cs
Created July 30, 2021 01:11 — forked from bradwilson/Cacheability.cs
Using chaining to create cached results in ASP.NET Web API v2
public enum Cacheability
{
NoCache,
Private,
Public,
}
import { LOGIN_USER, LOGIN_SUCCESS, LOGIN_ERROR, LOGOUT } from "../constants/action-types"
const initState = {
loged: false,
error: '',
credentials: {
token: '',
username: '',
userlastname: ''
}
let cadenapar = ""
let cadenaimpar = ""
const texto = "programacion"
for(let i=0; i<texto.length; i++){
i%2 === 0 ? cadenapar = cadenapar.concat(texto.charAt(i))
: cadenaimpar = cadenaimpar.concat(texto.charAt(i))
}
console.log(cadenapar.concat(" ", cadenaimpar))
//modulos CORE
var os = require('os');
var fs = require('fs');
//modulos propios
var [suma, resta, multiplicacion, division] = require('./operaciones');
var cpu = os.cpus();
var cpu_string = JSON.stringify(cpu);
var sistema = os.platform();