├── About.py ├── Article.py ├── Guide.py ├── Deal_Footer.py ├── Gallery_Profile.js ├── Result_Contact.html └── Portfolio_Result_Footer.html /About.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Article.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Guide.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Deal_Footer.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Gallery_Profile.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Result_Contact.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Portfolio_Result_Footer.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

--------------------------------------------------------------------------------