├── pack ├── css.png ├── js.png ├── sql.png ├── clang.png ├── excel.png ├── html.png ├── numpy.png ├── spacy.png ├── gensim.png ├── github.png ├── javalang.png ├── jupyter.png ├── kalyan.jpeg ├── pandas.png ├── plotly.png ├── powerbi.png ├── pycharm.png ├── pylogo.png ├── sklearn.png ├── vscode.png ├── streamlit.png ├── tensorflow.png ├── git.svg ├── fastapi.svg ├── flask.svg └── seaborn.svg ├── projectImages ├── p0.png ├── p1.png ├── p2.png ├── p3.png ├── p4.png ├── p5.png ├── p6.png ├── p7.png ├── p8.png └── p9.png ├── index.js ├── content.css ├── mycontent.js ├── content.js ├── content.html ├── index.html └── index.css /pack/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/css.png -------------------------------------------------------------------------------- /pack/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/js.png -------------------------------------------------------------------------------- /pack/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/sql.png -------------------------------------------------------------------------------- /pack/clang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/clang.png -------------------------------------------------------------------------------- /pack/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/excel.png -------------------------------------------------------------------------------- /pack/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/html.png -------------------------------------------------------------------------------- /pack/numpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/numpy.png -------------------------------------------------------------------------------- /pack/spacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/spacy.png -------------------------------------------------------------------------------- /pack/gensim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/gensim.png -------------------------------------------------------------------------------- /pack/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/github.png -------------------------------------------------------------------------------- /pack/javalang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/javalang.png -------------------------------------------------------------------------------- /pack/jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/jupyter.png -------------------------------------------------------------------------------- /pack/kalyan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/kalyan.jpeg -------------------------------------------------------------------------------- /pack/pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/pandas.png -------------------------------------------------------------------------------- /pack/plotly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/plotly.png -------------------------------------------------------------------------------- /pack/powerbi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/powerbi.png -------------------------------------------------------------------------------- /pack/pycharm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/pycharm.png -------------------------------------------------------------------------------- /pack/pylogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/pylogo.png -------------------------------------------------------------------------------- /pack/sklearn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/sklearn.png -------------------------------------------------------------------------------- /pack/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/vscode.png -------------------------------------------------------------------------------- /pack/streamlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/streamlit.png -------------------------------------------------------------------------------- /pack/tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/pack/tensorflow.png -------------------------------------------------------------------------------- /projectImages/p0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p0.png -------------------------------------------------------------------------------- /projectImages/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p1.png -------------------------------------------------------------------------------- /projectImages/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p2.png -------------------------------------------------------------------------------- /projectImages/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p3.png -------------------------------------------------------------------------------- /projectImages/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p4.png -------------------------------------------------------------------------------- /projectImages/p5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p5.png -------------------------------------------------------------------------------- /projectImages/p6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p6.png -------------------------------------------------------------------------------- /projectImages/p7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p7.png -------------------------------------------------------------------------------- /projectImages/p8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p8.png -------------------------------------------------------------------------------- /projectImages/p9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxy-Ram/portfolio/HEAD/projectImages/p9.png -------------------------------------------------------------------------------- /pack/git.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | function continuousTypeWriter(text, speed) { 2 | let i = 0; 3 | const titleElement = document.getElementById("dot_typing_for_title"); 4 | 5 | function type() { 6 | if (i < text.length) { 7 | titleElement.innerHTML += text.charAt(i); 8 | i++; 9 | setTimeout(type, speed); 10 | } else { 11 | setTimeout(disappear, speed * 2); 12 | } 13 | } 14 | 15 | function disappear() { 16 | if (i > 0) { 17 | titleElement.innerHTML = text.substring(0, i - 1); 18 | i--; 19 | setTimeout(disappear, speed / 2); 20 | } else { 21 | setTimeout(type, speed); 22 | } 23 | } 24 | 25 | type(); 26 | } 27 | 28 | // Text for the title 29 | const titleText = "..."; 30 | 31 | // Call the continuousTypeWriter function 32 | continuousTypeWriter(titleText, 200); 33 | 34 | 35 | 36 | //Custom Cursor 37 | const cursorDot = document.querySelector("[data-cursor-dot]"); 38 | const cursorOutline = document.querySelector("[data-cursor-outline]"); 39 | 40 | window.addEventListener("mousemove",function(e){ 41 | const posX = e.clientX; 42 | const posY = e.clientY; 43 | 44 | cursorDot.style.left = `${posX}px`; 45 | cursorDot.style.top = `${posY}px`; 46 | 47 | /* cursorOutline.style.left = `${posX}px`; 48 | cursorOutline.style.top = `${posY}px`; */ 49 | 50 | cursorOutline.animate({ left:`${posX}px`, top: `${posY}px`}, 51 | 52 | {duration:1000,fill:"forwards"}); 53 | 54 | }) 55 | -------------------------------------------------------------------------------- /pack/fastapi.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /content.css: -------------------------------------------------------------------------------- 1 | body{ 2 | margin: 0px; 3 | padding: 0px; 4 | } 5 | 6 | .da, .ds, .ml, .dl, .nlp, .web, .llm{ 7 | width: 100%; 8 | height: 300px; 9 | display: flex; 10 | justify-content: center; 11 | font-family: "Afacad"; 12 | 13 | -webkit-user-select: none; /* Chrome, Safari, Opera */ 14 | -moz-user-select: none; /* Firefox */ 15 | -ms-user-select: none; /* Internet Explorer/Edge */ 16 | user-select: none; /* Non-prefixed version, currently supported by all major browsers */ 17 | 18 | } 19 | .da h1, .ds h1, .ml h1, .dl h1, .nlp h1, .web h1, .llm h1{ 20 | color: aliceblue; 21 | margin-top: 80px; 22 | font-size: 95px; 23 | letter-spacing: 5px; 24 | } 25 | .da h1:hover, .ds h1:hover, .ml h1:hover, .dl h1:hover, .nlp h1:hover, .web h1:hover, .llm h1:hover{ 26 | color: black; 27 | cursor: pointer; 28 | } 29 | .da{ 30 | background-color: lightcoral; 31 | } 32 | .ds{ 33 | background-color: lightblue; 34 | } 35 | .ml{ 36 | background-color: lightseagreen; 37 | } 38 | .dl{ 39 | background-color: lightsalmon; 40 | } 41 | .nlp{ 42 | background-color: lightgreen; 43 | } 44 | .web{ 45 | background-color: lightgray; 46 | } 47 | .llm{ 48 | background-color: lightslategray; 49 | } 50 | 51 | /* Slide Toogle using Jquery */ 52 | .inner_da, .inner_ds, .inner_ml, .inner_dl, .inner_nlp, .inner_web, .inner_llm{ 53 | width: 100%; 54 | height: 680px; 55 | background-color:whitesmoke; 56 | display: none; 57 | } 58 | 59 | /* Content Integration */ 60 | .soon_info{ 61 | margin: 0px; 62 | padding-top: 180px; 63 | text-align: center; 64 | font-size: 30px; 65 | font-family: "Courier Prime", monospace; 66 | } 67 | 68 | .soon_info_highlight{ 69 | color: crimson; 70 | } 71 | /*Some globals*/ 72 | .introduction{ 73 | color: darkcyan; 74 | margin: 0px; 75 | font-family: "ubuntu"; 76 | text-align: center; 77 | padding-top: 50px; 78 | } 79 | .int_description{ 80 | margin-top: 25px; 81 | padding: 0px 300px; 82 | text-align: center; 83 | font-family: "Courier Prime", monospace; 84 | font-size: 18px; 85 | } 86 | .books{ 87 | color:goldenrod; 88 | margin: 0px; 89 | font-family: "ubuntu"; 90 | text-align: center; 91 | padding-top: 25px; 92 | padding-bottom:10px ; 93 | } 94 | .book_descrition{ 95 | margin: 0px; 96 | padding: 0px 300px; 97 | padding-top: 10px; 98 | text-align: center; 99 | font-family: "Courier Prime", monospace; 100 | font-size: 18px; 101 | } 102 | .tools{ 103 | color:indianred; 104 | margin: 0px; 105 | font-family: "ubuntu"; 106 | text-align: center; 107 | padding-top: 42px; 108 | } 109 | .tools_description{ 110 | margin-top: 25px; 111 | padding: 0px 300px; 112 | text-align: center; 113 | font-family: "Courier Prime", monospace; 114 | font-size: 18px; 115 | } 116 | .courses{ 117 | color: indigo; 118 | margin: 0px; 119 | font-family: "ubuntu"; 120 | text-align: center; 121 | padding-top: 25px; 122 | padding-bottom:10px ; 123 | } 124 | .courses_description{ 125 | margin: 0px; 126 | padding: 0px 300px; 127 | padding-top: 10px; 128 | text-align: center; 129 | font-family: "Courier Prime", monospace; 130 | font-size: 18px; 131 | } 132 | a{ 133 | text-decoration: none; 134 | color: black; 135 | } 136 | a:hover{ 137 | color: crimson; 138 | } 139 | -------------------------------------------------------------------------------- /mycontent.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | 3 | $("#h1-da").click(function(){ 4 | $(".inner_da").slideToggle(300, function() { 5 | 6 | // Check the visibility of the element after the toggle 7 | if ($(this).is(":visible")) { 8 | console.log(true); // Element is toggled (visible) 9 | $("#h1-da").animate({"font-size":"70px", "margin-top":"25px"}); 10 | $(".da").animate({"height":"150px"}); 11 | 12 | } else { 13 | console.log(false); // Element is untoggled (hidden) 14 | $("#h1-da").animate({"font-size":"95px", "margin-top": "80px"}); 15 | $(".da").animate({"height":"300px"}); 16 | } 17 | }); 18 | 19 | // Setting remaining all to its original properties 20 | $(".inner_ds, .inner_ml, .inner_dl, .inner_nlp, .inner_web, .inner_llm").slideUp(300, function(){ 21 | $("#h1-ds, #h1-ml, #h1-dl, #h1-nlp, #h1-web, #h1-llm").animate({"font-size":"95px", "margin-top": "80px"}); 22 | $(".ds, .ml, .dl, .nlp, .web, .llm").animate({"height":"300px"}); 23 | }); 24 | }); 25 | //--------------------------------------------------------------------------------------------- 26 | $("#h1-ds").click(function(){ 27 | $(".inner_ds").slideToggle(300, function() { 28 | 29 | if ($(this).is(":visible")) { 30 | $("#h1-ds").animate({"font-size":"70px", "margin-top":"25px"}); 31 | $(".ds").animate({"height":"150px"}); 32 | 33 | } else { 34 | $("#h1-ds").animate({"font-size":"95px", "margin-top": "80px"}); 35 | $(".ds").animate({"height":"300px"}); 36 | } 37 | }); 38 | 39 | $(".inner_da, .inner_ml, .inner_dl, .inner_nlp, .inner_web, .inner_llm").slideUp(300, function(){ 40 | $("#h1-da, #h1-ml, #h1-dl, #h1-nlp, #h1-web, #h1-llm").animate({"font-size":"95px", "margin-top": "80px"}); 41 | $(".da, .ml, .dl, .nlp, .web, .llm").animate({"height":"300px"}); 42 | }); 43 | }); 44 | //--------------------------------------------------------------------------------------------- 45 | $("#h1-ml").click(function(){ 46 | $(".inner_ml").slideToggle(300, function() { 47 | 48 | if ($(this).is(":visible")) { 49 | $("#h1-ml").animate({"font-size":"70px", "margin-top":"25px"}); 50 | $(".ml").animate({"height":"150px"}); 51 | 52 | } else { 53 | $("#h1-ml").animate({"font-size":"95px", "margin-top": "80px"}); 54 | $(".ml").animate({"height":"300px"}); 55 | } 56 | }); 57 | 58 | $(".inner_da, .inner_ds, .inner_dl, .inner_nlp, .inner_web, .inner_llm").slideUp(300, function(){ 59 | $("#h1-da, #h1-ds, #h1-dl, #h1-nlp, #h1-web, #h1-llm").animate({"font-size":"95px", "margin-top": "80px"}); 60 | $(".da, .ds, .dl, .nlp, .web, .llm").animate({"height":"300px"}); 61 | }); 62 | }); 63 | //--------------------------------------------------------------------------------------------- 64 | $("#h1-dl").click(function(){ 65 | $(".inner_dl").slideToggle(300); 66 | $(".inner_da, .inner_ds, .inner_ml, .inner_nlp, .inner_web, .inner_llm").slideUp(300); 67 | }); 68 | //--------------------------------------------------------------------------------------------- 69 | $("#h1-nlp").click(function(){ 70 | $(".inner_nlp").slideToggle(300); 71 | $(".inner_da, .inner_ds, .inner_ml, .inner_dl, .inner_web, .inner_llm").slideUp(300); 72 | }); 73 | //--------------------------------------------------------------------------------------------- 74 | $("#h1-web").click(function(){ 75 | $(".inner_web").slideToggle(300); 76 | $(".inner_da, .inner_ds, .inner_ml, .inner_dl, .inner_nlp, .inner_llm").slideUp(300); 77 | }); 78 | //--------------------------------------------------------------------------------------------- 79 | $("#h1-llm").click(function(){ 80 | $(".inner_llm").slideToggle(300); 81 | $(".inner_da, .inner_ds, .inner_ml, .inner_dl, .inner_nlp, .inner_web").slideUp(300); 82 | }); 83 | 84 | }); 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | 3 | function resetOthers(except) { 4 | const allBlocks = [ 5 | {button: "#h1-da", content: ".inner_da", container: ".da"}, 6 | {button: "#h1-ds", content: ".inner_ds", container: ".ds"}, 7 | {button: "#h1-ml", content: ".inner_ml", container: ".ml"}, 8 | {button: "#h1-dl", content: ".inner_dl", container: ".dl"}, 9 | {button: "#h1-nlp", content: ".inner_nlp", container: ".nlp"}, 10 | {button: "#h1-web", content: ".inner_web", container: ".web"}, 11 | {button: "#h1-llm", content: ".inner_llm", container: ".llm"} 12 | ]; 13 | allBlocks.forEach(block => { 14 | if (block.button !== except) { 15 | $(block.content).slideUp(300); 16 | $(block.button).animate({"font-size":"95px", "margin-top": "80px"}); 17 | $(block.container).animate({"height":"300px"}); 18 | } 19 | }); 20 | } 21 | 22 | $("#h1-da").click(function(){ 23 | $(".inner_da").slideToggle(300, function() { 24 | if ($(this).is(":visible")) { 25 | $("#h1-da").animate({"font-size":"70px", "margin-top":"25px"}); 26 | $(".da").animate({"height":"150px"}); 27 | } else { 28 | $("#h1-da").animate({"font-size":"95px", "margin-top": "80px"}); 29 | $(".da").animate({"height":"300px"}); 30 | } 31 | }); 32 | resetOthers("#h1-da"); 33 | }); 34 | 35 | $("#h1-ds").click(function(){ 36 | $(".inner_ds").slideToggle(300, function() { 37 | if ($(this).is(":visible")) { 38 | $("#h1-ds").animate({"font-size":"70px", "margin-top":"25px"}); 39 | $(".ds").animate({"height":"150px"}); 40 | } else { 41 | $("#h1-ds").animate({"font-size":"95px", "margin-top": "80px"}); 42 | $(".ds").animate({"height":"300px"}); 43 | } 44 | }); 45 | resetOthers("#h1-ds"); 46 | }); 47 | 48 | $("#h1-ml").click(function(){ 49 | $(".inner_ml").slideToggle(300, function() { 50 | if ($(this).is(":visible")) { 51 | $("#h1-ml").animate({"font-size":"70px", "margin-top":"25px"}); 52 | $(".ml").animate({"height":"150px"}); 53 | } else { 54 | $("#h1-ml").animate({"font-size":"95px", "margin-top": "80px"}); 55 | $(".ml").animate({"height":"300px"}); 56 | } 57 | }); 58 | resetOthers("#h1-ml"); 59 | }); 60 | 61 | $("#h1-dl").click(function(){ 62 | $(".inner_dl").slideToggle(300, function() { 63 | if ($(this).is(":visible")) { 64 | $("#h1-dl").animate({"font-size":"70px", "margin-top":"25px"}); 65 | $(".dl").animate({"height":"150px"}); 66 | } else { 67 | $("#h1-dl").animate({"font-size":"95px", "margin-top": "80px"}); 68 | $(".dl").animate({"height":"300px"}); 69 | } 70 | }); 71 | resetOthers("#h1-dl"); 72 | }); 73 | 74 | $("#h1-nlp").click(function(){ 75 | $(".inner_nlp").slideToggle(300, function() { 76 | if ($(this).is(":visible")) { 77 | $("#h1-nlp").animate({"font-size":"70px", "margin-top":"25px"}); 78 | $(".nlp").animate({"height":"150px"}); 79 | } else { 80 | $("#h1-nlp").animate({"font-size":"95px", "margin-top": "80px"}); 81 | $(".nlp").animate({"height":"300px"}); 82 | } 83 | }); 84 | resetOthers("#h1-nlp"); 85 | }); 86 | 87 | $("#h1-web").click(function(){ 88 | $(".inner_web").slideToggle(300, function() { 89 | if ($(this).is(":visible")) { 90 | $("#h1-web").animate({"font-size":"70px", "margin-top":"25px"}); 91 | $(".web").animate({"height":"150px"}); 92 | } else { 93 | $("#h1-web").animate({"font-size":"95px", "margin-top": "80px"}); 94 | $(".web").animate({"height":"300px"}); 95 | } 96 | }); 97 | resetOthers("#h1-web"); 98 | }); 99 | 100 | $("#h1-llm").click(function(){ 101 | $(".inner_llm").slideToggle(300, function() { 102 | if ($(this).is(":visible")) { 103 | $("#h1-llm").animate({"font-size":"70px", "margin-top":"25px"}); 104 | $(".llm").animate({"height":"150px"}); 105 | } else { 106 | $("#h1-llm").animate({"font-size":"95px", "margin-top": "80px"}); 107 | $(".llm").animate({"height":"300px"}); 108 | } 109 | }); 110 | resetOthers("#h1-llm"); 111 | }); 112 | }); -------------------------------------------------------------------------------- /content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
38 |
39 | As a passionate Python enthusiast with a keen interest in Data Science, Machine Learning, and Web Technologies. Eager to expand expertise and skills in these areas to drive career growth. Demonstrated commitment to continuous learning and professional development.
43 |Present I am pursuing a Bachelor's degree in Data Science driven by a profound interest.
44 |For an hands on experience i avidly pursue knowledge and expertise through fabled platforms like coursera, youtube and others. Also by doing projects.
45 |
63 |
64 |
65 |
66 |
73 |
74 |
75 |
82 |
83 |
84 |
85 |
86 |
87 |
95 |
97 |
104 |
106 |
107 |
110 |
111 |
112 |