Skip to content

Commit fd62609

Browse files
author
Abdul Dakkak
committed
first commit
0 parents  commit fd62609

File tree

4 files changed

+100
-0
lines changed

4 files changed

+100
-0
lines changed

.agignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.git
2+
/tmp
3+
/vendor
4+
node_modules

.editorconfig

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
end_of_line = lf
10+
# editorconfig-tools is unable to ignore longs strings or urls
11+
max_line_length = null
12+
13+
14+
[*.md]
15+
max_line_length = 0
16+
trim_trailing_whitespace = false
17+
18+
[COMMIT_EDITMSG]
19+
max_line_length = 0

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Compiled Object files, Static and Dynamic libs (Shared Objects)
2+
*.o
3+
*.a
4+
*.so
5+
6+
# Folders
7+
_obj
8+
_test
9+
10+
# Architecture specific extensions/prefixes
11+
*.[568vq]
12+
[568vq].out
13+
14+
*.cgo1.go
15+
*.cgo2.c
16+
_cgo_defun.c
17+
_cgo_gotypes.go
18+
_cgo_export.*
19+
20+
_testmain.go
21+
22+
*.exe
23+
*.test
24+
*.prof
25+
26+
# IDEs
27+
.idea
28+
.srclib-cache/
29+
.srclib-store/
30+
node_modules/
31+
vendor/
32+
.vscode
33+
*.pb.go
34+
.env
35+
nsqd.*.dat
36+
.env.private
37+
dist/
38+
39+
cmd/rai/rai
40+
cmd/raid/raid
41+
debug

LICENSE.TXT

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Copyright (c) 2017, Abdul Dakkak All rights reserved.
2+
3+
Developed by: Abdul Dakkak
4+
IMPACT Group
5+
University of Illinois, Urbana-Champaign
6+
impact.crhc.illinois.edu
7+
8+
Permission is hereby granted, free of charge, to any
9+
person obtaining a copy of this software and associated
10+
documentation files (the "Software"), to deal with the
11+
Software without restriction, including without limitation
12+
the rights to use, copy, modify, merge, publish, distribute,
13+
sublicense, and/or sell copies of the Software, and to
14+
permit persons to whom the Software is furnished to do so,
15+
subject to the following conditions:
16+
17+
Redistributions of source code must retain the above
18+
copyright notice, this list of conditions and the following
19+
disclaimers.
20+
Redistributions in binary form must reproduce the above
21+
copyright notice, this list of conditions and the following
22+
disclaimers in the documentation and/or other materials
23+
provided with the distribution.
24+
Neither the names of Abdul Dakkak, Impact Group, nor the
25+
names of its contributors may be used to endorse or promote
26+
products derived from this Software without specific prior
27+
written permission.
28+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
29+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
30+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
31+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
32+
THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
33+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
34+
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
36+
WITH THE SOFTWARE.

0 commit comments

Comments
 (0)