Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

blackbird71SR/Code-Portfolios

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodePortfolios

The One Where Portfolios Shine!

Part of The GitHub Arctic Code Vault

Aim

This repository should eventually contain the various code portfolios. We all know that we can create simple portfolios using languages like HTML and CSS, but here we are trying to do something different. Let's think of creating a code in python which will print your portfolio/personal information in terminal or maybe you create a GUI using Java and display your informataion in that. Possibilities are endless!

Example

Here is my small portfolio in Python

name = 'Omkar Ajnadkar'
title = 'FINAL YEAR CSE UNDERGRADUATE - DATA SCIENCE ENTHUSIAST'
skills = ['Machine/Deep Learning', 'Web Development']
print(name)
print(title)
print('Skills:')
for i in skills:
  print(i)

This is another one in HTML

<!DOCTYPE html>
<html>
<head>
    <meta charset='utf-8'>
    <meta http-equiv='X-UA-Compatible' content='IE=edge'>
    <title>Page Title</title>
    <meta name='viewport' content='width=device-width, initial-scale=1'>
    <link rel='stylesheet' type='text/css' media='screen' href='main.css'>
    <script src='main.js'></script>
</head>
<body>
    <h1>Omkar Ajnadkar</h1>
    <h2>FINAL YEAR CSE UNDERGRADUATE - DATA SCIENCE ENTHUSIAST</h2>
    <h3>Skills</h3>
    <ul>
        <li>Machine/Deep Learning</li>
        <li>Web Development</li>
    </ul>
</body>
</html>

How to Contribute to this repository

  • Star this repository using 'Star' button on the top.
  • Click on Fork Repository using the 'Fork' button on the top.
  • Clone the forked repository on your PC. Using this command on your Git bash or any terminal with git support : git clone url.
  • Now create a new branch with this command: git branch branchname and then use that branch by this command: git checkout branchname.
  • Create folder(directory) with name using github username and portfolio's name you want to give. For example: If I want to give portfolio name, MinimalDesign, my folder name is blackbird71SR_MinimalDesign.
  • Go ahead and make changes in this directory.
  • After making changes use this command to add the changes: git add filename, and then git commit -m "message here".
  • After that use this command: git push origin branchname.
  • Create a pull request, and wait for Pull Request to get merged.

Let's Do It!

Contributors