├── README.md
├── favicon.ico
├── .editorconfig
├── LICENSE
├── .gitignore
├── .gitattributes
└── index.html
/README.md:
--------------------------------------------------------------------------------
1 | # ROS Data Waster
2 |
3 | The easiest way to waste your data.
4 |
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Richienb/ros-data-waster/HEAD/favicon.ico
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # editorconfig.org
2 |
3 | root = true
4 |
5 | [*]
6 | end_of_line = lf
7 | charset = utf-8
8 | trim_trailing_whitespace = true
9 | insert_final_newline = true
10 | indent_style = space
11 | indent_size = 4
12 |
13 | [*.md]
14 | trim_trailing_whitespace = false
15 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Richie Bendall
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | # Created by https://www.gitignore.io/api/linux,macos,windows
3 | # Edit at https://www.gitignore.io/?templates=linux,macos,windows
4 |
5 | ### Linux ###
6 | *~
7 |
8 | # temporary files which can be created if a process still has a handle open of a deleted file
9 | .fuse_hidden*
10 |
11 | # KDE directory preferences
12 | .directory
13 |
14 | # Linux trash folder which might appear on any partition or disk
15 | .Trash-*
16 |
17 | # .nfs files are created when an open file is removed but is still being accessed
18 | .nfs*
19 |
20 | ### macOS ###
21 | # General
22 | .DS_Store
23 | .AppleDouble
24 | .LSOverride
25 |
26 | # Icon must end with two \r
27 | Icon
28 |
29 | # Thumbnails
30 | ._*
31 |
32 | # Files that might appear in the root of a volume
33 | .DocumentRevisions-V100
34 | .fseventsd
35 | .Spotlight-V100
36 | .TemporaryItems
37 | .Trashes
38 | .VolumeIcon.icns
39 | .com.apple.timemachine.donotpresent
40 |
41 | # Directories potentially created on remote AFP share
42 | .AppleDB
43 | .AppleDesktop
44 | Network Trash Folder
45 | Temporary Items
46 | .apdisk
47 |
48 | ### Windows ###
49 | # Windows thumbnail cache files
50 | Thumbs.db
51 | ehthumbs.db
52 | ehthumbs_vista.db
53 |
54 | # Dump file
55 | *.stackdump
56 |
57 | # Folder config file
58 | [Dd]esktop.ini
59 |
60 | # Recycle Bin used on file shares
61 | $RECYCLE.BIN/
62 |
63 | # Windows Installer files
64 | *.cab
65 | *.msi
66 | *.msix
67 | *.msm
68 | *.msp
69 |
70 | # Windows shortcuts
71 | *.lnk
72 |
73 | # End of https://www.gitignore.io/api/linux,macos,windows
74 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | #common settings that generally should always be used with your language specific settings
2 |
3 | # Auto detect text files and perform LF normalization
4 | # http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
5 | * text=auto
6 |
7 | #
8 | # The above will handle all files NOT found below
9 | #
10 |
11 | # Documents
12 | *.doc diff=astextplain
13 | *.DOC diff=astextplain
14 | *.docx diff=astextplain
15 | *.DOCX diff=astextplain
16 | *.dot diff=astextplain
17 | *.DOT diff=astextplain
18 | *.pdf diff=astextplain
19 | *.PDF diff=astextplain
20 | *.rtf diff=astextplain
21 | *.RTF diff=astextplain
22 | *.md text
23 | *.adoc text
24 | *.textile text
25 | *.mustache text
26 | *.csv text
27 | *.tab text
28 | *.tsv text
29 | *.sql text
30 |
31 | # Graphics
32 | *.png binary
33 | *.jpg binary
34 | *.jpeg binary
35 | *.gif binary
36 | *.tif binary
37 | *.tiff binary
38 | *.ico binary
39 | # SVG treated as an asset (binary) by default. If you want to treat it as text,
40 | # comment-out the following line and uncomment the line after.
41 | *.svg binary
42 | #*.svg text
43 | *.eps binary
44 | ## GITATTRIBUTES FOR WEB PROJECTS
45 | #
46 | # These settings are for any web project.
47 | #
48 | # Details per file setting:
49 | # text These files should be normalized (i.e. convert CRLF to LF).
50 | # binary These files are binary and should be left untouched.
51 | #
52 | # Note that binary is a macro for -text -diff.
53 | ######################################################################
54 |
55 | ## AUTO-DETECT
56 | ## Handle line endings automatically for files detected as
57 | ## text and leave all files detected as binary untouched.
58 | ## This will handle all files NOT defined below.
59 | * text=auto
60 |
61 | ## SOURCE CODE
62 | *.bat text eol=crlf
63 | *.coffee text
64 | *.css text
65 | *.htm text
66 | *.html text
67 | *.inc text
68 | *.ini text
69 | *.js text
70 | *.json text
71 | *.jsx text
72 | *.less text
73 | *.od text
74 | *.onlydata text
75 | *.php text
76 | *.pl text
77 | *.py text
78 | *.rb text
79 | *.sass text
80 | *.scm text
81 | *.scss text
82 | *.sh text eol=lf
83 | *.sql text
84 | *.styl text
85 | *.tag text
86 | *.ts text
87 | *.tsx text
88 | *.xml text
89 | *.xhtml text
90 |
91 | ## DOCKER
92 | *.dockerignore text
93 | Dockerfile text
94 |
95 | ## DOCUMENTATION
96 | *.markdown text
97 | *.md text
98 | *.mdwn text
99 | *.mdown text
100 | *.mkd text
101 | *.mkdn text
102 | *.mdtxt text
103 | *.mdtext text
104 | *.txt text
105 | AUTHORS text
106 | CHANGELOG text
107 | CHANGES text
108 | CONTRIBUTING text
109 | COPYING text
110 | copyright text
111 | *COPYRIGHT* text
112 | INSTALL text
113 | license text
114 | LICENSE text
115 | NEWS text
116 | readme text
117 | *README* text
118 | TODO text
119 |
120 | ## TEMPLATES
121 | *.dot text
122 | *.ejs text
123 | *.haml text
124 | *.handlebars text
125 | *.hbs text
126 | *.hbt text
127 | *.jade text
128 | *.latte text
129 | *.mustache text
130 | *.njk text
131 | *.phtml text
132 | *.tmpl text
133 | *.tpl text
134 | *.twig text
135 |
136 | ## LINTERS
137 | .csslintrc text
138 | .eslintrc text
139 | .htmlhintrc text
140 | .jscsrc text
141 | .jshintrc text
142 | .jshintignore text
143 | .stylelintrc text
144 |
145 | ## CONFIGS
146 | *.bowerrc text
147 | *.cnf text
148 | *.conf text
149 | *.config text
150 | .browserslistrc text
151 | .editorconfig text
152 | .gitattributes text
153 | .gitconfig text
154 | .htaccess text
155 | *.npmignore text
156 | *.yaml text
157 | *.yml text
158 | browserslist text
159 | Makefile text
160 | makefile text
161 |
162 | ## HEROKU
163 | Procfile text
164 | .slugignore text
165 |
166 | ## GRAPHICS
167 | *.ai binary
168 | *.bmp binary
169 | *.eps binary
170 | *.gif binary
171 | *.ico binary
172 | *.jng binary
173 | *.jp2 binary
174 | *.jpg binary
175 | *.jpeg binary
176 | *.jpx binary
177 | *.jxr binary
178 | *.pdf binary
179 | *.png binary
180 | *.psb binary
181 | *.psd binary
182 | *.svg text
183 | *.svgz binary
184 | *.tif binary
185 | *.tiff binary
186 | *.wbmp binary
187 | *.webp binary
188 |
189 | ## AUDIO
190 | *.kar binary
191 | *.m4a binary
192 | *.mid binary
193 | *.midi binary
194 | *.mp3 binary
195 | *.ogg binary
196 | *.ra binary
197 |
198 | ## VIDEO
199 | *.3gpp binary
200 | *.3gp binary
201 | *.as binary
202 | *.asf binary
203 | *.asx binary
204 | *.fla binary
205 | *.flv binary
206 | *.m4v binary
207 | *.mng binary
208 | *.mov binary
209 | *.mp4 binary
210 | *.mpeg binary
211 | *.mpg binary
212 | *.ogv binary
213 | *.swc binary
214 | *.swf binary
215 | *.webm binary
216 |
217 | ## ARCHIVES
218 | *.7z binary
219 | *.gz binary
220 | *.jar binary
221 | *.rar binary
222 | *.tar binary
223 | *.zip binary
224 |
225 | ## FONTS
226 | *.ttf binary
227 | *.eot binary
228 | *.otf binary
229 | *.woff binary
230 | *.woff2 binary
231 |
232 | ## EXECUTABLES
233 | *.exe binary
234 | *.pyc binary
235 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | ROS Data Waster
12 |
13 |
14 |
15 |
16 |
17 |
18 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
264 | ROS Data Waster
265 | The most straightforward way to waste all of your data.
266 |
267 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 | Download threads (higher is for faster wasting, lower is for more precision)
289 |
290 |
294 |
295 |
296 |
297 |
298 |
301 |
302 |
303 |
304 |
305 |
312 |
313 |
314 |
315 | -
316 |
320 |
321 | Data wasted
322 | 0.00 MB
323 |
324 |
325 | -
326 |
330 |
331 | Data wasted per second
332 | 0.00 MB/s
333 |
334 |
335 | -
336 |
340 |
341 | Time running
342 | 0 seconds
343 |
344 |
345 |
346 |
347 |
348 |
349 | The specified amount of data was wasted.
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
364 |
365 |
366 |
367 |
368 |
369 |
370 |
371 |
530 |
531 |
532 |
533 |
534 |
--------------------------------------------------------------------------------