/etc/network/interfaces
vs https://wiki.debian.org/SystemdNetworkd
Enable memory swap limits:
[caps]>[escape] | |
[lalt]>[kpshft] | |
[rwin]>[kpshft] | |
[home]>[lwin] | |
[pup]>[rwin] | |
[intl-\]>[caps] | |
[end]>[lalt] | |
[pdown]>[ralt] | |
[kp-y]>[pause] | |
[kp-caps]>[escape] |
if has("win32") | |
set guifont=Consolas:h10 | |
set guioptions=aegimrL | |
else | |
set guifont=Monospace\ 11 | |
set guioptions=imrL | |
endif | |
set showtabline=2 | |
set columns=85 |
/etc/network/interfaces
vs https://wiki.debian.org/SystemdNetworkd
Enable memory swap limits:
package main | |
import ( | |
"errors" | |
"fmt" | |
"golang.org/x/net/html" | |
"io" | |
"net/http" | |
"net/url" | |
"os" |
#!/bin/bash | |
GVIM=/c/Windows/gvim.bat | |
args=() | |
TEMP="$(cygpath -w "$ORIGINAL_TEMP")" | |
for arg in "$@"; do | |
if [[ $arg == /* ]]; then | |
args+="$(cygpath -w "$arg")" |
# ... | |
import numpy as np | |
def extractMainLobe(window, M): | |
# ... | |
return np.zeros(M) | |
if __name__ == '__main__': | |
# The check above ensures the following code only runs if we run this |
FROM ubuntu:16.04 | |
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ | |
bash sudo unzip curl build-essential git \ | |
subversion openssh-server openjdk-8-jre \ | |
man openssl postgresql-common postgresql-9.5 libpq-dev \ | |
ruby ruby-dev \ | |
libgdbm-dev libncurses5-dev automake libtool bison libffi-dev && \ | |
sudo -u postgres createuser user -s && \ | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927 && \ |
#!/bin/sh | |
# | |
# burnr 0.2.0 | |
# | |
# Copyright (c) 2015 James O'Doherty <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the | |
# "Software"), to deal in the Software without restriction, including | |
# without limitation the rights to use, copy, modify, merge, publish, |
#!/bin/sh | |
# | |
# burndvd 0.1 | |
# | |
# Copyright (c) 2015 James O'Doherty <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the | |
# "Software"), to deal in the Software without restriction, including | |
# without limitation the rights to use, copy, modify, merge, publish, |
#!/bin/sh | |
# | |
# Windows gvim wrapper for Cygwin | |
# | |
# Copyright (c) 2016 James O'Doherty | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the | |
# "Software"), to deal in the Software without restriction, including | |
# without limitation the rights to use, copy, modify, merge, publish, |