Login and become root:
sudo su -
Update your stuff (maybe? I dunno whatevs)
pacman -Syu
nnoremap <silent> <leader>e :call Fzf_dev()<CR> | |
" ripgrep | |
if executable('rg') | |
let $FZF_DEFAULT_COMMAND = 'rg --files --hidden --follow --glob "!.git/*"' | |
set grepprg=rg\ --vimgrep | |
command! -bang -nargs=* Find call fzf#vim#grep('rg --column --line-number --no-heading --fixed-strings --ignore-case --hidden --follow --glob "!.git/*" --color "always" '.shellescape(<q-args>).'| tr -d "\017"', 1, <bang>0) | |
endif | |
" Files + devicons |
Login and become root:
sudo su -
Update your stuff (maybe? I dunno whatevs)
pacman -Syu
TITLE:: SonaGraph | |
summary:: A piano-tuned spectrum analyzer/visualizer, inspired by Kay Sonagraph | |
categories:: Analysis | |
related:: Classes | |
DESCRIPTION:: | |
The classic Kay Sonagraph was based on a bank of filters used to plot on paper spectral information, widely used in phonetics and acoustic analysis (bird singing). SonaGraph works in two steps. First, a sound is analized by passing it through a 88 band pass filter, tuned on piano keys. Amps in dB and pitch are collected and data are then available to manipulation/visualization. Second, data can be explored interactively by the included GUI. | |
CLASSMETHODS:: |
sc3> p = SerialPort("/dev/ttyUSB0", 115200) | |
portName /dev/ttyUSB0 | |
[New Thread 0x7fffa2e93700 (LWP 1105)] | |
a SerialPort | |
sc3> p.close() | |
a SerialPort | |
sc3> SerialPort /dev/ttyUSB0 was closed | |
SerialPort Cleanup | |
terminate called after throwing an instance of 'std::system_error' | |
what(): Resource deadlock avoided |
Index: README.txt | |
=================================================================== | |
--- README.txt (revision 17158) | |
+++ README.txt (working copy) | |
@@ -2,7 +2,7 @@ | |
get the source version through svn : | |
-svn co https://pure-data.svn.sourceforge.net/svnroot/pure-data pure-data | |
+svn co https://svn.code.sf.net/p/pure-data/svn pure-data |
Index: Makefile | |
=================================================================== | |
--- Makefile (revision 17144) | |
+++ Makefile (working copy) | |
@@ -6,7 +6,7 @@ | |
# add your .cc source files, one object per file, to the SOURCES | |
# variable, help files will be included automatically, and for GUI | |
# objects, the matching .tcl file too | |
-SOURCES = pix_opencv_edge.cc pix_opencv_laplace.cc pix_opencv_morphology.cc pix_opencv_distrans.cc pix_opencv_motempl.cc pix_opencv_haarcascade.cc pix_opencv_contours_boundingrect.cc pix_opencv_bgsubstract.cc pix_opencv_contours_convexity.cc pix_opencv_dft.cc pix_opencv_lk.cc pix_opencv_hist_compare.cc pix_opencv_knear.cc pix_opencv_threshold.cc pix_opencv_floodfill.cc pix_opencv_athreshold.cc pix_opencv_bgstats.cc pix_opencv_camshift.cc pix_opencv_hu_compare.cc pix_opencv_pgh_compare.cc pix_opencv_hough_circles.cc pix_opencv_hough_lines.cc pix_opencv_hu_moments.cc pix_opencv_contours_convexhull.cc pix_opencv_colorfilt.cc pix_opencv_of_bm.cc pix_opencv_of_hs.cc pix_opencv_of_lk.cc pi |
;; Cyberpunk Colour Theme | |
;; | |
;; "and he'd still see the matrix in his sleep, bright lattices of logic | |
;; unfolding across that colorless void..." | |
;; William Gibson, Neuromancer. | |
;; | |
(require 'color-theme) | |
;;;###autoload |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DynamicViews</key> | |
<dict> | |
<key>kb</key> | |
<dict> | |
<key>ClipToBounds</key> | |
<true/> |
git branch --merged | grep -v "\*" | xargs -n 1 git branch -d |