"Locale problems" in both the 32-bit & 64-bit versions of Debian 8 droplets
Create a new Debian 8 droplet and login as root
:
" Settings | |
set nohud | |
set smoothscroll | |
set noautofocus " The opposite of autofocus; this setting stops | |
" sites from focusing on an input box when they load | |
set typelinkhints | |
let searchlimit = 30 | |
let scrollstep = 70 | |
let barposition = "bottom" |
# Git Aliases (sorted alphabetically with some inculsive functions) | |
# Adapted from oh-my-zsh git alias plugin. "compdef" is a Z shell autocompletion function, disabled throughout where applicable. | |
alias g='git' | |
alias ga='git add' | |
alias gaa='git add --all' | |
alias gapa='git add --patch' | |
alias gb='git branch' |
[user/machine specific settings] | |
# Make a copy of this file and name the new file credentials.py then fill in the various values in the new file. | |
# Never track or commit the new "credentials.py" file, it should be set as ignored in your .gitignore. | |
SECRET_KEY = '' | |
DEBUG = | |
#!/bin/zsh | |
mkdir -p zsh_nitrous_test/{project_one,project_two}/html/{main,public}/ zsh_nitrous_test/{project_one,project_two}/css/{style,min}/ zsh_nitrous_test/{project_one,project_two}/js/{lib,test}/ | |
# create dummy files inside the html directories | |
for directory in zsh_nitrous_test/*/html/*; do | |
dd if=/dev/zero of="${directory}/homepage.html" bs=1024 count=1 | |
dd if=/dev/zero of="${directory}/about.html" bs=2048 count=1 | |
dd if=/dev/zero of="${directory}/contact.html" bs=4096 count=1 | |
done |
Package: sense | |
Section: interpreters | |
Priority: optional | |
Architecture: i386 | |
Depends: libasound2, libc6, libcurl3, libpulse0, libssh2-1, pulseaudio | |
Maintainer: Ian Cameron <[email protected]> | |
Homepage: http://sense.open.ac.uk/ | |
Description: The Sense software package for your TU100 module, presented by | |
The Open University. |
# Django Recommended | |
*.egg-info | |
*.pot | |
*.py[co] | |
__pycache__ | |
MANIFEST | |
dist/ | |
docs/_build/ | |
docs/locale/ | |
node_modules/ |
module.exports = { | |
files: { | |
javascripts: {joinTo: 'app.js'}, | |
stylesheets: {joinTo: 'app.css'}, | |
}, | |
server: { | |
hostname: '0.0.0.0', | |
port: '3000' | |
} |
#!/bin/sh | |
hexo clean | |
hexo generate | |
hexo deploy |