├── README.md ├── Terms_Event.py ├── Plan_About_Privacy.py ├── Tool_Guide_Script.py ├── Header_Index_About.py ├── Footer_Portfolio_Profile.js └── Blog_Index.html /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to my repository! -------------------------------------------------------------------------------- /Terms_Event.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Plan_About_Privacy.py: -------------------------------------------------------------------------------- 1 | import random 2 | print(random.randint(1,100)) -------------------------------------------------------------------------------- /Tool_Guide_Script.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Header_Index_About.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Footer_Portfolio_Profile.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Blog_Index.html: -------------------------------------------------------------------------------- 1 |
This is a commit.
--------------------------------------------------------------------------------