Skip to content

Instantly share code, notes, and snippets.

View matheuscorreia's full-sized avatar
🎬

Matheus Correia matheuscorreia

🎬
  • Stockholm, Sweden
View GitHub Profile
@matheuscorreia
matheuscorreia / removeGlassDoorContentWall.js
Created February 27, 2023 20:49
A Tampermonkey user script to remove the content wall from Glassdoor review pages
// ==UserScript==
// @name Remove Glassdoor reviews content wall
// @namespace mailto:[email protected]
// @version 1.0
// @description Get rid of the annoying review content wall when browsing glassdoor.
// @author Matheus Correia
// @match https://www.glassdoor.com/Reviews/*
// @icon https://www.glassdoor.com/favicon.ico
// @grant none
// @run-at document-end
@matheuscorreia
matheuscorreia / component-generator.js
Last active July 17, 2017 21:45
A npm script I've made for myself, to automate the component creation process in React Native.
const fs = require('fs');
const args = JSON.parse(process.env.npm_config_argv).remain
const [componentGroupName, mainComponentName] = args
if(!(mainComponentName && mainComponentName)){
throw new Error('please provide the component folder name, and the main component name')
}
// |------------------------------------------------------|