- All of the expenses need currency specified individually. There is no way to specify currently at the expense report level.
- Location should be definable at the Expense level and persist through all of the receipts. Currently have to specify location on each receipt. Super time waster.
- No ability to rearrange items within a day to reflect the actual flow of events.
- No ability to flag expenses as "follow up" or "double check of accuracy"
- The app flags same value transactions as potentially duplicates even when they have different receipts attached, took place in different cities, or generally have fundamentally different characteristics.
- No way to accept flagged transactions as 'not duplicate'.
- When pressing 'cancel' Website presents a completely useless dialog box prompting - "are you sure you want to cancel" even though no changes have been made and data is already saved. There is no reason to ask a user if they're sure since there is no risk of data loss. Useless 'fe
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
:sources: | |
- http://<%= node['gem_file']['host'] %>:<%= node['gem_file']['port'] %>/ |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
cookbook_name = "centrify" | |
box = "windows2008r2" | |
box_url = "http://bla.com/windows2008r2.box" | |
hostname = "server_name" | |
Vagrant.configure("2") do |config| | |
#config.omnibus.chef_version = :latest |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "alex_rocks" | |
# config.vm.synced_folder "../../stuff_for_windows", "c:/mount_point" | |
config.vm.guest = :windows | |
# New veature in vagrant 1.6. Makes windows much easier. |
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
<powershell> | |
#https://gist.github.com/vinyar/6735863; | |
# below two commands are known to fail for arbitrary reasons | |
try { winrm quickconfig -q } | |
catch {write-host "winrm quickconfig failed"} | |
try { Enable-PSRemoting -force} | |
catch {write-host "Enable-PSRemoting -force failed"} | |
##################################################### |
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
powershell_script "Install IIS" do | |
code "add-windowsfeature Web-Server" | |
action :run | |
end | |
service "w3svc" do | |
action [:enable, :start ] | |
end | |
#node.default["iis_demo"]["indexfile"] = "Default2.htm" |
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
$ sudo chef-apply -e "package 'tree'" -l debug | |
[2014-12-01T05:37:38-08:00] DEBUG: Building node object for xxx.local | |
[2014-12-01T05:37:38-08:00] DEBUG: Extracting run list from JSON attributes provided on command line | |
[2014-12-01T05:37:38-08:00] DEBUG: Applying attributes from json file | |
[2014-12-01T05:37:38-08:00] DEBUG: Platform is mac_os_x version 10.9.5 | |
[2014-12-01T05:37:38-08:00] INFO: Run List is [] | |
[2014-12-01T05:37:38-08:00] INFO: Run List expands to [] | |
Recipe: (chef-apply cookbook)::(chef-apply recipe) | |
* package[tree] action install[2014-12-01T05:37:38-08:00] INFO: Processing package[tree] action install ((chef-apply cookbook)::(chef-apply recipe) line 1) |
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 PowerShell | |
Copyright (C) 2009 Microsoft Corporation. All rights reserved. | |
PS C:\Users\Administrator> gem install knife-windows | |
Fetching: gssapi-1.0.3.gem (100%) | |
Fetching: httpclient-2.5.3.3.gem (100%) | |
Fetching: mini_portile-0.6.1.gem (100%) | |
Fetching: nokogiri-1.6.5-x86-mingw32.gem (100%) | |
Nokogiri is built with the packaged libraries: libxml2-2.9.2, libxslt-1.1.28, zlib-1.2.8, libiconv-1.14. | |
Fetching: rubyntlm-0.1.1.gem (100%) |
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
alexvinyar@seavinyar02 ~/Documents/Projects/win_wsus (master●●)$ kitchen create | |
-----> Starting Kitchen (v1.3.0) | |
-----> Creating <domain-controller-windows-2008R2>... | |
Bringing machine 'default' up with 'virtualbox' provider... | |
default: The Berkshelf shelf is at "/Users/alexvinyar/.berkshelf/vagrant-berkshelf/shelves/berkshelf20150106-38311-1v8go4-default" | |
==> default: VirtualBox VM is already running. | |
Vagrant instance <domain-controller-windows-2008R2> created. | |
Finished creating <domain-controller-windows-2008R2> (0m6.60s). | |
-----> Kitchen is finished. (0m7.58s) | |
alexvinyar@seavinyar02 ~/Documents/Projects/win_wsus (master●●)$ kitchen converge |
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
$ chef verify | |
Running verification for component 'berkshelf' | |
Running verification for component 'test-kitchen' | |
Running verification for component 'chef-client' | |
Running verification for component 'chef-dk' | |
Running verification for component 'chefspec' | |
.... | |
/opt/chefdk/embedded/lib/ruby/gems/2.1.0/gems/chefspec-4.2.0.beta.1/lib/chefspec/berkshelf.rb:4:in `rescue in <top (required)>': I could not load the 'Berkshelf' gem! You must have the gem installed (ChefSpec::Error::GemLoadError) | |
on your local system before you can use the berkshelf plugin. |