This tutorial describes the basic usage of DDSKK Japanese input method for Emacs.
Install ddskk
package.
Turn on skk-mode
minor mode to write Japanese. It is recommended that you should bind a key to this command:
// | |
// Author: Jonathan Blow | |
// Version: 1 | |
// Date: 31 August, 2018 | |
// | |
// This code is released under the MIT license, which you can find at | |
// | |
// https://opensource.org/licenses/MIT | |
// | |
// |
https://$domain:$port { | |
gzip | |
log /var/log/caddy.log | |
tls $email | |
forwardproxy { | |
basicauth $user $passwd | |
} | |
} |
function y = mdct_via_fft(x) | |
% This was edited together from multiple fns in the original source | |
% for this gist, I might well have introduced errors along the way. | |
% Rows of x correspond to samples | |
nrows = size(x,1); | |
if mod(nrows,4) ~= 0 || nrows<8 | |
error('Number of rows must be multiple of 4 and at least 8.'); | |
end | |
nr4 = nrows/4; |
#include <stdexcept> | |
#include <cmath> | |
#include <vector> | |
#include <Windows.h> | |
#include <Psapi.h> | |
#include <detours.h> | |
#include <d3d9.h> | |
#include <d3dx9.h> | |
#define PI 3.14159F |