Skip to content

Instantly share code, notes, and snippets.

View NeoTech's full-sized avatar

Andreas Pettersson NeoTech

  • Roughedge AB
  • Sweden
  • 17:41 (UTC +02:00)
View GitHub Profile
@NeoTech
NeoTech / windows-keys.md
Created December 28, 2023 15:02
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@NeoTech
NeoTech / vim_cheatsheet.md
Created November 5, 2016 22:39 — forked from awidegreen/vim_cheatsheet.md
Vim shortcuts

Introduction

  • C-a == Ctrl-a
  • M-a == Alt-a

General

:q        close
:w        write/saves
:wa[!]    write/save all windows [force]
:wq       write/save and close
@NeoTech
NeoTech / tmux-cheatsheet.markdown
Last active October 25, 2016 15:17 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname

Managing dependencies

Ok, so you've built your first module, but now you want to make it use one of the many libraries available via the npm registry.

finding modules

There are a few ways to find a module. You can use http://npmjs.org or http://npmsearch.com to find modules that may fit what you need.

some advice for choosing modules

building your first node module

This is pretty simple, lets dive in!

choose a name

Find a name that isn't taken and clearly describes what your module is doing

$ npm view your-first-node-module