├── Blog_Gallery_Header.html ├── Event.py ├── Map_Tutorial.py ├── README.md ├── Support_Help.js └── Terms.js /Blog_Gallery_Header.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Event.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Map_Tutorial.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Data-security-interface-project -------------------------------------------------------------------------------- /Support_Help.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Terms.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); --------------------------------------------------------------------------------