Skip to content

Instantly share code, notes, and snippets.

View eduuh's full-sized avatar
🎯

dushg eduuh

🎯
  • Nairobi
  • 22:34 (UTC +03:00)
View GitHub Profile
const http = require('http');
const fs = require('fs');
// the http module has a createServer method.
// Takes 1 arg
// 1. callbacks, callbacks, has 2 args: req, res
const server = http.createServer((req, res) => {
if (req.url === '/') {
//res = ouw way of responding to the requester.
//http message.
//1. start line check
@eduuh
eduuh / remove-node-modules.md
Created July 22, 2020 16:15 — forked from lmcneel/remove-node-modules.md
How to remove node_modules after they have been added to a repo

How to remove node_modules

  1. Create a .gitignore file in the git repository if it does not contain one

touch .gitignore 2. Open up the .gitignore and add the following line to the file

node_modules 3. Remove the node_modules folder from the git repository

#!/bin/sh
# This script is called on startup to remap keys.
# Increase key speed via a rate change
xset r rate 300 50
setxkbmap us -variant colemak # set up the default keyboard layout to colemak
# Map the caps lock key to super...
setxkbmap -option caps:super
# But when it is pressed only once, treat it as escape.
killall xcape 2>/dev/null ; xcape -e 'Super_L=Escape'
@eduuh
eduuh / remaps
Last active June 19, 2020 19:37
#!/bin/sh
# This script is called on startup to remap keys.
# Increase key speed via a rate change
xset r rate 300 50
setxkbmap us -variant colemak # set up the default keyboard layout to colemak
# make CapsLock behave like Ctrl:
setxkbmap -option ctrl:nocaps
# make short-pressed Ctrl behave like Escape:
xcape -e 'Control_L=Escape'
# My remaps to colemak navigation
copymap <UP> e
copymap <DOWN> n
copymap <LEFT> h
copymap <RIGHT> i
copymap <HOME> gg
copymap <END> G
# pager navigation remaps
copypmap <UP> e <C-p>
@eduuh
eduuh / keybindings.json
Created May 20, 2020 04:36 — forked from sebastianhoitz/keybindings.json
VSCode Vim improvements
[
{
"key": "ctrl+h",
"command": "workbench.action.focusLeftGroup",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert'"
},
{
"key": "ctrl+l",
"command": "workbench.action.focusRightGroup",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert'"
@eduuh
eduuh / gpg-wkd.md
Created May 14, 2020 09:12 — forked from kafene/gpg-wkd.md
Setting up WKD for self-hosted automatic key discovery

I just got this working so I figured I'd share what I found, since there's hardly any information about this anywhere online except an RFC, the GPG mailing list and one tutorial from the GnuPG blog.

You can use automatic key discovery with WKD (Web key directory) to make it easy for users to import your key, in GPG since version 2.1.12. Since this feature is fairly new, it isn't yet available in the current LTS release of Ubuntu (16.04; xenial), however it is available in Debian stable (stretch).

I couldn't add a DNS CERT or DANE / OPENPGPKEY record through my email service (which also hosts my nameservers). I tried making the PKA record - a foo._pka.example.com TXT record but GPG doesn't seem to recognize it and fails; I'm still investigating why.

So the last option for self-hosted auto-discovery was WKD.

First thing I had to do was add an email address to my key. My primary UID is just my name so the key represents my identity rather

@eduuh
eduuh / android_on_arch.md
Created April 11, 2020 18:55 — forked from dianjuar/android_on_arch.md
install android SDK on arch linix

Install Android SDK on Arch Linux

1. Download Android SDK on your computer

yaourt android-sdk-platform-tools
yaourt android-udev
yaourt android-sdk

2. Create global variables on system

{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"launchmode" : "maximized",
"profiles":
{
"defaults": {
// Put settings here that you want to apply to all profiles
@eduuh
eduuh / smart-caps-lock.md
Last active May 3, 2022 16:56 — forked from tanyuan/smart-caps-lock.md
Smart Caps Lock: Remap Caps Lock to Control AND Escape

Smart Caps Lock: Remap to Control AND Escape (Linux, Mac, Windows)

  • Send Escape if you tap Caps Lock alone.
  • Send Control if you press Caps Lock with another key.
  • send caps lock if you press both shift keys together

For vim , emacs and normal day typing