Skip to content

Instantly share code, notes, and snippets.

View liamkeily's full-sized avatar

Liam liamkeily

  • Leicester, UK
  • 07:41 (UTC)
View GitHub Profile
@ingramchen
ingramchen / 00-ubuntu-intellij-macosx.md
Last active April 19, 2024 15:42
Use ubuntu/Intellij like macOS X

How to mimic full macOS Intellij behavior in Ubuntu

  • Enviroment
    • Ubuntu 20.04
    • Intellij IDEA 2020

Ubuntu gnome shell shortcuts

@gimenete
gimenete / compare-modules.js
Created October 17, 2014 21:14
Compare your installed node_modules with clean npm install
// mv node_modules node_modules_old && npm install
var fs = require('fs')
var path = require('path')
var node_modules = path.join(__dirname, 'node_modules')
var node_modules_old = path.join(__dirname, 'node_modules_old')
fs.readdir(node_modules, function(err, files) {
files.forEach(function(dir) {
if (dir.charAt(0) === '.') return