- export as SVG (File > Export Diagram As > SVG... > Save)
- open SVG file in web browser
- open console and run
document.querySelectorAll("text").forEach(e => e.innerHTML = e.innerHTML === "UNREGISTERED"? "":e.innerHTML)- take screenshot
document.querySelectorAll("text").forEach(e => e.innerHTML = e.innerHTML === "UNREGISTERED"? "":e.innerHTML)| { | |
| "USD": { | |
| "symbol": "$", | |
| "name": "US Dollar", | |
| "symbol_native": "$", | |
| "decimal_digits": 2, | |
| "rounding": 0, | |
| "code": "USD", | |
| "name_plural": "US dollars" | |
| }, |
| <!-- Copyright 2011 the Dart project authors. All rights reserved. | |
| Use of this source code is governed by a BSD-style license | |
| that can be found in the LICENSE file. --> | |
| <div> | |
| <canvas id="canvas" width="300" height="300"></canvas> | |
| </div> |
| import java.io.*; | |
| import java.nio.file.Files; | |
| import java.nio.file.*; | |
| public class imageResolutions{ | |
| public static String repo; | |
| public static void main(String... args) throws IOException{ | |
| repo = args[0].replace("\\", "/") + "/"; |
| @echo off | |
| set/p a=jar: | |
| java -jar %a% |
| @echo off | |
| cd d: | |
| ren last_log.txt temp.txt | |
| echo %date% %time%>last_log.txt | |
| type temp.txt >>last_log.txt | |
| del temp.txt |
| @echo off | |
| set/p a= Time (min) : | |
| set/a b=%a%*60 | |
| cls | |
| timeout /t %b% /nobreak | |
| :: if your windows version < windows 10 add start | |
| :: start <FILE_TO_OPEN> | |
| <FILE_TO_OPEN> |
| @echo off | |
| :main | |
| echo ====================================== | |
| echo . | |
| echo 0) exit | |
| echo 1) Router 5 times | |
| echo 2) Google 5 times | |
| echo 4) Router 100 times | |
| echo 5) Google 100 times |