Skip to content

Instantly share code, notes, and snippets.

View miguelplazasr's full-sized avatar

Miguel Plazas miguelplazasr

  • Pulsar IT
  • Miami, FL
View GitHub Profile
@miguelplazasr
miguelplazasr / comunicationPolicy.md
Created September 28, 2023 03:33
[Productivity] - Personal Communication Policy : Draft

[[20230907083045_politica-de-comunicacion|Política de Comunicaciones Personal]]


title: Objetivo
 El objetivo principal de esta Política de Comunicaciones Personal es optimizar y estandarizar todas las formas de comunicación electrónica, tanto entrantes como salientes. Esta política busca mejorar la eficiencia, la claridad y la efectividad de las comunicaciones al establecer directrices claras para la organización de correos electrónicos, la respuesta a mensajes, y la gestión de situaciones de comunicación urgentes. Al adherirse a esta política, se espera minimizar malentendidos, agilizar el flujo de información y mejorar la productividad general.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="155 characters of message matching text with a call to action goes here">
<meta name="author" content="">
<title>BOOSS</title>
/* default color: #fa6a2e */
@import "abstracts/variables";
.bg-color,
section.bg-color,
section.call-to-action,
#mainmenu li li a:hover,
#mainmenu ul li:hover > a,
.price-row,
@miguelplazasr
miguelplazasr / www-mj-style.css
Last active August 18, 2023 16:47
www-mj-style.css
/* ================================================== */
/* Motiva
/* created by designesia
* body
* header
* subheader
* navigation
@miguelplazasr
miguelplazasr / base_nome.html
Last active August 18, 2023 14:46
base_nome.html
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8" />
<title>Motiva - Mentor, Coach and Speaker Website Template</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="Motiva - Mentor, Coach and Speaker Website Template" name="description" />
<meta content="" name="keywords" />
<meta content="" name="author" />
const apiUrl = "http://api.quotable.io/random?tags=";
async function start() {
var quote;
var cite;
const response = await fetch(apiUrl);
const data = await response.json();
if (response.ok) {
// Update DOM elements
@miguelplazasr
miguelplazasr / folder_links.js
Created February 2, 2023 17:55 — forked from ngraham20/folder_links.js
Obsidian Templater Script to Generate Folder Links
@miguelplazasr
miguelplazasr / share-data.service.ts
Created April 5, 2022 22:04
Share data between components
import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class SharedDataService {
private headerId: BehaviorSubject<number> = new BehaviorSubject<number>(0);
@miguelplazasr
miguelplazasr / safe.pipe.ts
Created November 15, 2021 17:31
Pipe for Sanitizar content
import { Pipe, PipeTransform } from '@angular/core';
import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
@Pipe({
name: 'safe'
})
export class SafePipe implements PipeTransform {
constructor(protected sanitizer: DomSanitizer) {}
import { BehaviorSubject, Observable, Subject } from 'rxjs';
import { Inject, Injectable, OnDestroy } from '@angular/core';
export enum LocalStorageTypeEnum {
LOCAL_STORAGE,
SESSION_STORAGE,
}
export interface IKeyValuePair<K, T> {