Skip to content

Commit

Permalink
vfpga commits
Browse files Browse the repository at this point in the history
  • Loading branch information
MacGyverQue committed Sep 6, 2016
1 parent 032c992 commit 61a6c2b
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 25 deletions.
17 changes: 4 additions & 13 deletions _bash_aliases
Expand Up @@ -5,6 +5,7 @@ if [[ "$unamestr" == 'Linux' ]]; then
platform='linux'
#Remember to uncomment this to do xilinx development in bash
#bash /opt/Xilinx/Vivado/2013.2/settings64.sh
bash /opt/Xilinx/14.7/ISE_DS/settings64.sh
elif [[ "$unamestr" == 'Darwin' ]]; then
platform='osx'
alias usbinfo='system_profiler SPUSBDataType'
Expand All @@ -28,15 +29,12 @@ if [[ $platform == 'linux' ]]; then
alias ls='ls --color=auto'
alias go='xdg-open'
# uncomment the following to do xilinx development in bash
#source /opt/Xilinx/Vivado/2013.2/settings64.sh
source /opt/Xilinx/14.7/ISE_DS/settings64.sh
#export XILINX_EDK=/opt/Xilinx/13.4/ISE_DS/EDK
export XILINX_EDK=/opt/Xilinx/14.7/ISE_DS/EDK
alias updatewsgi='touch /srv/www/DBxPosed/apache/django.wsgi'
alias lpcxpresso='/usr/local/lpcxpresso_4.2.0_224/lpcxpresso/lpcxpresso'
export CLASSPATH=$CLASSPATH:~/javalibs/RXTXcomm.jar
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/lib/
alias eclipse='~/Applications/adt-bundle-linux-x86_64-20130917/eclipse/eclipse'
alias gotowork='ssh -Y -C -o CompressionLevel=9 -c arcfour,blowfish-cbc ztswdev@worklaptop.local'
alias syncRLTSGUI='cd ~/Dropbox/SWDevelopment/ZelTech/MILESLab/RLTS/GUI/eclipseWorkspace/;rsync -vrtic RLTS/src/ ~/dev/rlts_svn/GUI/trunk/src/'

elif [[ $platform == 'osx' ]]; then
#osx aliases go here......
Expand All @@ -63,31 +61,24 @@ alias slrn="slrn -n"
alias man='LC_ALL=C LANG=C man'
alias f=finger
alias diff='colordiff'
alias gotocloud='ssh -p 39322 macgyverque@dispatch.macgyverque.net'
alias forkit='%1&!'
alias fp='ps aux | grep'
alias synctunes='rsync -vrW --ignore-existing /Users/MacGyverQue/Music/iTunes/ /Volumes/ReggieMiller/Temp/Music/iTunes/ '
alias ff='find . -iname'
alias gitk='gitk 2>/dev/null'
alias grepr='grep -R . '
alias routes='netstat -rn -f inet'

export PATH=/Users/Jules/dev/android-ndk-r8e:/usr/local/bin:/usr/local/sbin:$PATH
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
alias twitter='twitter --format ansi'
alias tsl='tail -f /var/log/syslog'
alias agi='sudo apt-get install'
alias acs='sudo apt-cache search'
alias svim='sudo vim'
alias gotobruce='ssh -i .ssh/BruceKey.pem macgyverque@54.84.98.213'
alias gotoeternia='ssh -p 1765 macgyverque@dmoz.strangled.net'
alias tailf='sudo tail -f /var/log/syslog | ccze'
alias tpoff='killall syndaemon;syndaemon -i 10.0 -K -d'
alias tpon='killall syndaemon;syndaemon -i 2.2 -K -d'
alias supdate='sudo apt-get update'
alias supgrade='sudo apt-get upgrade'
alias goenv='source env/bin/activate'
alias ccstudio='exec ~/ti/ccsv6/eclipse/ccstudio &'
alias gdconnect='nmcli c up id GDIrad'
alias scat='sudo cat'
alias tos='exec ~/apps/thinkorswim/thinkorswim &'
alias dv="dirs -v"
2 changes: 1 addition & 1 deletion _gitconfig
Expand Up @@ -14,7 +14,7 @@
[core]
editor = vim
pager = less -R
excludesfile = /home/django/.gitignore_global
excludesfile = /home/vet-fpga/.gitignore_global

[alias]
diverges = !bash -c 'diff -u <(git rev-list --first-parent "${1}") <(git rev-list --first-parent "${2:-HEAD}") | sed -ne \"s/^ //p\" | head -1' -
Expand Down
2 changes: 1 addition & 1 deletion _vim/bundle/ack
2 changes: 1 addition & 1 deletion _vim/bundle/command-t
Submodule command-t updated 83 files
+3 −0 .ctags
+1 −1 .gitignore
+0 −3 .gitmodules
+10 −9 .mailmap
+1 −1 LICENSE
+0 −21 Makefile
+25 −0 README.md
+0 −1 README.txt
+62 −61 Rakefile
+1 −1 appstream/vim-command-t.metainfo.xml
+64 −99 autoload/commandt.vim
+90 −0 autoload/commandt/private.vim
+246 −11 bin/benchmarks/matcher.rb
+1 −1 bin/benchmarks/watchman.rb
+5 −9 command-t.gemspec
+646,768 −471,469 data/benchmark.yml
+568 −205 doc/command-t.txt
+36 −13 plugin/command-t.vim
+20 −14 ruby/command-t.rb
+120 −41 ruby/command-t/controller.rb
+5 −1 ruby/command-t/depend
+1 −1 ruby/command-t/ext.c
+10 −3 ruby/command-t/ext.h
+3 −3 ruby/command-t/extconf.rb
+13 −3 ruby/command-t/finder.rb
+8 −4 ruby/command-t/finder/buffer_finder.rb
+23 −0 ruby/command-t/finder/command_finder.rb
+8 −4 ruby/command-t/finder/file_finder.rb
+25 −0 ruby/command-t/finder/help_finder.rb
+27 −0 ruby/command-t/finder/history_finder.rb
+8 −4 ruby/command-t/finder/jump_finder.rb
+23 −0 ruby/command-t/finder/line_finder.rb
+8 −4 ruby/command-t/finder/mru_buffer_finder.rb
+8 −4 ruby/command-t/finder/tag_finder.rb
+146 −0 ruby/command-t/heap.c
+22 −0 ruby/command-t/heap.h
+186 −116 ruby/command-t/match.c
+17 −10 ruby/command-t/match.h
+110 −33 ruby/command-t/match_window.rb
+213 −63 ruby/command-t/matcher.c
+1 −1 ruby/command-t/matcher.h
+3 −3 ruby/command-t/metadata/fallback.rb
+3 −3 ruby/command-t/mru.rb
+3 −3 ruby/command-t/path_utilities.rb
+38 −0 ruby/command-t/progress_reporter.rb
+11 −10 ruby/command-t/prompt.rb
+1 −1 ruby/command-t/ruby_compat.h
+23 −3 ruby/command-t/scanner.rb
+4 −4 ruby/command-t/scanner/buffer_scanner.rb
+33 −0 ruby/command-t/scanner/command_scanner.rb
+31 −10 ruby/command-t/scanner/file_scanner.rb
+0 −10 ruby/command-t/scanner/file_scanner/file_limit_exceeded.rb
+13 −8 ruby/command-t/scanner/file_scanner/find_file_scanner.rb
+12 −9 ruby/command-t/scanner/file_scanner/git_file_scanner.rb
+10 −5 ruby/command-t/scanner/file_scanner/ruby_file_scanner.rb
+14 −6 ruby/command-t/scanner/file_scanner/watchman_file_scanner.rb
+40 −0 ruby/command-t/scanner/help_scanner.rb
+24 −0 ruby/command-t/scanner/history_scanner.rb
+4 −4 ruby/command-t/scanner/jump_scanner.rb
+45 −0 ruby/command-t/scanner/line_scanner.rb
+4 −4 ruby/command-t/scanner/mru_buffer_scanner.rb
+4 −4 ruby/command-t/scanner/tag_scanner.rb
+3 −3 ruby/command-t/scm_utilities.rb
+4 −3 ruby/command-t/settings.rb
+8 −3 ruby/command-t/stub.rb
+3 −3 ruby/command-t/util.rb
+30 −5 ruby/command-t/vim.rb
+4 −4 ruby/command-t/vim/screen.rb
+4 −4 ruby/command-t/vim/window.rb
+3 −3 ruby/command-t/watchman.c
+2 −2 ruby/command-t/watchman.h
+2 −1 spec/command-t/controller_spec.rb
+12 −12 spec/command-t/finder/buffer_finder_spec.rb
+14 −12 spec/command-t/finder/file_finder_spec.rb
+138 −54 spec/command-t/matcher_spec.rb
+2 −2 spec/command-t/scanner/buffer_scanner_spec.rb
+8 −6 spec/command-t/scanner/file_scanner/ruby_file_scanner_spec.rb
+1 −1 spec/command-t/scanner/file_scanner/watchman_file_scanner_spec.rb
+1 −1 spec/command-t/scanner/file_scanner_spec.rb
+1 −1 spec/command-t/vim_spec.rb
+7 −8 spec/command-t/watchman/utils_spec.rb
+2 −1 spec/spec_helper.rb
+0 −1 vendor/vimball
2 changes: 1 addition & 1 deletion _vim/bundle/fugitive
Submodule fugitive updated 2 files
+34 −22 doc/fugitive.txt
+260 −136 plugin/fugitive.vim
2 changes: 1 addition & 1 deletion _vim/bundle/git
2 changes: 1 addition & 1 deletion _vim/bundle/gundo
2 changes: 1 addition & 1 deletion _vim/bundle/pydoc
2 changes: 1 addition & 1 deletion _vim/bundle/pytest
2 changes: 1 addition & 1 deletion _vim/bundle/snipmate
Submodule snipmate updated 1 files
+2 −4 README.markdown
2 changes: 1 addition & 1 deletion _vim/bundle/surround
Submodule surround updated 1 files
+5 −5 plugin/surround.vim
3 changes: 2 additions & 1 deletion _zshrc
Expand Up @@ -63,4 +63,5 @@ if [ -f ~/todo ]; then
cat ~/todo
fi


# disable gnome window stuff
gsettings set org.gnome.desktop.background show-desktop-icons false

0 comments on commit 61a6c2b

Please sign in to comment.