Skip to content

Instantly share code, notes, and snippets.

View socramreysa's full-sized avatar
🏠
Working from home

Marcos Rey Sanguinetti socramreysa

🏠
Working from home
View GitHub Profile
@yurukov
yurukov / README
Last active November 19, 2021 10:12
Scraping a full Facebook group page from a browser
These are a few commands that could be used to scrape a full group page
from Facebook. One can use the Graph API, but there some users would be
hidden. The JS commands should be run in a browser and scroll through
the page opening up hidden content and comments. I used Chrome. Once
enough content is opened, you should save the page as any other and
analyse it's contents.

Big O

Que es?

  • Para calcular la eficacia de un algoritmo
  • En tiempo o espacio
  • Calculamos el tiempo con numero de operaciones
  • Habla de curva de crecimiento dependiendo el input
  • Medimos el peor caso

Optimización

¿Qué es optimización?

  • Hacer que algo funcione mejor
  • Mas rapido
  • Menos recurso: Gastos de memoria
  • Menos lineas de código
@atralice
atralice / Picantes.md
Last active December 13, 2021 01:36
Links Picantes JS

Functional Programming

  • Esta de moda (hipe)
  • Inmutabilidad
  • Funciones Puras
    • Con un mismo input va tener SIEMPRE el mismo output
    • No tiene efectos secundarios
      • Modificar cualquier variable o propiedad de un objeto
      • loggear en la consola
      • escribir en archivos o en internet