This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for Emacs: -*- coding: utf-8 -*- | |
# | |
# User-defined key sequences for WinCompose | |
# by Sam Hocevar <[email protected]> | |
# | |
# Key sequences have the following form: | |
# | |
# <Multi_key> <key>… : "resulting text" | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; 2-tap right click and 3-tap middle click | |
; current user | |
[HKEY_CURRENT_USER\SOFTWARE\Alps\Apoint\Gesture] | |
"2TapSupport"=dword:00000003 | |
"2TapShow"=dword:00000009 | |
"Enable2Tap"=dword:00000001 | |
"2TapFunc"=dword:0000000d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from math import pi, log | |
import pylab | |
from scipy import fft, ifft | |
from scipy.optimize import curve_fit | |
i = 10000 | |
x = np.linspace(0, 3.5 * pi, i) | |
y = (0.3*np.sin(x) + np.sin(1.3 * x) + 0.9 * np.sin(4.2 * x) + 0.06 * | |
np.random.randn(i)) |