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
/*! MIT License | |
* Copyright (c) 2018 GitHub Inc. | |
* https://github.com/primer/primitives/blob/main/LICENSE | |
*/ | |
main { | |
--color-prettylights-syntax-comment: #8b949e; | |
--color-prettylights-syntax-constant: #79c0ff; | |
--color-prettylights-syntax-entity: #d2a8ff; | |
--color-prettylights-syntax-storage-modifier-import: #c9d1d9; |
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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Adrián Urrego Bohórquez", | |
"label": "Desarrollador Frontend", | |
"email": "[email protected]", | |
"url": "http://adrianub.dev", | |
"summary": "Ingeniero de Sistemas con más de 6 años de experiencia en desarrollo FrontEnd bajo metodologías ágiles.\nEspecializado en Angular 2+ y con fuertes conocimientos en Javascript/Typescript, NodeJs, Astro y NestJs. \nHabilidades sólidas en la construcción de documentación de componentes UI con Storybook y en la creación de pruebas unitarias exhaustivas con Jest. \nAdemás, puedo llevar a cabo pruebas E2E con Cypress y Playwright para garantizar la calidad en cada proyecto.", | |
"location": { | |
"countryCode": "COL", |
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
import { Injectable, Renderer2, RendererFactory2 } from '@angular/core'; | |
import { Subject } from 'rxjs'; | |
@Injectable({ | |
providedIn: 'root', | |
}) | |
export class DarkService { | |
private renderer: Renderer2; | |
private isDark = false; | |
private matchMediaDark = window.matchMedia('(prefers-color-scheme: dark)'); |
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
"use strict"; | |
/** | |
* User.js controller | |
* | |
* @description: A set of functions called "actions" for managing `User`. | |
*/ | |
const { sanitizeEntity } = require("strapi-utils"); | |
const sanitizeUser = (user) => |