Skip to content

Commit ea83e52

Browse files
committed
first commit
0 parents  commit ea83e52

File tree

2 files changed

+284
-0
lines changed

2 files changed

+284
-0
lines changed

.gitignore

Lines changed: 265 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,265 @@
1+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
2+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3+
4+
# User-specific stuff:
5+
.idea/**/workspace.xml
6+
.idea/**/tasks.xml
7+
.idea/dictionaries
8+
9+
# Sensitive or high-churn files:
10+
.idea/**/dataSources/
11+
.idea/**/dataSources.ids
12+
.idea/**/dataSources.xml
13+
.idea/**/dataSources.local.xml
14+
.idea/**/sqlDataSources.xml
15+
.idea/**/dynamic.xml
16+
.idea/**/uiDesigner.xml
17+
18+
# Gradle:
19+
.idea/**/gradle.xml
20+
.idea/**/libraries
21+
22+
# CMake
23+
cmake-build-debug/
24+
25+
# Mongo Explorer plugin:
26+
.idea/**/mongoSettings.xml
27+
28+
## File-based project format:
29+
*.iws
30+
31+
## Plugin-specific files:
32+
33+
# IntelliJ
34+
/out/
35+
36+
# mpeltonen/sbt-idea plugin
37+
.idea_modules/
38+
39+
# JIRA plugin
40+
atlassian-ide-plugin.xml
41+
42+
# Cursive Clojure plugin
43+
.idea/replstate.xml
44+
45+
# Crashlytics plugin (for Android Studio and IntelliJ)
46+
com_crashlytics_export_strings.xml
47+
crashlytics.properties
48+
crashlytics-build.properties
49+
fabric.properties
50+
51+
#################
52+
## Eclipse
53+
#################
54+
55+
*.pydevproject
56+
.project
57+
.metadata
58+
bin/
59+
tmp/
60+
*.tmp
61+
*.bak
62+
*.swp
63+
*~.nib
64+
local.properties
65+
.classpath
66+
.settings/
67+
.loadpath
68+
69+
# External tool builders
70+
.externalToolBuilders/
71+
72+
# Locally stored "Eclipse launch configurations"
73+
*.launch
74+
75+
# CDT-specific
76+
.cproject
77+
78+
# PDT-specific
79+
.buildpath
80+
81+
82+
#################
83+
## Visual Studio
84+
#################
85+
86+
## Ignore Visual Studio temporary files, build results, and
87+
## files generated by popular Visual Studio add-ons.
88+
89+
# User-specific files
90+
*.suo
91+
*.user
92+
*.sln.docstates
93+
94+
# Build results
95+
96+
[Dd]ebug/
97+
[Rr]elease/
98+
x64/
99+
build/
100+
[Oo]bj/
101+
102+
# MSTest test Results
103+
[Tt]est[Rr]esult*/
104+
[Bb]uild[Ll]og.*
105+
106+
*_i.c
107+
*_p.c
108+
*.ilk
109+
*.meta
110+
*.obj
111+
*.pch
112+
*.pgc
113+
*.pgd
114+
*.rsp
115+
*.sbr
116+
*.tlb
117+
*.tli
118+
*.tlh
119+
*.tmp_proj
120+
*.log
121+
*.vspscc
122+
*.vssscc
123+
.builds
124+
*.pidb
125+
*.scc
126+
127+
# Visual C++ cache files
128+
ipch/
129+
*.aps
130+
*.ncb
131+
*.opensdf
132+
*.sdf
133+
*.cachefile
134+
135+
# Visual Studio profiler
136+
*.psess
137+
*.vsp
138+
*.vspx
139+
140+
# Guidance Automation Toolkit
141+
*.gpState
142+
143+
# ReSharper is a .NET coding add-in
144+
_ReSharper*/
145+
*.[Rr]e[Ss]harper
146+
147+
# TeamCity is a build add-in
148+
_TeamCity*
149+
150+
# DotCover is a Code Coverage Tool
151+
*.dotCover
152+
153+
# NCrunch
154+
*.ncrunch*
155+
.*crunch*.local.xml
156+
157+
# Installshield output folder
158+
[Ee]xpress/
159+
160+
# DocProject is a documentation generator add-in
161+
DocProject/buildhelp/
162+
DocProject/Help/*.HxT
163+
DocProject/Help/*.HxC
164+
DocProject/Help/*.hhc
165+
DocProject/Help/*.hhk
166+
DocProject/Help/*.hhp
167+
DocProject/Help/Html2
168+
DocProject/Help/html
169+
170+
# Click-Once directory
171+
publish/
172+
173+
# Publish Web Output
174+
*.Publish.xml
175+
*.pubxml
176+
177+
# NuGet Packages Directory
178+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
179+
packages/
180+
181+
# Windows Azure Build Output
182+
csx
183+
*.build.csdef
184+
185+
# Windows Store app package directory
186+
AppPackages/
187+
188+
# Others
189+
sql/
190+
*.Cache
191+
ClientBin/
192+
[Ss]tyle[Cc]op.*
193+
~$*
194+
*~
195+
*.dbmdl
196+
*.[Pp]ublish.xml
197+
*.pfx
198+
*.publishsettings
199+
200+
# RIA/Silverlight projects
201+
Generated_Code/
202+
203+
# Backup & report files from converting an old project file to a newer
204+
# Visual Studio version. Backup files are not needed, because we have git ;-)
205+
_UpgradeReport_Files/
206+
Backup*/
207+
UpgradeLog*.XML
208+
UpgradeLog*.htm
209+
210+
# SQL Server files
211+
App_Data/*.mdf
212+
App_Data/*.ldf
213+
214+
#############
215+
## Windows detritus
216+
#############
217+
218+
# Windows image file caches
219+
Thumbs.db
220+
ehthumbs.db
221+
222+
# Folder config file
223+
Desktop.ini
224+
225+
# Recycle Bin used on file shares
226+
$RECYCLE.BIN/
227+
228+
# Mac crap
229+
.DS_Store
230+
231+
232+
#############
233+
## Python
234+
#############
235+
236+
*.py[co]
237+
238+
# Packages
239+
*.egg
240+
*.egg-info
241+
dist/
242+
eggs/
243+
parts/
244+
var/
245+
sdist/
246+
develop-eggs/
247+
.installed.cfg
248+
249+
# Installer logs
250+
pip-log.txt
251+
252+
# Unit test / coverage reports
253+
.coverage
254+
.tox
255+
256+
#Translations
257+
*.mo
258+
259+
#Mr Developer
260+
.mr.developer.cfg
261+
/.vs/config/applicationhost.config
262+
263+
# bunq specific
264+
bunq.conf
265+
**/Tmp/

LICENSE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2017 bunq b.v.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

0 commit comments

Comments
 (0)