├── README.md ├── Article.js ├── Blog_Home.py ├── Plan_Tutorial_Gallery.js ├── Result_Service_About.js ├── Info_Terms_Settings.py ├── Terms_Guide_Deal.py └── Offer_Result.js /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to my repository! -------------------------------------------------------------------------------- /Article.js: -------------------------------------------------------------------------------- 1 | console.log('Random JS commit'); -------------------------------------------------------------------------------- /Blog_Home.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Plan_Tutorial_Gallery.js: -------------------------------------------------------------------------------- 1 | console.log('Random JS commit'); -------------------------------------------------------------------------------- /Result_Service_About.js: -------------------------------------------------------------------------------- 1 | console.log('Random JS commit'); -------------------------------------------------------------------------------- /Info_Terms_Settings.py: -------------------------------------------------------------------------------- 1 | import random 2 | print(random.randint(1,100)) -------------------------------------------------------------------------------- /Terms_Guide_Deal.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Offer_Result.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); --------------------------------------------------------------------------------