$ sudo npm install -g hexo-cli
$ hexo -v
hexo-cli: 0.1.9
d-i debian-installer/locale string en_US.UTF-8 | |
d-i debian-installer/splash boolean false | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/layoutcode string us | |
d-i console-setup/variantcode string | |
# network | |
d-i netcfg/get_nameservers string | |
d-i netcfg/get_ipaddress string | |
d-i netcfg/get_netmask string 255.255.255.0 |
#!/usr/bin/env python | |
import argparse | |
import fnmatch | |
import os | |
import sys | |
# Recursively generate index.html files for | |
# all subdirectories in a directory tree |
obj-m += tcp_svr_sample.o | |
all: | |
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules | |
clean: | |
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clea |
This is a quick guide of the commands we use to sign someone's GPG key in a virtual key signing party.
Note: The steps cover only the technical aspects of signing someone's key. Before signing someone's key, you must verify their identity. This is usually done by showing government-issued ID and confirming the key's fingerprint
The commands will work for both GPG and GPG2.
I use Julian's key for the examples. His key id is 2AD3FAE3
. You should substitute with the appropriate key id when running the commands.
- List the keys currently in your keyring:
gpg --list-keys
.
# 10.2 Code Repo Bug Report | |
Example code should be fixed as: | |
<img src="https://sololearnassets.azureedge.net/home-why-code-1.svg"><br> |
server { | |
listen 127.0.0.1:80; | |
ssi on; | |
gzip on; | |
gzip_comp_level 7; | |
gzip_types application/x-javascript application/javascript text/css; | |
server_name test.ru www.test.ru; | |
charset off; | |
#disable_symlinks if_not_owner from=$root_path; |
The modern web package ecosssystem is overloaded with packages and it's very easy to forget that each dependency of our project can have tons of other dependencies.
Sometimes you get an error in a file of a dependency that you've never heard of and it's not listed in your package.json
. How can we find the direct dependency of our project that has, down its tree, this elusive dependency?