Apache umask setting

You want to set your Apache web server to create files with controlled permissions. Do this with umask setting at the beginning of the rc script, which starts the service. In NetBSD:

/etc/rc.d/apache

 

Fekete Zoltán Fri, 11/10/2017 - 10:51
NetBSD hdaudio jack detection
If you have an Analog Devices AD1984A audio chip, and could not have headphones jack working, apply the the patch below, and recompile the kernel.
Fekete Zoltán Mon, 03/20/2017 - 11:20

Updating GitHub forked repository

Submitted by Fekete Zoltán on Tue, 01/31/2017 - 07:07

Quote from stackoverflow.com:

# Add the remote, call it "upstream":

git remote add upstream https://github.com/whoever/whatever.git

# Fetch all the branches of that remote into remote-tracking branches,
# such as upstream/master:

git fetch upstream

# Make sure that you're on your master branch:

git checkout master

# Rewrite your master branch so that any commits of yours that
# aren't already in upstream/master are replayed on top of that
# other branch:

git rebase upstream/master

Tags