Skip to content

Instantly share code, notes, and snippets.

View pgrtiragg's full-sized avatar

pgrtiragg

  • pgr
  • el salvador
  • 14:11 (UTC -06:00)
View GitHub Profile
libreria de componentes/figuras que pueda importar individualmente como imagenes a un dashboard estas deben soportar transparencia (lo mas importante)
######################### datos a mostrar generales #################################
asesoria =>icono de personas hombre y mujer, niΓ±o niΓ±a
expedientes =>icono folder
asistencias =>icono ??
Servicios Brindados => ??
Expediente Activo => ??
@pgrtiragg
pgrtiragg / p5 sketch
Last active June 16, 2022 17:38
p5 brush
function setup() {
createCanvas(windowWidth, windowHeight);
petals=random(5,10)
c1=random(255)
}
function draw() {
if(mouseIsPressed===true){
echo -n 'TOTAL ' ;du -sh ; find . -iname "*.mp4" -exec echo {} \; -exec ffmpeg -v quiet -i {} {}.mkv \; -exec rm {} \;
#todo
print reduce size
@pgrtiragg
pgrtiragg / it-ebooks.md
Created October 20, 2021 16:34 — forked from baiwfg2/it-ebooks.md
Download ebooks as you want
@pgrtiragg
pgrtiragg / google-apps-script.md
Created August 16, 2021 20:30 — forked from labnol/google-apps-script.md
How to Learn Google Apps Script

Learning Google Apps Script

Find the best resources for learning Google Apps Script, the glue that connects all GSuite services including Gmail, Google Drive, Calendar, Google Sheets, Forms, Maps, Analytics and more.

A good place to learn more about Google Apps Script is the official documentation available at developers.google.com. Here are other Apps Script resources that will help you get up to speed.

  1. Google Apps Script Code Samples by Amit Agarwal
  2. Google Apps Script Development - Create Google Apps Script projects locally inside VS Code - video tutorial
  3. Awesome Google Scripts by Amit Agarwal
  4. Google Developer Experts - Follow Apps Scr
@pgrtiragg
pgrtiragg / web-servers.md
Created May 1, 2020 00:13 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@pgrtiragg
pgrtiragg / gist:655a5c2d5edcd03aa4cbcc6a6c4b0ff4
Created April 29, 2020 16:29 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@pgrtiragg
pgrtiragg / file.md
Created March 27, 2020 21:55
excepciones in nodejs
n=5;
m=10
try{
    if(n<m)
    {
        throw {
            mensaje:'n es menor que m',
 codigo:600
@pgrtiragg
pgrtiragg / bash
Created January 23, 2020 16:21
npm behind proxy
npm config set proxy http://<username>:<password>@<proxy-server-url>:<port>
npm config set https-proxy http://<username>:<password>@<proxy-server-url>:<port>
@pgrtiragg
pgrtiragg / thread.py
Created January 7, 2020 18:12
crear hilos en python
from threading import Thread
import time
class mithread(Thread):
running=True
def __init__(self):
Thread.__init__(self)
self.start()
def run(self):