I hereby claim:
- I am tmwatchanan on github.
- I am watchanan (https://keybase.io/watchanan) on keybase.
- I have a public key whose fingerprint is 3643 BF08 42DB 5593 1EF4 AA51 238D 88F0 7529 062D
To claim this, I am signing this object:
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # Xserver with VcXsvr | |
| export DISPLAY=localhost:0 | |
| # Xserver with Xming | |
| #export DISPLAY=:0 | |
| # VS Code |
| { | |
| "settingsVersion": "1.64.6", | |
| "exclusionRules": [ | |
| { | |
| "pattern": "^https?://mail.google.com/", | |
| "passKeys": "" | |
| }, | |
| { | |
| "pattern": "https://cloud.digitalocean.com/droplets/", | |
| "passKeys": "" |
I hereby claim:
To claim this, I am signing this object:
| XE = | |
| (DESCRIPTION = | |
| (ADDRESS = (PROTOCOL = TCP)(HOST = DESKTOP-C2QMD8S)(PORT = 1521)) | |
| (CONNECT_DATA = | |
| (SERVER = DEDICATED) | |
| (SERVICE_NAME = XE) | |
| ) | |
| ) | |
| EXTPROC_CONNECTION_DATA = |
| public partial class EMPLOYEE | |
| { | |
| public short EMPID { get; set; } | |
| public string JOBPOSITION { get; set; } | |
| public int SALARY { get; set; } | |
| public string CITIZENID { get; set; } | |
| public virtual PERSON PERSON { get; set; } | |
| } |
| % Read the reference image containing the object of interest. | |
| boxImage = imread('stapleRemover.jpg'); | |
| % figure; imshow(boxImage); | |
| title('Image of a Box'); | |
| % Read the target image containing a cluttered scene. | |
| sceneImage = imread('clutteredDesk.jpg'); | |
| % figure; imshow(sceneImage); | |
| title('Image of a Cluttered Scene'); |
| Fs = 1e4; | |
| Duration = 0.5; | |
| r = audiorecorder(Fs,16,1); | |
| figure; | |
| while 1 | |
| recordblocking(r, Duration); | |
| s = double(getaudiodata(r)); | |
| Sf = fft(s, Fs); | |
| Sf = abs(Sf); | |
| t = [0:(length(s) - 1)] / Fs; |
| p = audioplayer(s, 1.5*Fs); | |
| p.play(); | |
| % t = (0:(length(s)-1))/Fs; % Ts = 1/Fs | |
| % figure; plot(t,s) | |
| figure; plot(s); |
| A = [2 5 7 0 3 2 1 8 9] | |
| for k = 1:length(A) | |
| if A(k) <= 5 | |
| B(k) = A(k); % insert ; to disable internal message of this step | |
| else | |
| B(k) = 5; % insert ; to disable internal message of this step | |
| end | |
| end |