Skip to content

Instantly share code, notes, and snippets.

View agl0809's full-sized avatar
🌎
Working from home

Antonio García agl0809

🌎
Working from home
View GitHub Profile

For example, to override the AppBar (https://material-ui-next.com/api/app-bar/) root class we can do the following:

First method (override Material UI classnames):

1 - Add the property classes in the AppBar component:

    <AppBar classes={{root: 'my-root-class'}}
@tonymtz
tonymtz / gist:d75101d9bdf764c890ef
Last active December 29, 2023 00:40
Uninstall nodejs from OSX Yosemite
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*
@GloriaPG
GloriaPG / microservices architecture
Created October 29, 2014 23:14
Microservices architecture
Diseño de la arquitectura software del sistema de a bordo del satélite UPMSat-2 https://www.reddit.com/r/javascript/comments/29p1dc/javascript_curriculum_for_experienced_coders/
Arquitectura de Software http://es.wikipedia.org/wiki/Arquitectura_de_software
Baruco 2012: Micro-Service Architecture, by Fred George https://www.youtube.com/watch?v=2rKEveL55TY
Microservices: Decomposing Applications for Deployability and Scalability http://www.infoq.com/articles/microservices-intro
Microservice Architecture - A Quick Guide http://www.kpbird.com/2014/06/microservice-architecture-quick-guide.html
Micro Service Architecture
http://yobriefca.se/blog/2013/04/28/micro-service-architecture/
Microservices http://martinfowler.com/articles/microservices.html#footnote-netflix-flowcon
¿Qué significa arquitectura de microservicios realmente?
http://www.pc-100.com/es/what-microservices-architecture-really-means/?switch=0
@coolaj86
coolaj86 / how-to-publish-to-npm.md
Last active April 2, 2024 20:18
How to publish packages to NPM

Getting Started with NPM (as a developer)

As easy as 1, 2, 3!

Updated:

  • Aug, 08, 2022 update config docs for npm 8+
  • Jul 27, 2021 add private scopes
  • Jul 22, 2021 add dist tags
  • Jun 20, 2021 update for --access=public
  • Sep 07, 2020 update docs for npm version